From: John David Anglin Date: Mon, 24 Nov 2014 23:27:36 +0000 (+0000) Subject: configure.ac: Guard include of . X-Git-Tag: releases/gcc-5.1.0~2850 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=67c4c164202205321e843f2345a0f786d8b30aa6;p=thirdparty%2Fgcc.git configure.ac: Guard include of . * configure.ac: Guard include of . * configure: Rebuilt. From-SVN: r218032 --- diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index abbfdd19a340..1a1f937c6bb2 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,8 @@ +2014-11-24 John David Anglin + + * configure.ac: Guard include of . + * configure: Rebuilt. + 2014-11-21 H.J. Lu PR bootstrap/63784 diff --git a/libgfortran/configure b/libgfortran/configure index dc68af54dbd1..a19cb9e1069e 100755 --- a/libgfortran/configure +++ b/libgfortran/configure @@ -26067,7 +26067,9 @@ $as_echo "#define HAVE_FPSETMASK 1" >>confdefs.h fi ac_fn_c_check_type "$LINENO" "fp_except" "ac_cv_type_fp_except" " +#ifdef HAVE_IEEEFP_H #include +#endif #include " @@ -26080,7 +26082,9 @@ _ACEOF fi ac_fn_c_check_type "$LINENO" "fp_except_t" "ac_cv_type_fp_except_t" " +#ifdef HAVE_IEEEFP_H #include +#endif #include " @@ -26094,7 +26098,9 @@ _ACEOF fi ac_fn_c_check_type "$LINENO" "fp_rnd" "ac_cv_type_fp_rnd" " +#ifdef HAVE_IEEEFP_H #include +#endif #include " @@ -26107,7 +26113,9 @@ _ACEOF fi ac_fn_c_check_type "$LINENO" "fp_rnd_t" "ac_cv_type_fp_rnd_t" " +#ifdef HAVE_IEEEFP_H #include +#endif #include " diff --git a/libgfortran/configure.ac b/libgfortran/configure.ac index ada74e3318ab..b9386c2c5ec6 100644 --- a/libgfortran/configure.ac +++ b/libgfortran/configure.ac @@ -524,11 +524,15 @@ fi # Check for SysV fpsetmask LIBGFOR_CHECK_FPSETMASK AC_CHECK_TYPES([fp_except,fp_except_t], [], [], [[ +#ifdef HAVE_IEEEFP_H #include +#endif #include ]]) AC_CHECK_TYPES([fp_rnd,fp_rnd_t], [], [], [[ +#ifdef HAVE_IEEEFP_H #include +#endif #include ]])