aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorTravis Howell2009-03-30 09:10:28 +0000
committerTravis Howell2009-03-30 09:10:28 +0000
commit5ef85a20ed3cf419f527ab064853da3ce4c12035 (patch)
treec783fe6fa7b5c9255623f0b27a4676f7c3632cd2 /configure
parent37ddffc1d270e2d7b4b146c8b884ec552722040f (diff)
downloadscummvm-rg350-5ef85a20ed3cf419f527ab064853da3ce4c12035.tar.gz
scummvm-rg350-5ef85a20ed3cf419f527ab064853da3ce4c12035.tar.bz2
scummvm-rg350-5ef85a20ed3cf419f527ab064853da3ce4c12035.zip
Drop Cygwin support, the -mno-cygwin option is been removed from GCC in the future.
svn-id: r39757
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure15
1 files changed, 5 insertions, 10 deletions
diff --git a/configure b/configure
index f835c9800b..321c254db5 100755
--- a/configure
+++ b/configure
@@ -265,7 +265,7 @@ find_sdlconfig() {
#
get_system_exe_extension() {
case $1 in
- mingw* | cygwin* | os2-emx*)
+ mingw* | os2-emx*)
_exeext=".exe"
;;
arm-riscos)
@@ -1102,11 +1102,6 @@ case $_host_os in
LIBS="$LIBS -lmingw32 -lwinmm"
OBJS="$OBJS scummvmico.o"
;;
- cygwin*)
- DEFINES="$DEFINES -mno-cygwin -DWIN32 -D__USE_MINGW_ANSI_STDIO=0"
- LIBS="$LIBS -mno-cygwin -lmingw32 -lwinmm"
- OBJS="$OBJS scummvmico.o"
- ;;
os2-emx*)
DEFINES="$DEFINES -DUNIX"
;;
@@ -1459,7 +1454,7 @@ POST_OBJS_FLAGS :=
LIBS += -ldl
'
;;
- *mingw32* | cygwin*)
+ *mingw32*)
_def_plugin='
#define PLUGIN_PREFIX ""
#define PLUGIN_SUFFIX ".dll"
@@ -1733,7 +1728,7 @@ fi
if test "$_fluidsynth" = yes ; then
_def_fluidsynth='#define USE_FLUIDSYNTH'
case $_host_os in
- mingw* | cygwin*)
+ mingw*)
LIBS="$LIBS $FLUIDSYNTH_LIBS -lfluidsynth -ldsound -lwinmm"
;;
*)
@@ -1775,7 +1770,7 @@ if test "$_have_x86" = yes ; then
os2-emx*)
NASMFLAGS="-f aout"
;;
- mingw* | cygwin*)
+ mingw*)
NASMFLAGS="-f win32"
;;
darwin*)
@@ -1901,7 +1896,7 @@ if test "$_cxx_major" -ge "3" ; then
case $_host_os in
# newlib-based system include files suppress non-C89 function
# declarations under __STRICT_ANSI__
- mingw* | cygwin* | dreamcast | wii | gamecube | psp | amigaos*)
+ mingw* | dreamcast | wii | gamecube | psp | amigaos*)
CXXFLAGS="$CXXFLAGS -W -Wno-unused-parameter"
;;
*)