config/companion_libs/mpfr.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Tue Jul 31 22:27:29 2012 +0200 (2012-07-31)
changeset 3018 7776e8369284
parent 2756 3976adc582fb
child 3142 6569f6a9060c
permissions -rw-r--r--
complibs/cloog: create missing m4 dir

Because we now patch configure.in and configure, the Makefile quicks
in a re-build rule as the source files are now more recent than the
bundled generated files, and that fails because the m4 directory
is missing, although on some systems where aclocal is not installed,
the re-build rule does nothing (except a warning).

Always create tht directory.

Reported-by: Per Arnold Blaasmo <per-arnold.blaasmo@atmel.com>
[Also thanks to Thomas De Schampheleire <patrickdepinguin@gmail.com>
for some digging works on this issue]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
yann@466
     1
# GMP options
yann@466
     2
yann@466
     3
choice
yann@466
     4
    bool
yann@466
     5
    prompt "MPFR version"
yann@1535
     6
# Don't remove next line
yann@1535
     7
# CT_INSERT_VERSION_BELOW
yann@466
     8
yann@2756
     9
config MPFR_V_3_1_0
yann@2756
    10
    bool
yann@2957
    11
    prompt "3.1.0"
yann@2756
    12
yann@2436
    13
config MPFR_V_3_0_1
yann@2436
    14
    bool
yann@2957
    15
    prompt "3.0.1"
yann@2436
    16
yann@1978
    17
config MPFR_V_3_0_0
yann@1978
    18
    bool
yann@1978
    19
    prompt "3.0.0"
yann@1978
    20
yann@1696
    21
config MPFR_V_2_4_2
yann@1696
    22
    bool
yann@1784
    23
    prompt "2.4.2"
yann@1696
    24
yann@1534
    25
config MPFR_V_2_4_1
yann@466
    26
    bool
yann@1534
    27
    prompt "2.4.1"
yann@1534
    28
yann@1534
    29
config MPFR_V_2_4_0
yann@1534
    30
    bool
yann@1534
    31
    prompt "2.4.0"
yann@466
    32
yann@902
    33
config MPFR_V_2_3_2
yann@902
    34
    bool
yann@1615
    35
    prompt "2.3.2 (OBSOLETE)"
yann@1615
    36
    depends on OBSOLETE
yann@902
    37
yann@1534
    38
config MPFR_V_2_3_1
yann@1199
    39
    bool
yann@1615
    40
    prompt "2.3.1 (OBSOLETE)"
yann@1615
    41
    depends on OBSOLETE
yann@1199
    42
yann@466
    43
endchoice
yann@466
    44
yann@466
    45
config MPFR_VERSION
yann@466
    46
    string
yann@1535
    47
# Don't remove next line
yann@1535
    48
# CT_INSERT_VERSION_STRING_BELOW
yann@2756
    49
    default "3.1.0" if MPFR_V_3_1_0
yann@2436
    50
    default "3.0.1" if MPFR_V_3_0_1
yann@1978
    51
    default "3.0.0" if MPFR_V_3_0_0
yann@1696
    52
    default "2.4.2" if MPFR_V_2_4_2
yann@1534
    53
    default "2.4.1" if MPFR_V_2_4_1
yann@1534
    54
    default "2.4.0" if MPFR_V_2_4_0
yann@1534
    55
    default "2.3.2" if MPFR_V_2_3_2
yann@466
    56
    default "2.3.1" if MPFR_V_2_3_1