config/companion_libs/mpfr.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Sep 16 17:49:28 2011 +0200 (2011-09-16)
changeset 2674 8a612563c04c
parent 1978 fbee95d8182b
child 2756 3976adc582fb
permissions -rw-r--r--
docs/known-issues: add the infamous "mixed implicit and normal rules"

make-3.82 now refuses to have both normal and implicit rules in the
same definition, so document the issue with a known workaround.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     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