summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-06-18 15:08:35 +0000
committertruelight <truelight@openttd.org>2005-06-18 15:08:35 +0000
commitfc96e806882debd2669d9f89a4816366f5e3c4a6 (patch)
treede3b0c6fb247d3e0a86170069b31661252abc13f /Makefile
parent7721a2efe43820a1039f0e120665f2c869efadfe (diff)
downloadopenttd-fc96e806882debd2669d9f89a4816366f5e3c4a6.tar.xz
(svn r2458) -Fix: Quickfix to make dedicated-server compile again. We need a more ellegant way to fix this...
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5657b46a5..125ed2fd6 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