config/companion_libs/mpfr.in
author Titus von Boxberg <titus@v9g.de>
Wed Nov 30 12:07:59 2011 +0100 (2011-11-30)
branch1.13
changeset 2843 aaa46c1a2c2a
parent 1978 fbee95d8182b
child 2756 3976adc582fb
permissions -rw-r--r--
scripts: use CT_CONFIG_SHELL instead of CT_SHELL

CT_SHELL is undefined.
Thus, the generated wrapper scripts are not executable by the kernel
because they do not contain a valid interpreter.
Use CT_CONFIG_SHELL instead.

Signed-off-by: "Titus von Boxberg" <titus@v9g.de>
(transplanted from cf509170838f4e289fe25617e3f3db1d6d6ffc41)
     1 # GMP options
     2 
     3 choice
     4     bool
     5     prompt "MPFR version"
     6 # Don't remove next line
     7 # CT_INSERT_VERSION_BELOW
     8 
     9 config MPFR_V_3_0_1
    10     bool
    11     prompt "3.0.1 (EXPERIMENTAL)"
    12     depends on EXPERIMENTAL
    13 
    14 config MPFR_V_3_0_0
    15     bool
    16     prompt "3.0.0"
    17 
    18 config MPFR_V_2_4_2
    19     bool
    20     prompt "2.4.2"
    21 
    22 config MPFR_V_2_4_1
    23     bool
    24     prompt "2.4.1"
    25 
    26 config MPFR_V_2_4_0
    27     bool
    28     prompt "2.4.0"
    29 
    30 config MPFR_V_2_3_2
    31     bool
    32     prompt "2.3.2 (OBSOLETE)"
    33     depends on OBSOLETE
    34 
    35 config MPFR_V_2_3_1
    36     bool
    37     prompt "2.3.1 (OBSOLETE)"
    38     depends on OBSOLETE
    39 
    40 endchoice
    41 
    42 config MPFR_VERSION
    43     string
    44 # Don't remove next line
    45 # CT_INSERT_VERSION_STRING_BELOW
    46     default "3.0.1" if MPFR_V_3_0_1
    47     default "3.0.0" if MPFR_V_3_0_0
    48     default "2.4.2" if MPFR_V_2_4_2
    49     default "2.4.1" if MPFR_V_2_4_1
    50     default "2.4.0" if MPFR_V_2_4_0
    51     default "2.3.2" if MPFR_V_2_3_2
    52     default "2.3.1" if MPFR_V_2_3_1