diff options
author | Mumit Khan <khan@xraylith.wisc.edu> | 1999-06-20 22:56:40 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-06-20 22:56:40 -0600 |
commit | 62133b5e6ae85b44ae2829f182bd218fafc0aa7c (patch) | |
tree | a74fad870c25101655b5c026874675aaaf6014cd /libiberty/configure.in | |
parent | b569200e6d95a8c429138bbc93b6eb6e0b8d4f42 (diff) | |
download | gcc-62133b5e6ae85b44ae2829f182bd218fafc0aa7c.zip gcc-62133b5e6ae85b44ae2829f182bd218fafc0aa7c.tar.gz gcc-62133b5e6ae85b44ae2829f182bd218fafc0aa7c.tar.bz2 |
configure.in (*-*-uwin*): UWIN has sys_{errlist,nerr} even if the test fails.
p
* configure.in (*-*-uwin*): UWIN has sys_{errlist,nerr} even if
the test fails.
* configure: Regenerate.
From-SVN: r27642
Diffstat (limited to 'libiberty/configure.in')
-rw-r--r-- | libiberty/configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libiberty/configure.in b/libiberty/configure.in index f194e26..2dd1853 100644 --- a/libiberty/configure.in +++ b/libiberty/configure.in @@ -293,6 +293,11 @@ if test -z "${setobjs}"; then # can hang configure; on other versions, vfork exists just as a stub. # FIXME: This should be removed once vfork in uwin's runtime is fixed. ac_cv_func_vfork_works=no + # Under uwin 2.0+, sys_nerr and sys_errlist exist, but they are + # macros (actually, these are imported from a DLL, but the end effect + # is the same), so the test below won't find them. + AC_DEFINE(HAVE_SYS_NERR) + AC_DEFINE(HAVE_SYS_ERRLIST) ;; esac |