diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-11-10 11:05:32 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-11-10 11:06:39 +0100 |
commit | 421d6481da38905ad06b5c0f2f45d70ae5af85c2 (patch) | |
tree | 9f5737d57e9e8a61e208e1f4bd8521a697676325 | |
parent | 8d991f128480ffcf92290ba6ddf98722e94d2194 (diff) | |
download | weechat-421d6481da38905ad06b5c0f2f45d70ae5af85c2.zip |
core: link with libnetwork and not libpthread on Haiku (autotools) (issue #1420)
-rw-r--r-- | configure.ac | 3 |
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 |