config/companion_libs/gmp.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Aug 02 20:06:44 2009 +0200 (2009-08-02)
changeset 1446 0a44fc4d6bd0
parent 1381 5d9b7f52514f
child 1440 acee1a44d10d
permissions -rw-r--r--
[config] Allow user to specify custom CONFIG_SHELL

In case the shell the user wants to use as CONFIG_SHELL is located in a
weird place (eg. /opt/bash/bin/bash), or is weirdly named (eg. bash-4),
let the user enter the patch to the shell.
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@466
    15
# CT_INSERT_VERSION_ABOVE
yann@466
    16
# Don't remove above line!
yann@466
    17
endchoice
yann@466
    18
yann@466
    19
config GMP_VERSION
yann@466
    20
    string
yann@466
    21
    default "4.2.2" if GMP_V_4_2_2
yann@902
    22
    default "4.2.4" if GMP_V_4_2_4
yann@466
    23
# CT_INSERT_VERSION_STRING_ABOVE
yann@466
    24
# Don't remove above line!