Skip to content
Snippets Groups Projects
Commit 26ee3eb4 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent 8ea8107f
No related branches found
No related tags found
No related merge requests found
...@@ -2722,11 +2722,15 @@ fi ...@@ -2722,11 +2722,15 @@ fi
LINKER="${CXX}" LINKER="${CXX}"
POSTBUILD="" POSTBUILD=""
if test "x$enable_cygwin" = "xno"; then case "$UNAME" in
UNAME="${UNAME}-no-cygwin" CYGWIN*)
CC="${CC} -mno-cygwin" if test "x$enable_cygwin" = "xno"; then
CXX="${CXX} -mno-cygwin" UNAME="${UNAME}-no-cygwin"
LINKER="${LINKER} -mno-cygwin" CC="${CC} -mno-cygwin"
CXX="${CXX} -mno-cygwin"
LINKER="${LINKER} -mno-cygwin"
fi
;;
fi fi
FLAGS="" FLAGS=""
......
dnl $Id: configure.in,v 1.88 2006-02-24 22:07:05 geuzaine Exp $ dnl $Id: configure.in,v 1.89 2006-02-25 02:50:23 geuzaine Exp $
dnl dnl
dnl Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle dnl Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
dnl dnl
...@@ -106,12 +106,16 @@ fi ...@@ -106,12 +106,16 @@ fi
LINKER="${CXX}" LINKER="${CXX}"
POSTBUILD="" POSTBUILD=""
dnl Specify -mno-cygwin as soon as possible dnl Take care of no-cygwin option before doing any other tests
if test "x$enable_cygwin" = "xno"; then case "$UNAME" in
UNAME="${UNAME}-no-cygwin" CYGWIN*)
CC="${CC} -mno-cygwin" if test "x$enable_cygwin" = "xno"; then
CXX="${CXX} -mno-cygwin" UNAME="${UNAME}-no-cygwin"
LINKER="${LINKER} -mno-cygwin" CC="${CC} -mno-cygwin"
CXX="${CXX} -mno-cygwin"
LINKER="${LINKER} -mno-cygwin"
fi
;;
fi fi
dnl Set default flags dnl Set default flags
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment