diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-06 17:10:09 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-06 17:10:09 +0000 |
commit | 5498a4cc51db955d95a13769378127900acedf27 (patch) | |
tree | 8514690847fb34d3c5a4112ee5d786691fb7b9c1 /libgomp | |
parent | c29b28e7d9aba6c4d8aca3e4725bb0679ce6cf97 (diff) | |
download | gcc-5498a4cc51db955d95a13769378127900acedf27.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167505 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgomp')
-rw-r--r-- | libgomp/ChangeLog | 5 | ||||
-rw-r--r-- | libgomp/acinclude.m4 | 2 | ||||
-rwxr-xr-x | libgomp/configure | 2 |
3 files changed, 9 insertions, 0 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 2209d5e4471..c391dd81aa5 100644 --- a/libgomp/ChangeLog +++ b/libgomp/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 Dave Korn <dave.korn.cygwin@gmail.com> PR target/40125 diff --git a/libgomp/acinclude.m4 b/libgomp/acinclude.m4 index 8d6d0e54a7b..d46d78596ec 100644 --- a/libgomp/acinclude.m4 +++ b/libgomp/acinclude.m4 @@ -358,6 +358,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 AM_CONDITIONAL(LIBGOMP_BUILD_VERSIONED_SHLIB_SOL2, test $symvers_renaming = no) ]) diff --git a/libgomp/configure b/libgomp/configure index 4dbdc87982e..883dddfbf78 100755 --- a/libgomp/configure +++ b/libgomp/configure @@ -16014,6 +16014,8 @@ $as_echo "#define HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1" >>confdefs.h symvers_renaming=yes ;; esac +else + symvers_renaming=no fi if test $symvers_renaming = no; then LIBGOMP_BUILD_VERSIONED_SHLIB_SOL2_TRUE= |