diff options
author | tron <tron@openttd.org> | 2007-01-07 09:24:18 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2007-01-07 09:24:18 +0000 |
commit | a80c269951cc1e13686635abc71f9f095d0f65f2 (patch) | |
tree | 9e3d71e6efd74ca109ee4885576cfc77ff625dcd | |
parent | 45572b5c140211924271629ad1495138514231ec (diff) | |
download | openttd-a80c269951cc1e13686635abc71f9f095d0f65f2.tar.xz |
(svn r7941) Unbreak linking: FreeBSD is not Linux either
-rw-r--r-- | config.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.lib b/config.lib index 442243395..f7efa14ae 100644 --- a/config.lib +++ b/config.lib @@ -701,7 +701,7 @@ make_cflags_and_ldflags() { LIBS="$LIBS -lws2_32 -lwinmm -lgdi32 -ldxguid -lole32" fi - if [ "$os" != "CYGWIN" ] && [ "$os" != "MINGW" ] && [ "$os" != "MORPHOS" ] && [ "$os" != "OSX" ] + if [ "$os" != "CYGWIN" ] && [ "$os" != "FREEBSD" ] && [ "$os" != "MINGW" ] && [ "$os" != "MORPHOS" ] && [ "$os" != "OSX" ] then LIBS="$LIBS -lpthread" LIBS="$LIBS -lrt" |