config/companion_libs/gmp.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 13 17:51:33 2009 +0200 (2009-09-13)
changeset 1534 d4ddf19a1968
parent 1440 acee1a44d10d
child 1535 073d351bdcd3
permissions -rw-r--r--
config: re-order menu entries so that latest versions are at the top

It makes better sense to have latest versions at the top of the choice
entries.
     1 # GMP options
     2 
     3 choice
     4     bool
     5     prompt "GMP version"
     6 
     7 config GMP_V_4_3_1
     8     bool
     9     prompt "4.3.1"
    10 
    11 config GMP_V_4_3_0
    12     bool
    13     prompt "4.3.0"
    14 
    15 config GMP_V_4_2_4
    16     bool
    17     prompt "4.2.4"
    18 
    19 config GMP_V_4_2_2
    20     bool
    21     prompt "4.2.2"
    22 
    23 # CT_INSERT_VERSION_ABOVE
    24 # Don't remove above line!
    25 endchoice
    26 
    27 config GMP_VERSION
    28     string
    29     default "4.3.1" if GMP_V_4_3_1
    30     default "4.3.0" if GMP_V_4_3_0
    31     default "4.2.4" if GMP_V_4_2_4
    32     default "4.2.2" if GMP_V_4_2_2
    33 # CT_INSERT_VERSION_STRING_ABOVE
    34 # Don't remove above line!