config/gmp_mpfr/mpfr.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Jun 11 21:47:19 2009 +0000 (2009-06-11)
branch1.4
changeset 1451 25d050084e98
parent 1199 4714cf419e98
permissions -rw-r--r--
populate: fix installing dynamic linker 'ld.so'

The dynamic linker, ld.so, needs the execute bit to be set.
Detect tht the library being installed is in fact ld.so and
install it with 0755 instead of 0644.

Fix detecting src == dst.

Use a simpler command to copy src -> dst.

Also change echo to printf, get rid of 'echo -n', which is
highly non-portable.


-------- diffstat follows --------
/trunk/scripts/populate.in | 76 43 33 0 +++++++++++++++++++++++++++++-----------------------
1 file changed, 43 insertions(+), 33 deletions(-)
(transplanted from d7ddcb75e0f703e2ba6d17169167356389224870)
yann@466
     1
# GMP options
yann@466
     2
yann@466
     3
choice
yann@466
     4
    bool
yann@466
     5
    prompt "MPFR version"
yann@466
     6
yann@466
     7
config MPFR_V_2_3_1
yann@466
     8
    bool
yann@466
     9
    prompt "2.3.1"
yann@466
    10
yann@902
    11
config MPFR_V_2_3_2
yann@902
    12
    bool
yann@902
    13
    prompt "2.3.2"
yann@902
    14
yann@1199
    15
config MPFR_V_2_4_0
yann@1199
    16
    bool
yann@1249
    17
    prompt "2.4.0"
yann@1249
    18
yann@1249
    19
config MPFR_V_2_4_1
yann@1249
    20
    bool
yann@1249
    21
    prompt "2.4.1"
yann@1199
    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 MPFR_VERSION
yann@466
    28
    string
yann@466
    29
    default "2.3.1" if MPFR_V_2_3_1
yann@902
    30
    default "2.3.2" if MPFR_V_2_3_2
yann@1199
    31
    default "2.4.0" if MPFR_V_2_4_0
yann@1249
    32
    default "2.4.1" if MPFR_V_2_4_1
yann@466
    33
# CT_INSERT_VERSION_STRING_ABOVE
yann@466
    34
# Don't remove above line!
yann@466
    35
yann@466
    36
config MPFR_CHECK
yann@466
    37
    bool
yann@466
    38
    prompt "Check MPFR"
yann@466
    39
    default y
yann@466
    40
    help
yann@466
    41
      It is highly recommended that 'make check' is run against the newly built
yann@466
    42
      MPFR library. See http://gmplib.org/