(svn r2822) -Fix: don't compile pthread for win32 dedicated servers
authortruelight
Sat, 06 Aug 2005 20:34:41 +0000
changeset 2298 64a87da01248
parent 2297 0117f7a7c704
child 2299 480d89e53ab1
(svn r2822) -Fix: don't compile pthread for win32 dedicated servers
Makefile
--- a/Makefile	Sat Aug 06 20:24:32 2005 +0000
+++ b/Makefile	Sat Aug 06 20:34:41 2005 +0000
@@ -215,8 +215,10 @@
 # and add -lpthread to LDFLAGS, because SDL normally adds that...
 ifdef DEDICATED
 WITH_SDL:=
+ifndef WIN32
 LDFLAGS+=-lpthread
 endif
+endif
 
 
 ##############################################################################