diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2002-02-06 17:31:43 +0000 |
---|---|---|
committer | Loren J. Rittle <ljrittle@gcc.gnu.org> | 2002-02-06 17:31:43 +0000 |
commit | 99a4deb8a96979f2e41ea971ac6a5ff5e815d0ee (patch) | |
tree | 032038ecf41d557034fa7204f7fc185d72986e60 /libstdc++-v3/config.h.in | |
parent | 23fb1469b574e85a4f39ee3f48286d9ab6317056 (diff) | |
download | gcc-99a4deb8a96979f2e41ea971ac6a5ff5e815d0ee.zip gcc-99a4deb8a96979f2e41ea971ac6a5ff5e815d0ee.tar.gz gcc-99a4deb8a96979f2e41ea971ac6a5ff5e815d0ee.tar.bz2 |
acinclude.m4: Add C++ linkage check for strtof.
* acinclude.m4: Add C++ linkage check for strtof.
* aclocal.m4: Rebuilt.
* config.h.in: Rebuilt.
* configure: Rebuilt.
* config/locale/c_locale_generic.cc: Conditionally include
<ieeefp.h>. Improve handling and error checking of float
and long double input for non-C99 configurations.
From-SVN: r49546
Diffstat (limited to 'libstdc++-v3/config.h.in')
-rw-r--r-- | libstdc++-v3/config.h.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libstdc++-v3/config.h.in b/libstdc++-v3/config.h.in index e254c8a..aecf8fa 100644 --- a/libstdc++-v3/config.h.in +++ b/libstdc++-v3/config.h.in @@ -3,6 +3,9 @@ /* Define if you have a working `mmap' system call. */ #undef HAVE_MMAP +/* Define if you need to in order for stat and other things to work. */ +#undef _POSIX_SOURCE + // Define if GCC supports weak symbols. #undef _GLIBCPP_SUPPORTS_WEAK @@ -531,6 +534,9 @@ /* Define if you have the sqrtl function. */ #undef HAVE_SQRTL +/* Define if you have the strtof function. */ +#undef HAVE_STRTOF + /* Define if you have the strtold function. */ #undef HAVE_STRTOLD @@ -696,9 +702,6 @@ /* Define if you have the <nan.h> header file. */ #undef HAVE_NAN_H -/* Define if you have the <stdlib.h> header file. */ -#undef HAVE_STDLIB_H - /* Define if you have the <sys/isa_defs.h> header file. */ #undef HAVE_SYS_ISA_DEFS_H @@ -708,9 +711,6 @@ /* Define if you have the <sys/resource.h> header file. */ #undef HAVE_SYS_RESOURCE_H -/* Define if you have the <sys/stat.h> header file. */ -#undef HAVE_SYS_STAT_H - /* Define if you have the <sys/types.h> header file. */ #undef HAVE_SYS_TYPES_H |