diff options
author | Steve Ellcey <sje@cup.hp.com> | 2007-04-14 19:51:44 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2007-04-14 19:51:44 +0000 |
commit | 94872c09c9fe7206ef9f3c60bf0c4c84e218726f (patch) | |
tree | d89beffec158887d604b1efcfe9972ac0583f210 /libstdc++-v3 | |
parent | 01a6a27a02f321ddfaeb1f8ccfdb907bd5fd1382 (diff) | |
download | gcc-94872c09c9fe7206ef9f3c60bf0c4c84e218726f.tar.gz |
configure.ac: Change how LIBSUPCXX_PICFLAGS is set.
* configure.ac: Change how LIBSUPCXX_PICFLAGS is set.
* configure: Regenerate.
From-SVN: r123828
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rwxr-xr-x | libstdc++-v3/configure | 6 | ||||
-rw-r--r-- | libstdc++-v3/configure.ac | 6 |
3 files changed, 9 insertions, 8 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b9c35879dca..16a1336ee45 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2007-04-14 Steve Ellcey <sje@cup.hp.com> + + * configure.ac: Change how LIBSUPCXX_PICFLAGS is set. + * configure: Regenerate. + 2007-04-14 Paolo Carlini <pcarlini@suse.de> * config/locale/generic/c_locale.cc: Include <limits>. diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 55069241e78..22f3e1a7d59 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -85067,10 +85067,8 @@ echo "${ECHO_T}$gxx_include_dir" >&6 -if ${CONFIG_SHELL-/bin/sh} ./libtool --tag CXX --features | - grep "enable shared" > /dev/null; -then - LIBSUPCXX_PICFLAGS=-prefer-pic +if test "$enable_shared" = yes; then + LIBSUPCXX_PICFLAGS="-prefer-pic" else LIBSUPCXX_PICFLAGS= fi diff --git a/libstdc++-v3/configure.ac b/libstdc++-v3/configure.ac index 7bebae9229d..e549e8a10f5 100644 --- a/libstdc++-v3/configure.ac +++ b/libstdc++-v3/configure.ac @@ -355,10 +355,8 @@ GLIBCXX_EXPORT_INSTALL_INFO GLIBCXX_EXPORT_INCLUDES GLIBCXX_EXPORT_FLAGS -if ${CONFIG_SHELL-/bin/sh} ./libtool --tag CXX --features | - grep "enable shared" > /dev/null; -then - LIBSUPCXX_PICFLAGS=-prefer-pic +if test "$enable_shared" = yes; then + LIBSUPCXX_PICFLAGS="-prefer-pic" else LIBSUPCXX_PICFLAGS= fi |