From 73d0f3617523bd1d3eb0f09d6096410f7fb3a19f 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 ##############################################################################