config/libc/mingw.in
author Anthony Foiani <anthony.foiani@gmail.com>
Thu May 19 23:05:32 2011 +0200 (2011-05-19)
branch1.11
changeset 2463 7f87237857a0
child 2444 896cb0d36c1a
permissions -rw-r--r--
complibs/ppl: update GMP location configuration argument for PPL v0.11 and later

'configure' for PPL 0.11 (and later) needs "--with-gmp-prefix" to
provide the location of the GMP toolkit; the previous switches were
"--with-libgmp-prefix" and "--with-libgmpxx-prefix".

The upstream log message is:

commit 08dfb6fea094f8c5a533575a3ea2095edce99a6d
Author: Roberto Bagnara <bagnara@cs.unipr.it>
Date: Sun Jul 12 21:39:46 2009 +0200

New configure option --with-gmp-prefix supersedes the (now removed)
options --with-libgmp-prefix and --with-libgmpxx-prefix.

Link: http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=08dfb6fea094f8c5a533575a3ea2095edce99a6d

Since PPL's 'configure' ignores unknown switches, we use all three so we
don't have to conditionalize the ppl.sh build script itself.

Signed-Off-By: Anthony Foiani <anthony.foiani@gmail.com>
(transplanted from 4f0c4fb572e2862c24b28e8d27ce7e9cb9adba65)
bartvdrmeulen@2017
     1
# mingw options
bartvdrmeulen@2017
     2
# depends on MINGW32
bartvdrmeulen@2017
     3
bartvdrmeulen@2017
     4
config LIBC_mingw
bartvdrmeulen@2017
     5
    bool
bartvdrmeulen@2017
     6
    select LIBC_SUPPORT_WIN32THREADS
bartvdrmeulen@2017
     7
    help
bartvdrmeulen@2017
     8
      The de-facto standard for Mingw distributions.
bartvdrmeulen@2017
     9
bartvdrmeulen@2017
    10
choice
bartvdrmeulen@2017
    11
    bool
bartvdrmeulen@2017
    12
    prompt "Mingw runtime version"
bartvdrmeulen@2017
    13
bartvdrmeulen@2017
    14
# Don't remove next line
bartvdrmeulen@2017
    15
# CT_INSERT_VERSION_BELOW
bartvdrmeulen@2017
    16
config MINGWRT_V_3_18
bartvdrmeulen@2017
    17
    bool
bartvdrmeulen@2017
    18
    prompt "3.18"
bartvdrmeulen@2017
    19
bartvdrmeulen@2017
    20
config MINGWRT_V_select
bartvdrmeulen@2017
    21
    bool
bartvdrmeulen@2017
    22
    prompt "Other version"
bartvdrmeulen@2017
    23
bartvdrmeulen@2017
    24
endchoice
bartvdrmeulen@2017
    25
bartvdrmeulen@2017
    26
config MINGWRT_VERSION
bartvdrmeulen@2017
    27
    string
bartvdrmeulen@2017
    28
    prompt "Mingw runtime version" if MINGWRT_V_select
bartvdrmeulen@2017
    29
# Don't remove next line
bartvdrmeulen@2017
    30
# CT_INSERT_VERSION_STRING_BELOW
bartvdrmeulen@2017
    31
    default "3.18" if MINGWRT_V_3_18
bartvdrmeulen@2017
    32
    help
bartvdrmeulen@2017
    33
      Enter the version number of the mingw runtime files to use
bartvdrmeulen@2017
    34