From e50084fa44cb68c447efc11e53ec16bf09a578c0 Mon Sep 17 00:00:00 2001 From: Geoffrey Keating Date: Thu, 21 Aug 2003 02:19:33 +0000 Subject: Index: ChangeLog 2003-08-20 Geoffrey Keating PR 8180 * configure.in: When testing with_libs and with_headers, treat 'no' as unset. Based on a patch by Dan Kegel . * configure: Regenerate. Index: gcc/ChangeLog 2003-08-20 Geoffrey Keating PR 8180 * configure.in: When testing with_libs and with_headers, treat 'no' as unset. Based on a patch by Dan Kegel . * configure: Regenerate. From-SVN: r70634 --- gcc/ChangeLog | 11 +++++++++-- gcc/configure | 2 +- gcc/configure.in | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) (limited to 'gcc') 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 +2003-08-20 Geoffrey Keating + + PR 8180 + * configure.in: When testing with_libs and with_headers, treat + 'no' as unset. Based on a patch by Dan Kegel . + * configure: Regenerate. + +2003-08-20 Peter Barada * longlong.h (umul_ppmm): Add ColdFire support. -2003-08-06 Peter Barada +2003-08-20 Peter Barada Bernardo Innocenti * 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) -- cgit v1.1