Quick hack for cygwin default compiler... should replace with

test for 'cc'.
This commit is contained in:
Kurt Zeilenga 1999-06-06 06:10:22 +00:00
parent c5a684f8ed
commit 417e2d59fc
2 changed files with 548 additions and 542 deletions

1084
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -310,7 +310,11 @@ dnl Checks for programs
dnl AC_PROG_INSTALL
dnl The default compiler is cc (NOT gcc)
CC=${CC-"cc"}
dnl except on cygwin
dnl (should check to see if 'cc' exists instead)
if test "$host_os" != "cygwin" ;
CC=${CC-"cc"}
fi
dnl The default CFLAGS is empty NOT whatever AC_PROG_CC sets.
dnl CFLAGS=${CFLAGS-""}