From 6c05aa01c6bd9e90542a33f3a2576967a8b940fc Mon Sep 17 00:00:00 2001 From: rrt Date: Thu, 29 Mar 2001 16:56:36 +0000 Subject: [PATCH] [project @ 2001-03-29 16:56:36 by rrt] Add -mwin32 for new Cygwin gcc. --- configure.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.in b/configure.in index 384fd5f..2a9bc24 100644 --- a/configure.in +++ b/configure.in @@ -204,9 +204,9 @@ i[[3456]]86-*-mingw32*) exeext='.exe' # We assume you're using mingw32 via the gcc that comes # with cygwin, and not the native port, so let's augment - # the gcc command-line used here with -mno-cygwin to - # arrange for good things to happen. - CFLAGS="-mno-cygwin $CFLAGS" + # the gcc command-line used here with -mno-cygwin -mwin32 + # to arrange for good things to happen. + CFLAGS="-mno-cygwin -mwin32 $CFLAGS" ;; m68k-next-nextstep2) HostPlatform_CPP='m68k_next_nextstep2' @@ -512,7 +512,7 @@ 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" + CPP="$CPP -mno-cygwin -mwin32" ;; esac -- 1.7.10.4