diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2007-05-28 17:02:30 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2007-05-28 17:02:30 +0000 |
commit | 0258dc3a2c897ba06499af1493aac7e736adbbb9 (patch) | |
tree | a003e0d957688e8e441726499f76d1627c7cd6b7 /libstdc++-v3/config.h.in | |
parent | 3078848ea393c2269498b12f5bb809e85ec1af44 (diff) | |
download | gcc-0258dc3a2c897ba06499af1493aac7e736adbbb9.tar.gz |
re PR libstdc++/31717 (libstdc++-v3 - Make fails with: ./c++locale.h:69: error: '__locale_t' does not name a type)
2007-05-28 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/31717
* acinclude.m4 (GLIBCXX_ENABLE_CLOCALE): Re-organize. Sanity check
gnu locale model requests to make sure it will work for the requested
target. Add checks for strxfrm_l, strerror_l when in gnu locale,
and strerror_r everywhere.
* aclocal.m4: Regenerated.
* configure: Regenerated.
* config.h.in: Regenerated.
From-SVN: r125134
Diffstat (limited to 'libstdc++-v3/config.h.in')
-rw-r--r-- | libstdc++-v3/config.h.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libstdc++-v3/config.h.in b/libstdc++-v3/config.h.in index a87d23d88d5..b6d4967ee8a 100644 --- a/libstdc++-v3/config.h.in +++ b/libstdc++-v3/config.h.in @@ -54,6 +54,9 @@ /* Define to 1 if you have the `cosl' function. */ #undef HAVE_COSL +/* Define to 1 if you have the <dlfcn.h> header file. */ +#undef HAVE_DLFCN_H + /* Define to 1 if you have the <endian.h> header file. */ #undef HAVE_ENDIAN_H @@ -289,6 +292,12 @@ /* Define to 1 if you have the <stdlib.h> header file. */ #undef HAVE_STDLIB_H +/* Define if strerror_l is available in <string.h>. */ +#undef HAVE_STRERROR_L + +/* Define if strerror_r is available in <string.h>. */ +#undef HAVE_STRERROR_R + /* Define to 1 if you have the <strings.h> header file. */ #undef HAVE_STRINGS_H @@ -301,6 +310,9 @@ /* Define to 1 if you have the `strtold' function. */ #undef HAVE_STRTOLD +/* Define if strxfrm_l is available in <string.h>. */ +#undef HAVE_STRXFRM_L + /* Define to 1 if you have the <sys/filio.h> header file. */ #undef HAVE_SYS_FILIO_H @@ -631,6 +643,10 @@ /* Define as const if the declaration of iconv() needs const. */ #undef ICONV_CONST +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#undef LT_OBJDIR + /* Name of package */ #undef PACKAGE |