diff options
author | Eric Botcazou <ebotcazou@libertysurf.fr> | 2004-12-08 00:43:40 +0100 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2004-12-07 23:43:40 +0000 |
commit | 6e4d9244f73b5859d90a34a8562300974c6baf29 (patch) | |
tree | 7397b8cae4794ec49536905235d48066a52a6dc3 /libgfortran/config.h.in | |
parent | c08f800e9a244f29fd5e4124ed1ed6e3205aca25 (diff) | |
download | gcc-6e4d9244f73b5859d90a34a8562300974c6baf29.zip gcc-6e4d9244f73b5859d90a34a8562300974c6baf29.tar.gz gcc-6e4d9244f73b5859d90a34a8562300974c6baf29.tar.bz2 |
configure.ac: Check for ieeefp.h.
* configure.ac: Check for ieeefp.h. Check for fabsf in libm.
* configure: Regenerate.
* config.h.in: Likewise.
* c99_protos.h: New file.
* libgfortran.h: Include c99_protos.h and conditionally ieeefp.h.
* intrinsics/c99_functions.c (fabsf): New function.
From-SVN: r91832
Diffstat (limited to 'libgfortran/config.h.in')
-rw-r--r-- | libgfortran/config.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libgfortran/config.h.in b/libgfortran/config.h.in index 4f121f7..a705e84 100644 --- a/libgfortran/config.h.in +++ b/libgfortran/config.h.in @@ -45,6 +45,9 @@ /* libm includes expf */ #undef HAVE_EXPF +/* libm includes fabsf */ +#undef HAVE_FABSF + /* libm includes finite */ #undef HAVE_FINITE @@ -75,6 +78,9 @@ /* libm includes hypotf */ #undef HAVE_HYPOTF +/* Define to 1 if you have the <ieeefp.h> header file. */ +#undef HAVE_IEEEFP_H + /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H |