diff options
author | Adam Megacz <adam@xwt.org> | 2002-01-31 18:19:39 +0000 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2002-01-31 13:19:39 -0500 |
commit | 46af757b0625e7365e791ec910609206de7d8b07 (patch) | |
tree | 520f1965c955ce5468439c76ffbb2f9ddcb8dfd5 | |
parent | 100de59d617eca3a71b5c21d29cb81a6184bdb3b (diff) | |
download | gcc-46af757b0625e7365e791ec910609206de7d8b07.zip gcc-46af757b0625e7365e791ec910609206de7d8b07.tar.gz gcc-46af757b0625e7365e791ec910609206de7d8b07.tar.bz2 |
configure.in: Treat mingw the same as cywin wrt HAVE_SYS_ERRLIST.
* gcc/libiberty/configure.in: Treat mingw the same as cywin
wrt HAVE_SYS_ERRLIST.
From-SVN: r49371
-rw-r--r-- | libiberty/ChangeLog | 5 | ||||
-rwxr-xr-x | libiberty/configure | 2 | ||||
-rw-r--r-- | libiberty/configure.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index e014b50..ce63d84 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2002-01-31 Adam Megacz <adam@xwt.org> + + * gcc/libiberty/configure.in: Treat mingw the same as cywin + wrt HAVE_SYS_ERRLIST. + 2002-01-30 Phil Edwards <pme@gcc.gnu.org> * cp-demangle.c (cp_demangle_type): Do not protect with IN_LIBGCC2. diff --git a/libiberty/configure b/libiberty/configure index a406d28..84c10ad 100755 --- a/libiberty/configure +++ b/libiberty/configure @@ -2082,7 +2082,7 @@ fi case "${host}" in - *-*-cygwin*) + *-*-cygwin* | *-*-mingw*) cat >> confdefs.h <<\EOF #define HAVE_SYS_ERRLIST 1 EOF diff --git a/libiberty/configure.in b/libiberty/configure.in index eed222d..fb930e4 100644 --- a/libiberty/configure.in +++ b/libiberty/configure.in @@ -249,7 +249,7 @@ fi AC_SUBST(CHECK) case "${host}" in - *-*-cygwin*) + *-*-cygwin* | *-*-mingw*) AC_DEFINE_NOAUTOHEADER(HAVE_SYS_ERRLIST) AC_DEFINE_NOAUTOHEADER(HAVE_SYS_NERR) ;; |