config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Feb 14 22:44:34 2008 +0000 (2008-02-14)
changeset 425 548b7aa23385
parent 239 988e9b7f70eb
child 428 022ca36f85c8
permissions -rw-r--r--
Robet P. J. DAY: typoes.
     1 # strace
     2 
     3 menuconfig STRACE
     4     bool
     5     prompt "strace"
     6     default n
     7 
     8 if STRACE
     9 
    10 choice
    11     bool
    12     prompt "strace version"
    13 
    14 config STRACE_V_4_5
    15     bool
    16     prompt "4.5 (OBSOLETE)"
    17     depends on OBSOLETE
    18 
    19 config STRACE_V_4_5_14
    20     bool
    21     prompt "4.5.14 (OBSOLETE)"
    22     depends on OBSOLETE
    23 
    24 config STRACE_V_4_5_15
    25     bool
    26     prompt "4.5.15"
    27 
    28 # CT_INSERT_VERSION_ABOVE
    29 # Don't remove above line!
    30 endchoice
    31 
    32 config STRACE_VERSION
    33     string
    34     default "4.5" if STRACE_V_4_5
    35     default "4.5.14" if STRACE_V_4_5_14
    36     default "4.5.15" if STRACE_V_4_5_15
    37 # CT_INSERT_VERSION_STRING_ABOVE
    38 # # Don't remove above line!
    39 
    40 endif