config/companion_libs/gmp.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 2651 a171c274bc12
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>
     1 # GMP options
     2 
     3 choice
     4     bool
     5     prompt "GMP version"
     6 # Don't remove next line
     7 # CT_INSERT_VERSION_BELOW
     8 
     9 config GMP_V_5_0_2
    10     bool
    11     prompt "5.0.2"
    12 
    13 config GMP_V_5_0_1
    14     bool
    15     prompt "5.0.1"
    16 
    17 config GMP_V_4_3_2
    18     bool
    19     prompt "4.3.2"
    20 
    21 config GMP_V_4_3_1
    22     bool
    23     prompt "4.3.1"
    24 
    25 config GMP_V_4_3_0
    26     bool
    27     prompt "4.3.0"
    28 
    29 config GMP_V_4_2_4
    30     bool
    31     prompt "4.2.4 (OBSOLETE)"
    32     depends on OBSOLETE
    33 
    34 config GMP_V_4_2_2
    35     bool
    36     prompt "4.2.2 (OBSOLETE)"
    37     depends on OBSOLETE
    38 
    39 endchoice
    40 
    41 config GMP_VERSION
    42     string
    43 # Don't remove next line
    44 # CT_INSERT_VERSION_STRING_BELOW
    45     default "5.0.2" if GMP_V_5_0_2
    46     default "5.0.1" if GMP_V_5_0_1
    47     default "4.3.2" if GMP_V_4_3_2
    48     default "4.3.1" if GMP_V_4_3_1
    49     default "4.3.0" if GMP_V_4_3_0
    50     default "4.2.4" if GMP_V_4_2_4
    51     default "4.2.2" if GMP_V_4_2_2