config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jul 26 15:14:48 2008 +0000 (2008-07-26)
branch1.2
changeset 731 65614732cfe7
parent 330 447b203edc2e
child 850 ef8549b58b6f
permissions -rw-r--r--
Backport #857 from trunk:
While retrieving files, propagate the preferred extension down to sub-functions.

/branches/1.2/scripts/functions | 8 5 3 0 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
     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 config STRACE_V_4_5_16
    29     bool
    30     prompt "4.5.16"
    31 
    32 # CT_INSERT_VERSION_ABOVE
    33 # Don't remove above line!
    34 endchoice
    35 
    36 config STRACE_VERSION
    37     string
    38     default "4.5" if STRACE_V_4_5
    39     default "4.5.14" if STRACE_V_4_5_14
    40     default "4.5.15" if STRACE_V_4_5_15
    41     default "4.5.16" if STRACE_V_4_5_16
    42 # CT_INSERT_VERSION_STRING_ABOVE
    43 # # Don't remove above line!
    44 
    45 endif