config/companion_libs/mpc.in
author Arnaud Lacombe <lacombar@gmail.com>
Thu Aug 05 17:59:51 2010 +0200 (2010-08-05)
changeset 2069 366bd2b22675
parent 1783 dabf9572e240
child 2319 ef1c7007dfeb
permissions -rw-r--r--
complibs/mpc: fix MPC 0.8.1 build with MPFR 3.0.0

This is the change introduced by revision 734 of MPC repository.

Author: Paul Zimmermann <Paul.Zimmermann@loria.fr>
Revision log: [acos.c] fixed problem with GMP_RNDA (should be MPFR_RNDA, and code was wrong)

Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
     1 # MPC options
     2 
     3 choice
     4     bool
     5     prompt "MPC version"
     6 # Don't remove next line
     7 # CT_INSERT_VERSION_BELOW
     8 
     9 config MPC_V_0_8_2
    10     bool
    11     prompt "0.8.2 (EXPERIMENTAL)"
    12     depends on EXPERIMENTAL
    13 
    14 config MPC_V_0_8_1
    15     bool
    16     prompt "0.8.1"
    17 
    18 config MPC_V_0_7
    19     bool
    20     prompt "0.7"
    21 
    22 config MPC_V_0_6
    23     bool
    24     prompt "0.6 (OBSOLETE)"
    25     depends on OBSOLETE
    26 
    27 endchoice
    28 
    29 config MPC_VERSION
    30     string
    31 # Don't remove next line
    32 # CT_INSERT_VERSION_STRING_BELOW
    33     default "0.8.2" if MPC_V_0_8_2
    34     default "0.8.1" if MPC_V_0_8_1
    35     default "0.7" if MPC_V_0_7
    36     default "0.6" if MPC_V_0_6