From fc96e806882debd2669d9f89a4816366f5e3c4a6 Mon Sep 17 00:00:00 2001 From: truelight Date: Sat, 18 Jun 2005 15:08:35 +0000 Subject: [PATCH] (svn r2458) -Fix: Quickfix to make dedicated-server compile again. We need a more ellegant way to fix this... --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 5657b46a57..125ed2fd60 100644 --- a/Makefile +++ b/Makefile @@ -219,8 +219,10 @@ endif endif # remove the dependancy for sdl if DEDICALTED is used +# and add -lpthread to LDFLAGS, because SDL normally adds that... ifdef DEDICATED WITH_SDL:= +LDFLAGS+=-lpthread endif