diff options
author | truelight <truelight@openttd.org> | 2005-08-06 20:34:41 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2005-08-06 20:34:41 +0000 |
commit | 73d0f3617523bd1d3eb0f09d6096410f7fb3a19f (patch) | |
tree | f567a9ce855d7bb89c38746a806b92efdb500356 | |
parent | 5d5a7c48ee29a4ccba2466db59f3a6d513a8c0eb (diff) | |
download | openttd-73d0f3617523bd1d3eb0f09d6096410f7fb3a19f.tar.xz |
(svn r2822) -Fix: don't compile pthread for win32 dedicated servers
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 ############################################################################## |