config/companion_libs/gmp.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Nov 30 00:25:22 2011 +0100 (2011-11-30)
changeset 2788 b6faa28e76e0
parent 1984 95b4a458fd60
child 2957 3e2f2100a76d
permissions -rw-r--r--
arch: rename the SUPPORT_XXX options

First, 'SUPPORT' should be spelled 'SUPPORTS'.

Second, 'SUPPORT_XXX' really means 'supports --with-xxx', so rename the
affected options accordingly. Update the affected archs to match the new
namings.

Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.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 (EXPERIMENTAL)"
    12     depends on EXPERIMENTAL
    13 
    14 config GMP_V_5_0_1
    15     bool
    16     prompt "5.0.1 (EXPERIMENTAL)"
    17     depends on EXPERIMENTAL
    18 
    19 config GMP_V_4_3_2
    20     bool
    21     prompt "4.3.2"
    22 
    23 config GMP_V_4_3_1
    24     bool
    25     prompt "4.3.1"
    26 
    27 config GMP_V_4_3_0
    28     bool
    29     prompt "4.3.0"
    30 
    31 config GMP_V_4_2_4
    32     bool
    33     prompt "4.2.4 (OBSOLETE)"
    34     depends on OBSOLETE
    35 
    36 config GMP_V_4_2_2
    37     bool
    38     prompt "4.2.2 (OBSOLETE)"
    39     depends on OBSOLETE
    40 
    41 endchoice
    42 
    43 config GMP_VERSION
    44     string
    45 # Don't remove next line
    46 # CT_INSERT_VERSION_STRING_BELOW
    47     default "5.0.2" if GMP_V_5_0_2
    48     default "5.0.1" if GMP_V_5_0_1
    49     default "4.3.2" if GMP_V_4_3_2
    50     default "4.3.1" if GMP_V_4_3_1
    51     default "4.3.0" if GMP_V_4_3_0
    52     default "4.2.4" if GMP_V_4_2_4
    53     default "4.2.2" if GMP_V_4_2_2