From: Rainer Orth Date: Thu, 23 May 2002 16:58:49 +0000 (+0000) Subject: re PR target/6755 (.../gcc-3.1/libstdc++-v3/configure script fails for mips-sgi-irix6.2) X-Git-Tag: releases/gcc-3.1.1~292 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a04bb3f2af9f44a1218e844f762d25a967984846;p=thirdparty%2Fgcc.git re PR target/6755 (.../gcc-3.1/libstdc++-v3/configure script fails for mips-sgi-irix6.2) * acinclude.m4 (enable_symvers): Quote $LD. * aclocal.m4: Regenerate. * configure: Likewise. Fixes PR target/6755. From-SVN: r53794 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index fb014930698a..6423488cde13 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2002-05-23 Rainer Orth + + * acinclude.m4 (enable_symvers): Quote $LD. + * aclocal.m4: Regenerate. + * configure: Likewise. + Fixes PR target/6755. + 2002-05-23 Benjamin Kosnik * configure.in (release_VERSION): Update to 3.1.1. diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index 9950f93cf8be..ea580df8d90b 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 7082d068fc96..0eb1f6fb4251 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 79f76676524a..cee305c0fcdd 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -21064,7 +21064,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