aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@gcc.gnu.org>2003-08-21 02:19:33 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2003-08-21 02:19:33 +0000
commite50084fa44cb68c447efc11e53ec16bf09a578c0 (patch)
tree0b25d0572902e4493f2ad6a2c559842b6d9f1731 /gcc
parentb348267b2e2243e76433b8b7798695787a80cd0e (diff)
downloadgcc-e50084fa44cb68c447efc11e53ec16bf09a578c0.zip
gcc-e50084fa44cb68c447efc11e53ec16bf09a578c0.tar.gz
gcc-e50084fa44cb68c447efc11e53ec16bf09a578c0.tar.bz2
Index: ChangeLog
2003-08-20 Geoffrey Keating <geoffk@apple.com> PR 8180 * configure.in: When testing with_libs and with_headers, treat 'no' as unset. Based on a patch by Dan Kegel <dank@kegel.com>. * configure: Regenerate. Index: gcc/ChangeLog 2003-08-20 Geoffrey Keating <geoffk@apple.com> PR 8180 * configure.in: When testing with_libs and with_headers, treat 'no' as unset. Based on a patch by Dan Kegel <dank@kegel.com>. * configure: Regenerate. From-SVN: r70634
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog11
-rwxr-xr-xgcc/configure2
-rw-r--r--gcc/configure.in2
3 files changed, 11 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b59d8ba..dc01407 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,8 +1,15 @@
-2003-08-06 Peter Barada <peter@baradas.org>
+2003-08-20 Geoffrey Keating <geoffk@apple.com>
+
+ PR 8180
+ * configure.in: When testing with_libs and with_headers, treat
+ 'no' as unset. Based on a patch by Dan Kegel <dank@kegel.com>.
+ * configure: Regenerate.
+
+2003-08-20 Peter Barada <peter@baradas.org>
* longlong.h (umul_ppmm): Add ColdFire support.
-2003-08-06 Peter Barada <peter@baradas.org>
+2003-08-20 Peter Barada <peter@baradas.org>
Bernardo Innocenti <bernie@develer.com>
* config/m68k/m68k-none.h: Introduce new ColdFire archs.
diff --git a/gcc/configure b/gcc/configure
index 5ec0828..9a2c150 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -5744,7 +5744,7 @@ fi
inhibit_libc=
if { { test x$host != x$target && test "x$with_sysroot" = x ; } ||
test x$with_newlib = xyes ; } &&
- test "x$with_headers" = x ; then
+ { test "x$with_headers" = x || test "x$with_headers" = xno ; } ; then
inhibit_libc=-Dinhibit_libc
fi
diff --git a/gcc/configure.in b/gcc/configure.in
index 6360c24..824008e 100644
--- a/gcc/configure.in
+++ b/gcc/configure.in
@@ -1449,7 +1449,7 @@ fi
inhibit_libc=
if { { test x$host != x$target && test "x$with_sysroot" = x ; } ||
test x$with_newlib = xyes ; } &&
- test "x$with_headers" = x ; then
+ { test "x$with_headers" = x || test "x$with_headers" = xno ; } ; then
inhibit_libc=-Dinhibit_libc
fi
AC_SUBST(inhibit_libc)