complibs/ppl: update GMP location configuration argument for PPL v0.11 and later 1.11
authorAnthony Foiani <anthony.foiani@gmail.com>
Thu May 19 23:05:32 2011 +0200 (2011-05-19)
branch1.11
changeset 24637f87237857a0
parent 2458 4cb1a39d7b24
child 2464 4b844234d214
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)
scripts/build/companion_libs/ppl.sh
     1.1 --- a/scripts/build/companion_libs/ppl.sh	Thu May 19 00:58:02 2011 +0200
     1.2 +++ b/scripts/build/companion_libs/ppl.sh	Thu May 19 23:05:32 2011 +0200
     1.3 @@ -41,6 +41,7 @@
     1.4          --prefix="${CT_COMPLIBS_DIR}"               \
     1.5          --with-libgmp-prefix="${CT_COMPLIBS_DIR}"   \
     1.6          --with-libgmpxx-prefix="${CT_COMPLIBS_DIR}" \
     1.7 +        --with-gmp-prefix="${CT_COMPLIBS_DIR}"      \
     1.8          --enable-cxx                                \
     1.9          --enable-watchdog                           \
    1.10          --disable-debugging                         \