From: sof Date: Fri, 15 Feb 2002 08:10:44 +0000 (+0000) Subject: [project @ 2002-02-15 08:10:44 by sof] X-Git-Tag: Approximately_9120_patches~35 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=1b62ed65a38bdec7bc0163fd99be10fa6feadd54;p=ghc-hetmet.git [project @ 2002-02-15 08:10:44 by sof] mingw: drop the use of -mwin32 in CC_OPTS; no longer needed --- diff --git a/configure.in b/configure.in index 38438bc..0cbd799 100644 --- a/configure.in +++ b/configure.in @@ -557,10 +557,9 @@ dnl ** figure out how to invoke cpp directly (gcc -E is no good) AC_PROG_CPP dnl ** does the C compiler support the following options? -FPTOOLS_CC_FLAG(-mwin32,CC_SUPPORTS_MWIN32) FPTOOLS_CC_FLAG(-mno-cygwin,CC_SUPPORTS_MNO_CYGWIN) -EXTRA_CC_OPTS="$CC_SUPPORTS_MNO_CYGWIN $CC_SUPPORTS_MWIN32" +EXTRA_CC_OPTS="$CC_SUPPORTS_MNO_CYGWIN" SRC_CC_OPTS="-O $EXTRA_CC_OPTS" CPPFLAGS="$EXTRA_CC_OPTS $CPPFLAGS" AC_SUBST(SRC_CC_OPTS)