config/debug/strace.in
author Anthony Foiani <anthony.foiani@gmail.com>
Thu May 19 23:09:43 2011 +0200 (2011-05-19)
branch1.11
changeset 2465 5f98b7a90fbc
parent 1844 4d6a56579d9d
child 2444 896cb0d36c1a
permissions -rw-r--r--
complibs/ppl: fix 0.11-0.11.2 to compile with --disable-shared

PPL 0.11 (through 0.11.2) had a small bug where it still tried to build
and test its Java interface even when shared libraries are disabled.
Since that's exactly what ct-ng does, it explodes.

This is the patch from the PPL authors (see final link below).

More information can be found in these messages/threads:

Anthony's initial report and analysis with Yann:
http://www.cygwin.com/ml/crossgcc/2011-05/msg00046.html

Ron Flory hit the same problem:
http://www.cygwin.com/ml/crossgcc/2011-05/msg00054.html

Anthony's report to the ppl-devel list:
http://www.cs.unipr.it/pipermail/ppl-devel/2011-May/017450.html

Roberto's reply with a link to the fix in the PPL git repo:
http://www.cs.unipr.it/pipermail/ppl-devel/2011-May/017455.html

Signed-Off-By: Anthony Foiani <anthony.foiani@gmail.com>
(transplanted from 139b85d70b623e51f7585e7c64ecb8c6a6cf4567)
yann@239
     1
# strace
yann@1844
     2
# depends on ! BACKEND
yann@239
     3
yann@916
     4
config DEBUG_strace
yann@239
     5
yann@239
     6
choice
yann@239
     7
    bool
yann@239
     8
    prompt "strace version"
yann@1535
     9
# Don't remove next line
yann@1535
    10
# CT_INSERT_VERSION_BELOW
yann@239
    11
yann@2006
    12
config STRACE_V_4_5_20
yann@2006
    13
    bool
yann@2006
    14
    prompt "4.5.20 (EXPERIMENTAL)"
yann@2006
    15
    depends on EXPERIMENTAL
yann@2006
    16
yann@1613
    17
config STRACE_V_4_5_19
yann@1613
    18
    bool
yann@1785
    19
    prompt "4.5.19"
yann@1613
    20
yann@1534
    21
config STRACE_V_4_5_18
yann@239
    22
    bool
yann@1613
    23
    prompt "4.5.18"
yann@1534
    24
yann@1534
    25
config STRACE_V_4_5_17
yann@1534
    26
    bool
yann@1615
    27
    prompt "4.5.17 (OBSOLETE)"
yann@1615
    28
    depends on OBSOLETE
yann@1534
    29
yann@1534
    30
config STRACE_V_4_5_16
yann@1534
    31
    bool
yann@1615
    32
    prompt "4.5.16 (OBSOLETE)"
yann@1615
    33
    depends on OBSOLETE
yann@1534
    34
yann@1534
    35
config STRACE_V_4_5_15
yann@1534
    36
    bool
yann@1615
    37
    prompt "4.5.15 (OBSOLETE)"
yann@1615
    38
    depends on OBSOLETE
yann@239
    39
yann@239
    40
endchoice
yann@239
    41
yann@239
    42
config STRACE_VERSION
yann@239
    43
    string
yann@1535
    44
# Don't remove next line
yann@1535
    45
# CT_INSERT_VERSION_STRING_BELOW
yann@2006
    46
    default "4.5.20" if STRACE_V_4_5_20
yann@1613
    47
    default "4.5.19" if STRACE_V_4_5_19
yann@1534
    48
    default "4.5.18" if STRACE_V_4_5_18
yann@1534
    49
    default "4.5.17" if STRACE_V_4_5_17
yann@1534
    50
    default "4.5.16" if STRACE_V_4_5_16
yann@1534
    51
    default "4.5.15" if STRACE_V_4_5_15