diff options
author | rearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-13 15:24:09 +0000 |
---|---|---|
committer | rearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-13 15:24:09 +0000 |
commit | e2b5dce0efa605769ca429d6dd3ebaaa14a26de9 (patch) | |
tree | 9cf16a072770ed4c9c3b7b84bfc50ccba5488ad5 /libstdc++-v3 | |
parent | d64e2c5bf65efe9d182b013ab5e52af0191d4993 (diff) | |
download | gcc-e2b5dce0efa605769ca429d6dd3ebaaa14a26de9.tar.gz |
PR libstdc++/23926
* acinclude.m4 (port_specific_symbol_files): More symbol versioning
fixes.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@105371 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 7 | ||||
-rw-r--r-- | libstdc++-v3/acinclude.m4 | 4 | ||||
-rwxr-xr-x | libstdc++-v3/configure | 4 |
3 files changed, 11 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index efc041e0c15..d4a25a179aa 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2005-10-13 Richard Earnshaw <richard.earnsahw@arm.com> + + PR libstdc++/23926 + * acinclude.m4 (port_specific_symbol_files): More symbol versioning + fixes. + * configure: Regenerate. + 2005-10-13 Hans-Peter Nilsson <hp@axis.com> * testsuite/lib/libstdc++.exp (libstdc++_init): Require diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index 9185a67309e..accbe0acc07 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -1813,9 +1813,9 @@ AC_MSG_RESULT([$glibcxx_ptrdiff_t_is_i]) AC_SUBST(SYMVER_MAP) AC_SUBST(port_specific_symbol_files) -GLIBCXX_CONDITIONAL(ENABLE_SYMVERS_GNU, test $enable_symvers == gnu) +GLIBCXX_CONDITIONAL(ENABLE_SYMVERS_GNU, test $enable_symvers = gnu) GLIBCXX_CONDITIONAL(ENABLE_SYMVERS_DARWIN_EXPORT, dnl - test $enable_symvers == darwin-export) + test $enable_symvers = darwin-export) AC_MSG_NOTICE(versioning on shared library symbols is $enable_symvers) ]) diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index e754c9e54e0..3e4f1aa34d8 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -88422,7 +88422,7 @@ fi -if test $enable_symvers == gnu; then +if test $enable_symvers = gnu; then ENABLE_SYMVERS_GNU_TRUE= ENABLE_SYMVERS_GNU_FALSE='#' else @@ -88433,7 +88433,7 @@ fi -if test $enable_symvers == darwin-export; then +if test $enable_symvers = darwin-export; then ENABLE_SYMVERS_DARWIN_EXPORT_TRUE= ENABLE_SYMVERS_DARWIN_EXPORT_FALSE='#' else |