diff options
author | Sebastian Pop <sebastian.pop@amd.com> | 2008-12-12 17:24:23 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2008-12-12 17:24:23 +0000 |
commit | 0a280b3566a96f29c7d5ec1cc35ef9d12482abb6 (patch) | |
tree | d8af9e3b5774bdc1169498322ae9a1ecc35a0117 | |
parent | 50ce8d3d7881457c44f0ef64b3d8e0fbfd6acf80 (diff) | |
download | gcc-0a280b3566a96f29c7d5ec1cc35ef9d12482abb6.tar.gz |
configure.ac (ppllibs): Add by default the lib flags.
2008-12-12 Sebastian Pop <sebastian.pop@amd.com>
* configure.ac (ppllibs): Add by default the lib flags.
* configure: Regenerate.
From-SVN: r142715
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index ee366db9014..82125465bf5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-12-12 Sebastian Pop <sebastian.pop@amd.com> + + * configure.ac (ppllibs): Add by default the lib flags. + * configure: Regenerate. + 2008-12-08 Luis Machado <luisgpm@br.ibm.com> * MAINTAINERS: Add myself to the write after approval list. diff --git a/configure b/configure index 403982c69fb..f26e2ba5cb7 100755 --- a/configure +++ b/configure @@ -4809,7 +4809,7 @@ fi # Check for PPL ppl_major_version=0 ppl_minor_version=10 -ppllibs= +ppllibs=" -lppl_c -lppl -lgmpxx " pplinc= diff --git a/configure.ac b/configure.ac index 21fcf78ed49..6efc633c308 100644 --- a/configure.ac +++ b/configure.ac @@ -1315,7 +1315,7 @@ AC_SUBST(gmpinc) # Check for PPL ppl_major_version=0 ppl_minor_version=10 -ppllibs= +ppllibs=" -lppl_c -lppl -lgmpxx " pplinc= AC_ARG_WITH(ppl, [ --with-ppl=PATH Specify prefix directory for the installed PPL package |