diff options
author | DJ Delorie <dj@redhat.com> | 2006-05-01 20:17:08 -0400 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2006-05-01 20:17:08 -0400 |
commit | ed606bc0c8d2255137787de0f0cad93a779f6563 (patch) | |
tree | fe72a03877a491a4f902b1be0af61f6f1221c16c | |
parent | 94634f146ede0b9859c42a069739f63abfdcdc69 (diff) | |
download | gcc-ed606bc0c8d2255137787de0f0cad93a779f6563.zip gcc-ed606bc0c8d2255137787de0f0cad93a779f6563.tar.gz gcc-ed606bc0c8d2255137787de0f0cad93a779f6563.tar.bz2 |
configure.in: Restore CFLAGS if GM P isn't present.
* configure.in: Restore CFLAGS if GM P isn't present.
* configure: Regenerate.
From-SVN: r113444
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2006-05-01 DJ Delorie <dj@redhat.com> + + * configure.in: Restore CFLAGS if GM P isn't present. + * configure: Regenerate. + 2006-05-01 Richard Guenther <rguenther@suse.de> * MAINTAINERS (Various Maintainers): Add myself as libgcc-math @@ -2354,8 +2354,8 @@ else fi rm -f conftest* LIBS="$saved_LIBS" - CFLAGS="$saved_CFLAGS" fi +CFLAGS="$saved_CFLAGS" # Flags needed for both GMP and/or MPFR diff --git a/configure.in b/configure.in index 1281167..04c922f 100644 --- a/configure.in +++ b/configure.in @@ -1142,8 +1142,8 @@ if test x"$have_gmp" = xyes; then #include <mpfr.h>], [mpfr_t n; mpfr_init(n);], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); have_gmp=no]) LIBS="$saved_LIBS" - CFLAGS="$saved_CFLAGS" fi +CFLAGS="$saved_CFLAGS" # Flags needed for both GMP and/or MPFR AC_SUBST(gmplibs) |