config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Feb 15 21:18:10 2008 +0000 (2008-02-15)
changeset 428 022ca36f85c8
parent 330 447b203edc2e
child 850 ef8549b58b6f
permissions -rw-r--r--
Robert P. J. DAY says:

Add support for the selection of strace-4.5.16, including an updated
set of patches from strace-4.5.15.
     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