config/debug/strace.in
author Willy Tarreau <w@1wt.eu>
Tue Nov 15 19:11:57 2011 +0100 (2011-11-15)
changeset 2751 bd17cca444ae
parent 2444 896cb0d36c1a
child 2868 d87832299709
permissions -rw-r--r--
debug/gdb: fix tic install path, tell ncurses where to find it

ncurses 5.9 wants tic to be either one of:
- $TIC_PATH
- /usr/bin/tic

Of course, se do not want the latter, for it can be incompatible if the
ncurses in the build system is too old (eg. RHEL 5.6, Debian Lenny...).
So, force TIC_PATH to the location of our own tic.

Also, install tic alongside the other build tools, not in a sub-dir
of the toolchain installation dir.

Signed-off-by: Willy Tarreau <w@1wt.eu>
[yann.morin.1998@anciens.enib.fr: install in builtools/bin, move TIC_PATH]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     1 # strace
     2 
     3 ## depends on ! BACKEND
     4 
     5 choice
     6     bool
     7     prompt "strace version"
     8 # Don't remove next line
     9 # CT_INSERT_VERSION_BELOW
    10 
    11 config STRACE_V_4_6
    12     bool
    13     prompt "4.6 (EXPERIMENTAL)"
    14     depends on EXPERIMENTAL
    15 
    16 config STRACE_V_4_5_20
    17     bool
    18     prompt "4.5.20 (EXPERIMENTAL)"
    19     depends on EXPERIMENTAL
    20 
    21 config STRACE_V_4_5_19
    22     bool
    23     prompt "4.5.19"
    24 
    25 config STRACE_V_4_5_18
    26     bool
    27     prompt "4.5.18"
    28 
    29 config STRACE_V_4_5_17
    30     bool
    31     prompt "4.5.17 (OBSOLETE)"
    32     depends on OBSOLETE
    33 
    34 config STRACE_V_4_5_16
    35     bool
    36     prompt "4.5.16 (OBSOLETE)"
    37     depends on OBSOLETE
    38 
    39 config STRACE_V_4_5_15
    40     bool
    41     prompt "4.5.15 (OBSOLETE)"
    42     depends on OBSOLETE
    43 
    44 endchoice
    45 
    46 config STRACE_VERSION
    47     string
    48 # Don't remove next line
    49 # CT_INSERT_VERSION_STRING_BELOW
    50     default "4.6" if STRACE_V_4_6
    51     default "4.5.20" if STRACE_V_4_5_20
    52     default "4.5.19" if STRACE_V_4_5_19
    53     default "4.5.18" if STRACE_V_4_5_18
    54     default "4.5.17" if STRACE_V_4_5_17
    55     default "4.5.16" if STRACE_V_4_5_16
    56     default "4.5.15" if STRACE_V_4_5_15