config/companion_libs/mpfr.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 1386 7995942261f2
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 "MPFR version"
     6 
     7 config MPFR_V_2_4_1
     8     bool
     9     prompt "2.4.1"
    10 
    11 config MPFR_V_2_4_0
    12     bool
    13     prompt "2.4.0"
    14 
    15 config MPFR_V_2_3_2
    16     bool
    17     prompt "2.3.2"
    18 
    19 config MPFR_V_2_3_1
    20     bool
    21     prompt "2.3.1"
    22 
    23 # CT_INSERT_VERSION_ABOVE
    24 # Don't remove above line!
    25 endchoice
    26 
    27 config MPFR_VERSION
    28     string
    29     default "2.4.1" if MPFR_V_2_4_1
    30     default "2.4.0" if MPFR_V_2_4_0
    31     default "2.3.2" if MPFR_V_2_3_2
    32     default "2.3.1" if MPFR_V_2_3_1
    33 # CT_INSERT_VERSION_STRING_ABOVE
    34 # Don't remove above line!