From: Ben Elliston Date: Wed, 7 Apr 1999 23:59:09 +0000 (+0000) Subject: 1999-04-08 Ben Elliston X-Git-Tag: experimental-branchpoint~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=830e0c916a6998287df45e4a7918744d371778fa;p=thirdparty%2Fautoconf.git 1999-04-08 Ben Elliston * acspecific.m4 (AC_PROG_CC): Try using the `cl' C compiler under Cygwin. Contributed by Scott Stanton . --- diff --git a/ChangeLog b/ChangeLog index 0895c99f..1ea72621 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1999-04-08 Ben Elliston + * acspecific.m4 (AC_PROG_CC): Try using the `cl' C compiler under + Cygwin. Contributed by Scott Stanton . + * config.sub: Handle MPE/iX. 1999-04-07 Ben Elliston diff --git a/acspecific.m4 b/acspecific.m4 index 9a018ff6..21b1fa5e 100644 --- a/acspecific.m4 +++ b/acspecific.m4 @@ -77,7 +77,7 @@ if test -z "$CC"; then AC_CHECK_PROG(CC, cc, cc, , , /usr/ucb/cc) if test -z "$CC"; then case "`uname -s`" in - *win32* | *WIN32*) + *win32* | *WIN32* | *CYGWIN*) AC_CHECK_PROG(CC, cl, cl) ;; esac fi diff --git a/lib/autoconf/specific.m4 b/lib/autoconf/specific.m4 index 9a018ff6..21b1fa5e 100644 --- a/lib/autoconf/specific.m4 +++ b/lib/autoconf/specific.m4 @@ -77,7 +77,7 @@ if test -z "$CC"; then AC_CHECK_PROG(CC, cc, cc, , , /usr/ucb/cc) if test -z "$CC"; then case "`uname -s`" in - *win32* | *WIN32*) + *win32* | *WIN32* | *CYGWIN*) AC_CHECK_PROG(CC, cl, cl) ;; esac fi