diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-31 18:51:27 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-31 18:51:27 +0000 |
commit | 06e4a26520d5141cc7edea18cdbf6a6e28fc5d2a (patch) | |
tree | 71cb8639faa7c81a5c1878e151e0d229f1248ba5 /libquadmath | |
parent | 47e8b7ae0a0af69e6f7d2bcea978fa2b0652c33e (diff) | |
download | gcc-06e4a26520d5141cc7edea18cdbf6a6e28fc5d2a.tar.gz |
2012-05-31 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/51007
* configure.ac: Allow gnu, gnu* variants for --enable-symvers argument.
* configure: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@188076 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libquadmath')
-rw-r--r-- | libquadmath/ChangeLog | 6 | ||||
-rwxr-xr-x | libquadmath/configure | 2 | ||||
-rw-r--r-- | libquadmath/configure.ac | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/libquadmath/ChangeLog b/libquadmath/ChangeLog index 4c25e881327..b5e92149e50 100644 --- a/libquadmath/ChangeLog +++ b/libquadmath/ChangeLog @@ -1,3 +1,9 @@ +2012-05-29 Benjamin Kosnik <bkoz@redhat.com> + + PR libstdc++/51007 + * configure.ac: Allow gnu, gnu* variants for --enable-symvers argument. + * configure: Regenerated. + 2012-05-16 H.J. Lu <hongjiu.lu@intel.com> * configure: Regenerated. diff --git a/libquadmath/configure b/libquadmath/configure index e5c3de65164..8beb1a6255a 100755 --- a/libquadmath/configure +++ b/libquadmath/configure @@ -12355,7 +12355,7 @@ else quadmath_use_symver=yes fi -if test "x$quadmath_use_symver" = xyes; then +if test "x$quadmath_use_symver" != xno; then if test x$gcc_no_link = xyes; then # If we cannot link, we cannot build shared libraries, so do not use # symbol versioning. diff --git a/libquadmath/configure.ac b/libquadmath/configure.ac index 512b9f81391..d3bfb040cd0 100644 --- a/libquadmath/configure.ac +++ b/libquadmath/configure.ac @@ -169,7 +169,7 @@ AS_HELP_STRING([--disable-symvers], [disable symbol versioning for libquadmath]), quadmath_use_symver=$enableval, quadmath_use_symver=yes) -if test "x$quadmath_use_symver" = xyes; then +if test "x$quadmath_use_symver" != xno; then if test x$gcc_no_link = xyes; then # If we cannot link, we cannot build shared libraries, so do not use # symbol versioning. |