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