config/companion_libs/gmp.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Aug 30 19:33:48 2009 +0200 (2009-08-30)
changeset 1497 1b90f0b34c80
parent 1386 7995942261f2
child 1534 d4ddf19a1968
permissions -rw-r--r--
config: move down companion libraries sub-menu

Move the companion libraries sub-menu down the main menu.
That way, the user does not need to go back and forth in the menu
to change options set by the different components that select the
companion libraries (binutils, gcc, gdb).
yann@466
     1
# GMP options
yann@466
     2
yann@466
     3
choice
yann@466
     4
    bool
yann@466
     5
    prompt "GMP version"
yann@466
     6
yann@466
     7
config GMP_V_4_2_2
yann@466
     8
    bool
yann@466
     9
    prompt "4.2.2"
yann@466
    10
yann@902
    11
config GMP_V_4_2_4
yann@902
    12
    bool
yann@902
    13
    prompt "4.2.4"
yann@902
    14
yann@1440
    15
config GMP_V_4_3_0
yann@1440
    16
    bool
yann@1440
    17
    prompt "4.3.0"
yann@1440
    18
yann@1440
    19
config GMP_V_4_3_1
yann@1440
    20
    bool
yann@1440
    21
    prompt "4.3.1"
yann@1440
    22
yann@466
    23
# CT_INSERT_VERSION_ABOVE
yann@466
    24
# Don't remove above line!
yann@466
    25
endchoice
yann@466
    26
yann@466
    27
config GMP_VERSION
yann@466
    28
    string
yann@466
    29
    default "4.2.2" if GMP_V_4_2_2
yann@902
    30
    default "4.2.4" if GMP_V_4_2_4
yann@1440
    31
    default "4.3.0" if GMP_V_4_3_0
yann@1440
    32
    default "4.3.1" if GMP_V_4_3_1
yann@466
    33
# CT_INSERT_VERSION_STRING_ABOVE
yann@466
    34
# Don't remove above line!