re PR bootstrap/52700 (lib* configure fails on --enable-symvers=gnu-versioned-namespace.)

2012-05-31  Benjamin Kosnik  <bkoz@redhat.com>

        PR libstdc++/52007
        * configure.ac: Allow gnu, gnu* variants for --enable-symvers argument.
        * configure: Regenerated.

From-SVN: r188078
This commit is contained in:
Benjamin Kosnik 2012-05-31 18:59:34 +00:00 committed by Benjamin Kosnik
parent 49964c9712
commit 166362f083
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2012-05-31 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/52007
* configure.ac: Allow gnu, gnu* variants for --enable-symvers argument.
* configure: Regenerated.
2012-03-22 Release Manager
* GCC 4.7.0 released.

2
libssp/configure vendored
View File

@ -4107,7 +4107,7 @@ else
ssp_use_symver=yes
fi
if test "x$ssp_use_symver" = xyes; then
if test "x$ssp_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.

View File

@ -77,7 +77,7 @@ AS_HELP_STRING([--disable-symvers],
[disable symbol versioning for libssp]),
ssp_use_symver=$enableval,
ssp_use_symver=yes)
if test "x$ssp_use_symver" = xyes; then
if test "x$ssp_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.