mirror of git://gcc.gnu.org/git/gcc.git
acinclude.m4 (symvers_renaming): Define HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT instead of...
2010-07-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> * acinclude.m4 (symvers_renaming): Define HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT instead of _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT. Fix syntax error. * config.h.in: Regenerate. * configure: Regenerate. From-SVN: r161706
This commit is contained in:
parent
1936833358
commit
8198d54181
|
@ -1,3 +1,12 @@
|
||||||
|
2010-07-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* acinclude.m4 (symvers_renaming): Define
|
||||||
|
HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT instead of
|
||||||
|
_GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT.
|
||||||
|
Fix syntax error.
|
||||||
|
* config.h.in: Regenerate.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2010-07-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
2010-07-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
* acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Handle sun style.
|
* acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Handle sun style.
|
||||||
|
|
|
@ -2998,9 +2998,9 @@ if test $enable_symvers != no ; then
|
||||||
symvers_renaming=no ;;
|
symvers_renaming=no ;;
|
||||||
# Other platforms with GNU symbol versioning (GNU/Linux, more?) do.
|
# Other platforms with GNU symbol versioning (GNU/Linux, more?) do.
|
||||||
*)
|
*)
|
||||||
AC_DEFINE(_GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT, 1,
|
AC_DEFINE(HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT, 1,
|
||||||
[Define to 1 if the target runtime linker supports binding the same symbol to different versions.])
|
[Define to 1 if the target runtime linker supports binding the same symbol to different versions.])
|
||||||
symvers_renaming=yes
|
symvers_renaming=yes ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
GLIBCXX_CONDITIONAL(ENABLE_SYMVERS_SOL2, test $symvers_renaming = no)
|
GLIBCXX_CONDITIONAL(ENABLE_SYMVERS_SOL2, test $symvers_renaming = no)
|
||||||
|
|
|
@ -349,6 +349,10 @@
|
||||||
/* Define if strxfrm_l is available in <string.h>. */
|
/* Define if strxfrm_l is available in <string.h>. */
|
||||||
#undef HAVE_STRXFRM_L
|
#undef HAVE_STRXFRM_L
|
||||||
|
|
||||||
|
/* Define to 1 if the target runtime linker supports binding the same symbol
|
||||||
|
to different versions. */
|
||||||
|
#undef HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/filio.h> header file. */
|
/* Define to 1 if you have the <sys/filio.h> header file. */
|
||||||
#undef HAVE_SYS_FILIO_H
|
#undef HAVE_SYS_FILIO_H
|
||||||
|
|
||||||
|
@ -691,10 +695,6 @@
|
||||||
/* Define if gthreads library is available. */
|
/* Define if gthreads library is available. */
|
||||||
#undef _GLIBCXX_HAS_GTHREADS
|
#undef _GLIBCXX_HAS_GTHREADS
|
||||||
|
|
||||||
/* Define to 1 if the target runtime linker supports binding the same symbol
|
|
||||||
to different versions. */
|
|
||||||
#undef _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT
|
|
||||||
|
|
||||||
/* Define to 1 if a full hosted library is built, or 0 if freestanding. */
|
/* Define to 1 if a full hosted library is built, or 0 if freestanding. */
|
||||||
#undef _GLIBCXX_HOSTED
|
#undef _GLIBCXX_HOSTED
|
||||||
|
|
||||||
|
|
|
@ -58414,9 +58414,9 @@ if test $enable_symvers != no ; then
|
||||||
# Other platforms with GNU symbol versioning (GNU/Linux, more?) do.
|
# Other platforms with GNU symbol versioning (GNU/Linux, more?) do.
|
||||||
*)
|
*)
|
||||||
|
|
||||||
$as_echo "#define _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1" >>confdefs.h
|
$as_echo "#define HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1" >>confdefs.h
|
||||||
|
|
||||||
symvers_renaming=yes
|
symvers_renaming=yes ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue