mirror of https://github.com/OpenTTD/OpenTTD
(svn r1530) Makefilefix: now the binary never links to SDL if DEDICATED is set. Thanks to igor2code for making me aware of this issue even through I fixed it in a different way than his patch did. (I made dedicated never link to sdl, nomatter what makefile.config says)
parent
633786f55e
commit
971d844266
4
Makefile
4
Makefile
|
@ -226,6 +226,10 @@ endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# remove the dependancy for sdl if DEDICALTED is used
|
||||||
|
ifdef DEDICATED
|
||||||
|
WITH_SDL:=
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
Loading…
Reference in New Issue