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 | 479b98980c329966784b5e1f352b12d735bb0f2f (patch) | |
tree | f567a9ce855d7bb89c38746a806b92efdb500356 | |
parent | 56705ecffbe9c2fb219295f81c195907e0b286d7 (diff) | |
download | openttd-479b98980c329966784b5e1f352b12d735bb0f2f.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 ############################################################################## |