config/tools/libelf.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Oct 09 19:17:49 2008 +0000 (2008-10-09)
changeset 914 0b164a321177
parent 369 9258a7c3b84f
child 916 68af6b83ff7e
permissions -rw-r--r--
Remove CT_BROKEN.
Only one component is actually BROKEN (libelf), make it depend on EXPERIMENTAL, but state BROKEN in the prompt.
ltrace (which depends on libelf) is now marked as EXPERIMENTAL, with the reference to the BROKEN libelf in the help entry.

/trunk/docs/overview.txt | 6 0 6 0 ------
/trunk/config/debug/ltrace.in | 7 4 3 0 ++++---
/trunk/config/global/ct-behave.in | 8 0 8 0 --------
/trunk/config/tools/libelf.in | 5 3 2 0 +++--
4 files changed, 7 insertions(+), 19 deletions(-)
yann@245
     1
# libelf config file
yann@245
     2
yann@245
     3
menuconfig LIBELF
yann@245
     4
    bool
yann@914
     5
    prompt "libelf (BROKEN)"
yann@245
     6
    default n
yann@914
     7
    depends on EXPERIMENTAL
yann@914
     8
    depends on ! BARE_METAL
yann@245
     9
    help
yann@245
    10
      libelf lets you read, modify or create ELF files in an
yann@245
    11
      architecture-independent way.
yann@245
    12
yann@245
    13
      libelf is BROKEN! If you manage to make it actually _work_,
yann@245
    14
      please be so kind as to tell me. (By working, I mean it is
yann@245
    15
      useable at least by ltrace.) Thank you!
yann@245
    16
yann@245
    17
if LIBELF
yann@245
    18
yann@245
    19
choice
yann@245
    20
    bool
yann@245
    21
    prompt "libelf version"
yann@245
    22
yann@245
    23
config LIBELF_V_0_8_8
yann@245
    24
    bool
yann@330
    25
    prompt "0.8.8 (OBSOLETE)"
yann@245
    26
    depends on OBSOLETE
yann@245
    27
yann@245
    28
config LIBELF_V_0_8_9
yann@245
    29
    bool
yann@245
    30
    prompt "0.8.9"
yann@245
    31
yann@369
    32
config LIBELF_V_0_8_10
yann@369
    33
    bool
yann@369
    34
    prompt "0.8.10"
yann@369
    35
yann@245
    36
# CT_INSERT_VERSION_ABOVE
yann@245
    37
# Don't remove above line!
yann@245
    38
endchoice
yann@245
    39
yann@245
    40
config LIBELF_VERSION
yann@245
    41
    string
yann@245
    42
    default "0.8.8" if LIBELF_V_0_8_8
yann@245
    43
    default "0.8.9" if LIBELF_V_0_8_9
yann@369
    44
    default "0.8.10" if LIBELF_V_0_8_10
yann@245
    45
# CT_INSERT_VERSION_STRING_ABOVE
yann@245
    46
# Don't remove above line!
yann@245
    47
yann@245
    48
endif