config/debug/dmalloc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Aug 14 20:11:44 2007 +0000 (2007-08-14)
changeset 330 447b203edc2e
parent 105 5a8d4f6a19c7
child 850 ef8549b58b6f
permissions -rw-r--r--
Do a clean-up pass on the OBSOLETE features (versions):
- remove legions of those,
- remove associated patches no longer needed,
- mark then as (OBSOLETE) in the prompt;
yann@103
     1
# dmalloc debug facility
yann@103
     2
yann@103
     3
menuconfig DMALLOC
yann@103
     4
    bool
yann@103
     5
    prompt "dmalloc"
yann@103
     6
    default n
yann@103
     7
yann@103
     8
if DMALLOC
yann@103
     9
yann@103
    10
choice
yann@103
    11
    bool
yann@103
    12
    prompt "dmalloc version"
yann@103
    13
yann@103
    14
config DMALLOC_V_5_4_3
yann@103
    15
    bool
yann@330
    16
    prompt "5.4.3 (OBSOLETE)"
yann@103
    17
    depends on OBSOLETE
yann@103
    18
yann@103
    19
config DMALLOC_V_5_5_2
yann@103
    20
    bool
yann@103
    21
    prompt "5.5.2"
yann@103
    22
yann@103
    23
# CT_INSERT_VERSION_ABOVE
yann@103
    24
# Don't remove above line!
yann@103
    25
endchoice
yann@103
    26
yann@103
    27
config DMALLOC_VERSION
yann@103
    28
    string
yann@103
    29
    default "5.4.3" if DMALLOC_V_5_4_3
yann@103
    30
    default "5.5.2" if DMALLOC_V_5_5_2
yann@103
    31
# CT_INSERT_VERSION_STRING_ABOVE
yann@103
    32
# Don't remove above line!
yann@103
    33
yann@103
    34
endif