From 19501ccf41c8991496dbaf9cf4c09a533a9db2b2 Mon Sep 17 00:00:00 2001 From: bjarni Date: Wed, 1 Dec 2004 11:50:20 +0000 Subject: [PATCH] (svn r862) Cygwin: libdetection now sets the flags properly if no Makefile.config is found Cygwin: workaround: libpng is automatically not used even if present until the Cygwin/libpng problem is solved --- makefiledir/Makefile.libdetection | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/makefiledir/Makefile.libdetection b/makefiledir/Makefile.libdetection index 8d875b1057..3f5150c449 100644 --- a/makefiledir/Makefile.libdetection +++ b/makefiledir/Makefile.libdetection @@ -6,6 +6,8 @@ ifndef UNIX WIN32:=1 CYGWIN:=1 MINGW:=1 +STATIC:=1 +SKIP_STATIC_CHECK:=1 endif else UNIX:=1 @@ -98,3 +100,9 @@ endif endif endif endif + +# workaround +# cygwin have problems with libpng, so we will just disable it for now until the problem is solved +ifdef CYGWIN +WITH_PNG:= +endif \ No newline at end of file