(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)
authorbjarni
Sat, 15 Jan 2005 21:30:16 +0000
changeset 1029 c6bbfed6fc26
parent 1028 37e5cf7baa96
child 1030 a5e4705a738c
(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)
Makefile
--- a/Makefile	Sat Jan 15 20:43:01 2005 +0000
+++ b/Makefile	Sat Jan 15 21:30:16 2005 +0000
@@ -226,6 +226,10 @@
 endif
 endif
 
+# remove the dependancy for sdl if DEDICALTED is used
+ifdef DEDICATED
+WITH_SDL:=
+endif
 
 
 ##############################################################################