Skip to content

Commit

Permalink
2012-05-31 Benjamin Kosnik <bkoz@redhat.com>
Browse files Browse the repository at this point in the history
        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
  • Loading branch information
bkoz committed May 31, 2012
1 parent 47e8b7a commit 06e4a26
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 6 deletions.
6 changes: 6 additions & 0 deletions libgfortran/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2012-05-31 Benjamin Kosnik <bkoz@redhat.com>

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

2012-05-31 Tobias Burnus <burnus@net-b.de>

Revert:
Expand Down
2 changes: 1 addition & 1 deletion libgfortran/configure
Original file line number Diff line number Diff line change
Expand Up @@ -5781,7 +5781,7 @@ else
gfortran_use_symver=yes
fi

if test "x$gfortran_use_symver" = xyes; then
if test "x$gfortran_use_symver" != xno; then
save_LDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS -fPIC -shared -Wl,--version-script,./conftest.map"
cat > conftest.map <<EOF
Expand Down
2 changes: 1 addition & 1 deletion libgfortran/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ AS_HELP_STRING([--disable-symvers],
[disable symbol versioning for libgfortran]),
gfortran_use_symver=$enableval,
gfortran_use_symver=yes)
if test "x$gfortran_use_symver" = xyes; then
if test "x$gfortran_use_symver" != xno; then
save_LDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS -fPIC -shared -Wl,--version-script,./conftest.map"
cat > conftest.map <<EOF
Expand Down
6 changes: 6 additions & 0 deletions libquadmath/ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion libquadmath/configure
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion libquadmath/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 6 additions & 0 deletions libssp/ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion libssp/configure
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion libssp/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 06e4a26

Please sign in to comment.