config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 17 23:06:02 2010 +0100 (2010-01-17)
changeset 1740 c57458bb354d
parent 1613 c776557f7aac
child 1785 05490fb72d5d
permissions -rw-r--r--
configure: do not require hg when configuring in an hg clone

When configuring in an hg clone, we need hg to compute the version string.
It can happen that users do not have Mercurial (eg. if they got a snapshot
rather that they did a full clone). In this case, we can still run, of
course, so simply fill the version string with a sufficiently explicit
value, that does not require hg. The date is a good candidate.
yann@239
     1
# strace
yann@239
     2
yann@916
     3
config DEBUG_strace
yann@239
     4
yann@239
     5
choice
yann@239
     6
    bool
yann@239
     7
    prompt "strace version"
yann@1535
     8
# Don't remove next line
yann@1535
     9
# CT_INSERT_VERSION_BELOW
yann@239
    10
yann@1613
    11
config STRACE_V_4_5_19
yann@1613
    12
    bool
yann@1613
    13
    prompt "4.5.19 (EXPERIMENTAL)"
yann@1613
    14
    depends on EXPERIMENTAL
yann@1613
    15
yann@1534
    16
config STRACE_V_4_5_18
yann@239
    17
    bool
yann@1613
    18
    prompt "4.5.18"
yann@1534
    19
yann@1534
    20
config STRACE_V_4_5_17
yann@1534
    21
    bool
yann@1615
    22
    prompt "4.5.17 (OBSOLETE)"
yann@1615
    23
    depends on OBSOLETE
yann@1534
    24
yann@1534
    25
config STRACE_V_4_5_16
yann@1534
    26
    bool
yann@1615
    27
    prompt "4.5.16 (OBSOLETE)"
yann@1615
    28
    depends on OBSOLETE
yann@1534
    29
yann@1534
    30
config STRACE_V_4_5_15
yann@1534
    31
    bool
yann@1615
    32
    prompt "4.5.15 (OBSOLETE)"
yann@1615
    33
    depends on OBSOLETE
yann@239
    34
yann@239
    35
endchoice
yann@239
    36
yann@239
    37
config STRACE_VERSION
yann@239
    38
    string
yann@1535
    39
# Don't remove next line
yann@1535
    40
# CT_INSERT_VERSION_STRING_BELOW
yann@1613
    41
    default "4.5.19" if STRACE_V_4_5_19
yann@1534
    42
    default "4.5.18" if STRACE_V_4_5_18
yann@1534
    43
    default "4.5.17" if STRACE_V_4_5_17
yann@1534
    44
    default "4.5.16" if STRACE_V_4_5_16
yann@1534
    45
    default "4.5.15" if STRACE_V_4_5_15