config/debug/dmalloc.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 # dmalloc debug facility
     2 
     3 menuconfig DMALLOC
     4     bool
     5     prompt "dmalloc"
     6     default n
     7     depends on ! BARE_METAL
     8 
     9 if DMALLOC
    10 
    11 choice
    12     bool
    13     prompt "dmalloc version"
    14 
    15 config DMALLOC_V_5_4_3
    16     bool
    17     prompt "5.4.3 (OBSOLETE)"
    18     depends on OBSOLETE
    19 
    20 config DMALLOC_V_5_5_2
    21     bool
    22     prompt "5.5.2"
    23 
    24 # CT_INSERT_VERSION_ABOVE
    25 # Don't remove above line!
    26 endchoice
    27 
    28 config DMALLOC_VERSION
    29     string
    30     default "5.4.3" if DMALLOC_V_5_4_3
    31     default "5.5.2" if DMALLOC_V_5_5_2
    32 # CT_INSERT_VERSION_STRING_ABOVE
    33 # Don't remove above line!
    34 
    35 endif