config/companion_libs/ppl.in
author Matthieu Crapet <mcrapet@gmail.com>
Wed Jun 06 12:03:12 2012 +0200 (2012-06-06)
changeset 2991 252ade1e9e17
parent 2484 d1a8c2ae7946
child 3135 3829050af02a
permissions -rw-r--r--
libc/eglibc: fix missing LIBC_TRY_CC_OPTION definition (eglibc 2.15)

Upstream SVN is currently broken:
http://www.eglibc.org/svn/branches/eglibc-2_15/libc/

LIBC_TRY_CC_OPTION macro is not defined in aclocal.m4.
This patch fix the configure script.

Once upstream branch will be fixed this patch could be reverted.

Related patch (committed to eglibc trunk):
Use autoconf macro for testing compiler options with empty input
http://sourceware.org/ml/libc-alpha/2012-03/msg00816.html

Signed-off-by: Matthieu Crapet <mcrapet@gmail.com>

diff -r 1f6c8e4b2b92 -r d10afc5bcc25
patches/eglibc/2_15/110-aclocal-LIBC_TRY_CC_OPTION.patch
yann@1324
     1
# PPL options
yann@1324
     2
yann@1324
     3
choice
yann@1324
     4
    bool
yann@1324
     5
    prompt "PPL version"
yann@1535
     6
# Don't remove next line
yann@1535
     7
# CT_INSERT_VERSION_BELOW
yann@1324
     8
yann@2338
     9
config PPL_V_0_11_2
yann@2338
    10
    bool
yann@2957
    11
    prompt "0.11.2"
yann@2368
    12
    select PPL_0_11
yann@2338
    13
yann@2318
    14
config PPL_V_0_11_1
yann@2318
    15
    bool
yann@2957
    16
    prompt "0.11.1"
yann@2368
    17
    select PPL_0_11
yann@2318
    18
yann@2072
    19
config PPL_V_0_11
yann@2072
    20
    bool
yann@2957
    21
    prompt "0.11"
yann@2368
    22
    select PPL_0_11
yann@2072
    23
yann@1324
    24
config PPL_V_0_10_2
yann@1324
    25
    bool
yann@1324
    26
    prompt "0.10.2"
yann@1324
    27
yann@1324
    28
endchoice
yann@1324
    29
yann@1324
    30
config PPL_VERSION
yann@1324
    31
    string
yann@1535
    32
# Don't remove next line
yann@1535
    33
# CT_INSERT_VERSION_STRING_BELOW
yann@2338
    34
    default "0.11.2" if PPL_V_0_11_2
yann@2318
    35
    default "0.11.1" if PPL_V_0_11_1
yann@2072
    36
    default "0.11" if PPL_V_0_11
yann@1324
    37
    default "0.10.2" if PPL_V_0_10_2
yann@2368
    38
yann@2368
    39
# For PPL 0.11, we need to pull libpwl if configured static
yann@2368
    40
config PPL_0_11
yann@2368
    41
    bool
yann@2368
    42
    select PPL_NEEDS_LIBPWL if ! COMPLIBS_SHARED
yann@2368
    43
yann@2368
    44
config PPL_NEEDS_LIBPWL
yann@2368
    45
    bool