config/companion_libs/mpfr.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed May 02 21:09:29 2012 +0200 (2012-05-02)
branch1.15
changeset 2960 57182f437da8
parent 2756 3976adc582fb
child 3142 6569f6a9060c
permissions -rw-r--r--
complibs: remove experimental from versions selection

Since I removed EXPERIMENTAL to most of gcc versions, the configuration
is now broken, as the required companion libraries versions are not
selectable, as they are still hidden behind EXPERIMENTAL.

Reported-by: Claudio Henrique Fortes Felix (chffelix on irc://irc.freenode.net/crosstool-ng)
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
(transplanted from 3e2f2100a76daa0a6d0a97c9f71b1ceacd403fe7)
     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_1_0
    10     bool
    11     prompt "3.1.0"
    12 
    13 config MPFR_V_3_0_1
    14     bool
    15     prompt "3.0.1"
    16 
    17 config MPFR_V_3_0_0
    18     bool
    19     prompt "3.0.0"
    20 
    21 config MPFR_V_2_4_2
    22     bool
    23     prompt "2.4.2"
    24 
    25 config MPFR_V_2_4_1
    26     bool
    27     prompt "2.4.1"
    28 
    29 config MPFR_V_2_4_0
    30     bool
    31     prompt "2.4.0"
    32 
    33 config MPFR_V_2_3_2
    34     bool
    35     prompt "2.3.2 (OBSOLETE)"
    36     depends on OBSOLETE
    37 
    38 config MPFR_V_2_3_1
    39     bool
    40     prompt "2.3.1 (OBSOLETE)"
    41     depends on OBSOLETE
    42 
    43 endchoice
    44 
    45 config MPFR_VERSION
    46     string
    47 # Don't remove next line
    48 # CT_INSERT_VERSION_STRING_BELOW
    49     default "3.1.0" if MPFR_V_3_1_0
    50     default "3.0.1" if MPFR_V_3_0_1
    51     default "3.0.0" if MPFR_V_3_0_0
    52     default "2.4.2" if MPFR_V_2_4_2
    53     default "2.4.1" if MPFR_V_2_4_1
    54     default "2.4.0" if MPFR_V_2_4_0
    55     default "2.3.2" if MPFR_V_2_3_2
    56     default "2.3.1" if MPFR_V_2_3_1