From: geoffk Date: Thu, 21 Aug 2003 02:19:33 +0000 (+0000) Subject: Index: ChangeLog X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9ad4b12bf6689566f6e6c7706fef5f39fe8c0595;p=thirdparty%2Fgcc.git 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70634 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/ChangeLog b/ChangeLog index fa9d2939cf18..cc1f34cbfea9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 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. + * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for make, shell, etc. (baseargs): Likewise. diff --git a/configure.in b/configure.in index b30f5242e715..5c461fc80494 100644 --- a/configure.in +++ b/configure.in @@ -253,7 +253,8 @@ esac # If both --with-headers and --with-libs are specified, default to # --without-newlib. -if test x"${with_headers}" != x && test x"${with_libs}" != x ; then +if test x"${with_headers}" != x && test x"${with_headers} != xno \ + && test x"${with_libs}" != x && test x"${with_libs} != xno ; then if test x"${with_newlib}" = x ; then with_newlib=no fi @@ -937,7 +938,7 @@ copy_dirs= # Handle --with-headers=XXX. If the value is not "yes", the contents of # the named directory are copied to $(tooldir)/sys-include. -if test x"${with_headers}" != x ; then +if test x"${with_headers}" != x && test x"${with_headers}" != xno ; then if test x${is_cross_compiler} = xno ; then echo 1>&2 '***' --with-headers is only supported when cross compiling exit 1 @@ -954,7 +955,7 @@ fi # Handle --with-libs=XXX. If the value is not "yes", the contents of # the name directories are copied to $(tooldir)/lib. Multiple directories # are permitted. -if test x"${with_libs}" != x ; then +if test x"${with_libs}" != x && test x"${with_libs}" != xno ; then if test x${is_cross_compiler} = xno ; then echo 1>&2 '***' --with-libs is only supported when cross compiling exit 1 diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b59d8bada8b7..dc01407d87de 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 5ec0828009a5..9a2c150eab27 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 6360c2488ba2..824008e4e69f 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)