diff options
author | Christopher Faylor <cgf@cygnus.com> | 2001-08-17 20:17:23 +0000 |
---|---|---|
committer | Christopher Faylor <cgf@gcc.gnu.org> | 2001-08-17 20:17:23 +0000 |
commit | 91625004b2e16ac5e92b7e22fbfa4189b6818786 (patch) | |
tree | 85d61dee699b65c57d2fd8d4f47d6290eaec7667 /libiberty/configure.in | |
parent | 0ed5305d8db372b0bbaca3401326b04d19786b51 (diff) | |
download | gcc-91625004b2e16ac5e92b7e22fbfa4189b6818786.tar.gz |
configure.in: Always set HAVE_SYS_ERRLIST when targetting cygwin.
* configure.in: Always set HAVE_SYS_ERRLIST when targetting cygwin.
* configure: Regenerate.
From-SVN: r44979
Diffstat (limited to 'libiberty/configure.in')
-rw-r--r-- | libiberty/configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libiberty/configure.in b/libiberty/configure.in index 65f94027b1d..499e4678aff 100644 --- a/libiberty/configure.in +++ b/libiberty/configure.in @@ -177,6 +177,12 @@ if test -n "${with_target_subdir}"; then # Of the functions in $checkfuncs, newlib only has strerror. AC_DEFINE_NOAUTOHEADER(HAVE_STRERROR) + case "${host}" in + *-*-cygwin*) + AC_DEFINE(HAVE_SYS_ERRLIST) + ;; + esac + setobjs=yes fi |