diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2010-12-06 17:10:09 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2010-12-06 17:10:09 +0000 |
commit | c0f9d583f06a2f8de12079f6ea3775f7cda9f51c (patch) | |
tree | 8514690847fb34d3c5a4112ee5d786691fb7b9c1 /libstdc++-v3 | |
parent | b62305b0196a917aae36307c2e60eee6fcfbeeb7 (diff) | |
download | gcc-c0f9d583f06a2f8de12079f6ea3775f7cda9f51c.zip gcc-c0f9d583f06a2f8de12079f6ea3775f7cda9f51c.tar.gz gcc-c0f9d583f06a2f8de12079f6ea3775f7cda9f51c.tar.bz2 |
acinclude.m4 (symvers_renaming): Also set if enable_symvers = no.
libgomp:
* acinclude.m4 (symvers_renaming): Also set if enable_symvers = no.
* configure: Regenerate.
libstdc++-v3:
* acinclude.m4 (symvers_renaming): Also set if enable_symvers = no.
* configure: Regenerate.
From-SVN: r167505
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/acinclude.m4 | 2 | ||||
-rwxr-xr-x | libstdc++-v3/configure | 2 |
3 files changed, 9 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 7deae75..d9cdfb3 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2010-12-06 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * acinclude.m4 (symvers_renaming): Also set if enable_symvers = no. + * configure: Regenerate. + 2010-12-06 Paolo Carlini <paolo.carlini@oracle.com> PR libstdc++/46821 diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index 18f41af..f8db04e 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -3004,6 +3004,8 @@ if test $enable_symvers != no ; then [Define to 1 if the target runtime linker supports binding the same symbol to different versions.]) symvers_renaming=yes ;; esac +else + symvers_renaming=no fi GLIBCXX_CONDITIONAL(ENABLE_SYMVERS_SOL2, test $symvers_renaming = no) diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 085fb62..85ac949 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -58461,6 +58461,8 @@ $as_echo "#define HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1" >>confdefs.h symvers_renaming=yes ;; esac +else + symvers_renaming=no fi |