summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2019-11-10 11:05:32 +0100
committerSébastien Helleu <flashcode@flashtux.org>2019-11-10 11:06:39 +0100
commit421d6481da38905ad06b5c0f2f45d70ae5af85c2 (patch)
tree9f5737d57e9e8a61e208e1f4bd8521a697676325
parentHaiku: link libnetwork, not libpthread. (diff)
downloadweechat-421d6481da38905ad06b5c0f2f45d70ae5af85c2.tar.xz
weechat-421d6481da38905ad06b5c0f2f45d70ae5af85c2.zip
core: link with libnetwork and not libpthread on Haiku (autotools) (issue #1420)
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index c4e30a531..672ff0e5e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1327,6 +1327,9 @@ netbsd*)
gnu*)
LDFLAGS="$LDFLAGS -lpthread"
;;
+haiku*)
+ LDFLAGS="$LDFLAGS -lnetwork"
+ ;;
*)
;;
esac