diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-10 12:53:13 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-10 12:53:13 +0000 |
commit | 5337f9f761c8398ac42c54bebf0d86555e97a14e (patch) | |
tree | aec4f11f65efde164256beab11ca3f5034b0b9c2 /libstdc++-v3 | |
parent | 00f2bb6a45f2095c48f0678cb531b66bffbdb171 (diff) | |
download | gcc-5337f9f761c8398ac42c54bebf0d86555e97a14e.tar.gz |
* acinclude.m4 (enable_symvers): Quote $LD.
* aclocal.m4: Regenerate.
* configure: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53361 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/acinclude.m4 | 2 | ||||
-rw-r--r-- | libstdc++-v3/aclocal.m4 | 2 | ||||
-rwxr-xr-x | libstdc++-v3/configure | 2 |
4 files changed, 9 insertions, 3 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 1d9d90073f0..529f39524a3 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2002-05-10 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> + + * acinclude.m4 (enable_symvers): Quote $LD. + * aclocal.m4: Regenerate. + * configure: Likewise. + 2002-05-09 Jakub Jelinek <jakub@redhat.com> * testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3-init): Append all diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index 38fa8140d35..322c20dda0a 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -2120,7 +2120,7 @@ enable_symvers=GLIBCPP_ENABLE_SYMVERS_DEFAULT)dnl # If we never went through the GLIBCPP_CHECK_LINKER_FEATURES macro, then we # don't know enough about $LD to do tricks... if test x$enable_shared = xno || - test x$LD = x || + test "x$LD" = x || test x$glibcpp_gnu_ld_version = x; then enable_symvers=no fi diff --git a/libstdc++-v3/aclocal.m4 b/libstdc++-v3/aclocal.m4 index 07cf49436b4..dc5caa33f05 100644 --- a/libstdc++-v3/aclocal.m4 +++ b/libstdc++-v3/aclocal.m4 @@ -2132,7 +2132,7 @@ enable_symvers=GLIBCPP_ENABLE_SYMVERS_DEFAULT)dnl # If we never went through the GLIBCPP_CHECK_LINKER_FEATURES macro, then we # don't know enough about $LD to do tricks... if test x$enable_shared = xno || - test x$LD = x || + test "x$LD" = x || test x$glibcpp_gnu_ld_version = x; then enable_symvers=no fi diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 491a6b3f00b..d1c36f9edb7 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -21163,7 +21163,7 @@ fi # If we never went through the GLIBCPP_CHECK_LINKER_FEATURES macro, then we # don't know enough about $LD to do tricks... if test x$enable_shared = xno || - test x$LD = x || + test "x$LD" = x || test x$glibcpp_gnu_ld_version = x; then enable_symvers=no fi |