From: rrt Date: Thu, 22 Feb 2001 17:25:27 +0000 (+0000) Subject: [project @ 2001-02-22 17:25:27 by rrt] X-Git-Tag: Approximately_9120_patches~2562 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=03c1be51e11caeebe4ace921a92c3665eac747bb;p=ghc-hetmet.git [project @ 2001-02-22 17:25:27 by rrt] Add -mno-cygwin to CPP rather than CPPFLAGS, so that it gets into mkdependC and the like. --- diff --git a/configure.in b/configure.in index 2b8d7c7..5158551 100644 --- a/configure.in +++ b/configure.in @@ -207,7 +207,6 @@ i[[3456]]86-*-mingw32*) # the gcc command-line used here with -mno-cygwin to # arrange for good things to happen. CFLAGS="-mno-cygwin $CFLAGS" - CPPFLAGS="-mno-cygwin $CPPFLAGS" ;; m68k-next-nextstep2) HostPlatform_CPP='m68k_next_nextstep2' @@ -511,6 +510,11 @@ FPTOOLS_HAVE_GCC dnl ** figure out how to invoke cpp directly (gcc -E is no good) AC_PROG_CPP +case $HostOS_CPP in +mingw32) + CPP="$CPP -mno-cygwin" + ;; +esac dnl ** figure out how to do context diffs FPTOOLS_PROG_DIFF