re PR libstdc++/23926 (libstdc++-v3 configure failed)
PR libstdc++/23926 * acinclude.m4 (port_specific_symbol_files): More symbol versioning fixes. * configure: Regenerate. From-SVN: r105371
This commit is contained in:
parent
8d1d0da541
commit
8c210c4104
3 changed files with 11 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
])
|
||||
|
||||
|
|
4
libstdc++-v3/configure
vendored
4
libstdc++-v3/configure
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue