config/companion_libs/gmp.in
author Bart vdr. Meulen <bartvdrmeulen@gmail.com>
Fri Apr 09 21:04:24 2010 +0200 (2010-04-09)
changeset 1895 3ea4e6f7b85f
parent 1615 50b25816f5bb
child 1912 bcc0d5943bfa
permissions -rw-r--r--
[CT-NG:patch 05/19] Force autoreconf for mpfr

In some exotic case the autoreconf step of mpfr is not executed (correctly)
leaving an incorrect version number for libtool in the configure script.

After extracting the sources files, force autoreconf to be executed.

Signed-off-by: Bart vdr. Meulen <bartvdrmeulen@gmail.com>
     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_1
    10     bool
    11     prompt "5.0.1"
    12 
    13 config GMP_V_4_3_2
    14     bool
    15     prompt "4.3.2"
    16 
    17 config GMP_V_4_3_1
    18     bool
    19     prompt "4.3.1"
    20 
    21 config GMP_V_4_3_0
    22     bool
    23     prompt "4.3.0"
    24 
    25 config GMP_V_4_2_4
    26     bool
    27     prompt "4.2.4 (OBSOLETE)"
    28     depends on OBSOLETE
    29 
    30 config GMP_V_4_2_2
    31     bool
    32     prompt "4.2.2 (OBSOLETE)"
    33     depends on OBSOLETE
    34 
    35 endchoice
    36 
    37 config GMP_VERSION
    38     string
    39 # Don't remove next line
    40 # CT_INSERT_VERSION_STRING_BELOW
    41     default "5.0.1" if GMP_V_5_0_1
    42     default "4.3.2" if GMP_V_4_3_2
    43     default "4.3.1" if GMP_V_4_3_1
    44     default "4.3.0" if GMP_V_4_3_0
    45     default "4.2.4" if GMP_V_4_2_4
    46     default "4.2.2" if GMP_V_4_2_2