From 56b567cf6ceab05b5ebb8c51855d264990396121 Mon Sep 17 00:00:00 2001 From: bjarni Date: Sat, 15 Jan 2005 21:30:16 +0000 Subject: [PATCH] (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 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 8d20ada644..320a79f6d0 100644 --- a/Makefile +++ b/Makefile @@ -226,6 +226,10 @@ endif endif endif +# remove the dependancy for sdl if DEDICALTED is used +ifdef DEDICATED +WITH_SDL:= +endif ##############################################################################