diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2007-08-29 19:53:50 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2007-08-29 19:53:50 +0000 |
commit | e4e5e7f5f8699e02d3beb1db6ac341b07820af64 (patch) | |
tree | 04ba7aede0368d117f99f93fb66491e9883c1a56 /libstdc++-v3/config.h.in | |
parent | 21d9bb3f56adf9e034af6ad1a53a57a560c4de2d (diff) | |
download | gcc-e4e5e7f5f8699e02d3beb1db6ac341b07820af64.tar.gz |
acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR): Add ENODATA, ENOSR, ENOSTR, ETIME for freebsd.
2007-08-29 Benjamin Kosnik <bkoz@redhat.com>
* acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR): Add ENODATA, ENOSR,
ENOSTR, ETIME for freebsd.
* configure: Regenerate.
* include/std/system_error: Guard.
* testsuite/19_diagnostics/headers/system_error/
types_std_c++0x.cc: Same.
* testsuite/19_diagnostics/error_category/cons/copy_neg.cc: Adjust
line numbers.
From-SVN: r127912
Diffstat (limited to 'libstdc++-v3/config.h.in')
-rw-r--r-- | libstdc++-v3/config.h.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libstdc++-v3/config.h.in b/libstdc++-v3/config.h.in index 1779215e551..be830a0c1ce 100644 --- a/libstdc++-v3/config.h.in +++ b/libstdc++-v3/config.h.in @@ -63,9 +63,18 @@ /* Define to 1 if you have the <endian.h> header file. */ #undef HAVE_ENDIAN_H +/* Define if ENODATA exists. */ +#undef HAVE_ENODATA + /* Define if ENOLINK exists. */ #undef HAVE_ENOLINK +/* Define if ENOSR exists. */ +#undef HAVE_ENOSR + +/* Define if ENOSTR exists. */ +#undef HAVE_ENOSTR + /* Define if ENOTRECOVERABLE exists. */ #undef HAVE_ENOTRECOVERABLE @@ -75,6 +84,9 @@ /* Define if EPROTO exists. */ #undef HAVE_EPROTO +/* Define if ETIME exists. */ +#undef HAVE_ETIME + /* Define to 1 if you have the `expf' function. */ #undef HAVE_EXPF |