config/companion_libs/ppl.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Tue Mar 11 22:11:43 2014 +0100 (2014-03-11)
changeset 3293 e11a8a2e225d
parent 2957 3e2f2100a76d
permissions -rw-r--r--
comptools: do not force build of make-3.81 unless really needed

On systems with make-3.82, we forcibly force the build and the use
of make-3.81

But some newer tools break when building with make-3.81. For example,
eglibc-3.18 breaks.

Introduce a new blind options that tools may select if they require
make-3.81. If the system does not have make-3.81, and this option is
selected, then we force the build of make-3.81. Otherwise, we leave
it to the user to decide on his own.

Note that no component selects this option for now. It will come in
later patches as we find them.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 # PPL options
     2 
     3 choice
     4     bool
     5     prompt "PPL version"
     6 # Don't remove next line
     7 # CT_INSERT_VERSION_BELOW
     8 
     9 config PPL_V_0_11_2
    10     bool
    11     prompt "0.11.2"
    12     select PPL_0_11
    13 
    14 config PPL_V_0_11_1
    15     bool
    16     prompt "0.11.1"
    17     select PPL_0_11
    18 
    19 config PPL_V_0_11
    20     bool
    21     prompt "0.11"
    22     select PPL_0_11
    23 
    24 config PPL_V_0_10_2
    25     bool
    26     prompt "0.10.2"
    27     select PPL_NEEDS_FPERMISSIVE
    28 
    29 endchoice
    30 
    31 config PPL_VERSION
    32     string
    33 # Don't remove next line
    34 # CT_INSERT_VERSION_STRING_BELOW
    35     default "0.11.2" if PPL_V_0_11_2
    36     default "0.11.1" if PPL_V_0_11_1
    37     default "0.11" if PPL_V_0_11
    38     default "0.10.2" if PPL_V_0_10_2
    39 
    40 # For PPL 0.10, we need -fpermissive to build on gcc 4.7+
    41 # (even gcc-4.6+ ?)
    42 config PPL_NEEDS_FPERMISSIVE
    43     bool
    44 
    45 # For PPL 0.11, we need to pull libpwl if configured static
    46 config PPL_0_11
    47     bool
    48     select PPL_NEEDS_LIBPWL if ! COMPLIBS_SHARED
    49 
    50 config PPL_NEEDS_LIBPWL
    51     bool