config/gmp_mpfr/mpfr.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Mar 23 23:05:08 2009 +0000 (2009-03-23)
changeset 1264 2b591f1d34ba
parent 1199 4714cf419e98
permissions -rw-r--r--
xlcwu <xlcwu.taiwan@gmail.com> wrote:
Seems ncurses 5.7 need build host stage for tic step; if use host tic
(ubuntu) the build process hang in the below step.
So I guess need to build ncurses host stage to build new tic

and provided a patch to that efect.

And in fact, we do need "tic" to run on the _build_ system to properly
generate the terminfo database.

Note: this is fully functional, but still requires a litle bit of
tweaking so that ${CT_BUILD}-gcc gets used instead of plain gcc.
But that's a minor problem for now...

/trunk/scripts/build/debug/300-gdb.sh | 35 33 2 0 +++++++++++++++++++++++++++++++++--
/trunk/scripts/build/internals.sh | 1 1 0 0 +
2 files changed, 34 insertions(+), 2 deletions(-)
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/