config/debug/ltrace.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 330 447b203edc2e
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 # ltrace
     2 
     3 menuconfig LTRACE
     4     bool
     5     prompt "ltrace (EXPERIMENTAL)"
     6     default n
     7     depends on EXPERIMENTAL
     8     depends on ! BARE_METAL
     9     select LIBELF
    10     help
    11       ltrace is currently BROKEN! It depends on libelf, and I don't
    12       know how to configure/compile that so that ltrace can successfully
    13       use it. If you manage to build ltrace (and libelf!), please be so
    14       kind as to tell me! Thank you!
    15 
    16 if LTRACE
    17 
    18 choice
    19     bool
    20     prompt "ltrace version"
    21 
    22 config LTRACE_V_0_3_36
    23     bool
    24     prompt "0.3.36 (OBSOLETE)"
    25     depends on OBSOLETE
    26 
    27 config LTRACE_V_0_4
    28     bool
    29     prompt "0.4"
    30 
    31 # CT_INSERT_VERSION_ABOVE
    32 # Don't remove above line!
    33 endchoice
    34 
    35 config LTRACE_VERSION
    36     string
    37     default "0.3.36" if LTRACE_V_0_3_36
    38     default "0.4" if LTRACE_V_0_4
    39 # CT_INSERT_VERSION_STRING_ABOVE
    40 # # Don't remove above line!
    41 
    42 endif