config/companion_libs/gmp.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Thu Dec 27 12:53:32 2012 +0100 (2012-12-27)
changeset 3153 f6740f9e42de
parent 2957 3e2f2100a76d
child 3207 ec3c3aa99c79
permissions -rw-r--r--
scripts/addToolsVersion: handle elf2flt

The one was missing from the list.

It is very improbable that we ever need it, as elf2flt does no release,
and we always get it from CVS head. But for the sake of consistency, we
just add it.

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 endchoice
    30 
    31 config GMP_VERSION
    32     string
    33 # Don't remove next line
    34 # CT_INSERT_VERSION_STRING_BELOW
    35     default "5.0.2" if GMP_V_5_0_2
    36     default "5.0.1" if GMP_V_5_0_1
    37     default "4.3.2" if GMP_V_4_3_2
    38     default "4.3.1" if GMP_V_4_3_1
    39     default "4.3.0" if GMP_V_4_3_0