config/debug/dmalloc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 13 17:51:33 2009 +0200 (2009-09-13)
changeset 1534 d4ddf19a1968
parent 916 68af6b83ff7e
child 1535 073d351bdcd3
permissions -rw-r--r--
config: re-order menu entries so that latest versions are at the top

It makes better sense to have latest versions at the top of the choice
entries.
     1 # dmalloc debug facility
     2 
     3 config DEBUG_dmalloc
     4     bool
     5 
     6 choice
     7     bool
     8     prompt "dmalloc version"
     9 
    10 config DMALLOC_V_5_5_2
    11     bool
    12     prompt "5.5.2"
    13 
    14 config DMALLOC_V_5_4_3
    15     bool
    16     prompt "5.4.3 (OBSOLETE)"
    17     depends on OBSOLETE
    18 
    19 # CT_INSERT_VERSION_ABOVE
    20 # Don't remove above line!
    21 endchoice
    22 
    23 config DMALLOC_VERSION
    24     string
    25     default "5.5.2" if DMALLOC_V_5_5_2
    26     default "5.4.3" if DMALLOC_V_5_4_3
    27 # CT_INSERT_VERSION_STRING_ABOVE
    28 # Don't remove above line!