From 479b98980c329966784b5e1f352b12d735bb0f2f Mon Sep 17 00:00:00 2001 From: truelight Date: Sat, 6 Aug 2005 20:34:41 +0000 Subject: [PATCH] (svn r2822) -Fix: don't compile pthread for win32 dedicated servers --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 8eefe09f9c..3b4765b725 100644 --- a/Makefile +++ b/Makefile @@ -215,8 +215,10 @@ endif # and add -lpthread to LDFLAGS, because SDL normally adds that... ifdef DEDICATED WITH_SDL:= +ifndef WIN32 LDFLAGS+=-lpthread endif +endif ##############################################################################