mirror of https://github.com/OpenTTD/OpenTTD
(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 solvedrelease/0.4.5
parent
ec7586dac3
commit
2fc6077a68
|
@ -6,6 +6,8 @@ ifndef UNIX
|
||||||
WIN32:=1
|
WIN32:=1
|
||||||
CYGWIN:=1
|
CYGWIN:=1
|
||||||
MINGW:=1
|
MINGW:=1
|
||||||
|
STATIC:=1
|
||||||
|
SKIP_STATIC_CHECK:=1
|
||||||
endif
|
endif
|
||||||
else
|
else
|
||||||
UNIX:=1
|
UNIX:=1
|
||||||
|
@ -98,3 +100,9 @@ endif
|
||||||
endif
|
endif
|
||||||
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
|
Loading…
Reference in New Issue