config/debug/ltrace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 31 12:43:23 2010 +0100 (2010-01-31)
changeset 1786 2323a54034c9
parent 1685 ecccce88fc71
child 1811 35cf5e2f110a
permissions -rw-r--r--
debiug/ltrace: remove EXPERIMENTAL for 0.5.3, remove 0.5.1
     1 # ltrace
     2 
     3 config DEBUG_ltrace
     4     select TOOL_libelf
     5     help
     6       ltrace is a program that simply runs the specified command until it exits.
     7       It intercepts and records the dynamic library calls which are called by
     8       the executed process and the signals which are received by that process.
     9       It can also intercept and print the system calls executed by the program.
    10 
    11 choice
    12     bool
    13     prompt "ltrace version"
    14 # Don't remove next line
    15 # CT_INSERT_VERSION_BELOW
    16 
    17 config LTRACE_V_0_5_3
    18     bool
    19     prompt "0.5.3"
    20     select LTRACE_0_5_3_or_later
    21 
    22 config LTRACE_V_0_5_2
    23     bool
    24     prompt "0.5.2"
    25 
    26 config LTRACE_V_0_5
    27     bool
    28     prompt "0.5 (OBSOLETE)"
    29     depends on OBSOLETE
    30 
    31 config LTRACE_V_0_4
    32     bool
    33     prompt "0.4 (OBSOLETE)"
    34     depends on OBSOLETE
    35 
    36 endchoice
    37 
    38 config LTRACE_VERSION
    39     string
    40 # Don't remove next line
    41 # CT_INSERT_VERSION_STRING_BELOW
    42     default "0.5.3" if LTRACE_V_0_5_3
    43     default "0.5.2" if LTRACE_V_0_5_2
    44     default "0.5.1" if LTRACE_V_0_5_1
    45     default "0.5" if LTRACE_V_0_5
    46     default "0.4" if LTRACE_V_0_4
    47 
    48 config LTRACE_0_5_3_or_later
    49     bool
    50     default n