diff options
author | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-28 20:13:20 +0000 |
---|---|---|
committer | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-28 20:13:20 +0000 |
commit | aaa798baf3b5979cdf852a3ff923a5cef965f9ec (patch) | |
tree | 63c0066d3282fbbc40206a8f80b8a22b789be2f8 /libgfortran/config.h.in | |
parent | 442ca76b4d87b6a74afb85398f3f68aede0b41e4 (diff) | |
download | gcc-aaa798baf3b5979cdf852a3ff923a5cef965f9ec.tar.gz |
* acinclude.m4 (LIBGFOR_CHECK_FPSETMASK): New check.
* configure.ac: Check for floatingpoint.h, fptrap.h and float.h
headers. Use LIBGFOR_CHECK_FPSETMASK. Check for fp_trap and
fp_enable functions.
* configure.host: Add case for systems with fpsetmask and systems
with fp_trap/fp_enable.
* config/fpu-sysv.h: New file, FPU code using fpsetmask.
* config/fpu-aix.h: New file, FPU code for AIX using fp_trap and
fp_enable.
* aclocal.m4: Regenerate.
* configure: Regenerate.
* config.h.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@105956 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/config.h.in')
-rw-r--r-- | libgfortran/config.h.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libgfortran/config.h.in b/libgfortran/config.h.in index 8d6f6d4b204..13fc81fdb32 100644 --- a/libgfortran/config.h.in +++ b/libgfortran/config.h.in @@ -294,6 +294,12 @@ /* libm includes finite */ #undef HAVE_FINITE +/* Define to 1 if you have the <floatingpoint.h> header file. */ +#undef HAVE_FLOATINGPOINT_H + +/* Define to 1 if you have the <float.h> header file. */ +#undef HAVE_FLOAT_H + /* libm includes floor */ #undef HAVE_FLOOR @@ -303,6 +309,18 @@ /* libm includes floorl */ #undef HAVE_FLOORL +/* Define if you have fpsetmask. */ +#undef HAVE_FPSETMASK + +/* Define to 1 if you have the <fptrap.h> header file. */ +#undef HAVE_FPTRAP_H + +/* fp_enable is present */ +#undef HAVE_FP_ENABLE + +/* fp_trap is present */ +#undef HAVE_FP_TRAP + /* libm includes frexp */ #undef HAVE_FREXP |