summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel Bouthenot <kolter@openics.org>2006-02-01 07:33:34 +0000
committerEmmanuel Bouthenot <kolter@openics.org>2006-02-01 07:33:34 +0000
commit4aac135244d1f79755995f0a3d9e17fbcd56e955 (patch)
tree204bc5969695e2ea3ddccb2ccf4a1252dedeeeb9
parentf222a6ad7ae5a60a23efd7235eab70e90a1e8fdf (diff)
downloadweechat-4aac135244d1f79755995f0a3d9e17fbcd56e955.zip
fix a missing link in GNU/Hurd by force linking with pthread
-rw-r--r--configure.in3
-rw-r--r--weechat/configure.in3
2 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index b27341a4c..524c1dddb 100644
--- a/configure.in
+++ b/configure.in
@@ -41,6 +41,9 @@ netbsd*)
solaris*)
LDFLAGS="$LDFLAGS -lsocket -lxnet"
;;
+gnu*)
+ LDFLAGS="$LDFLAGS -lpthread"
+ ;;
*)
;;
esac
diff --git a/weechat/configure.in b/weechat/configure.in
index b27341a4c..524c1dddb 100644
--- a/weechat/configure.in
+++ b/weechat/configure.in
@@ -41,6 +41,9 @@ netbsd*)
solaris*)
LDFLAGS="$LDFLAGS -lsocket -lxnet"
;;
+gnu*)
+ LDFLAGS="$LDFLAGS -lpthread"
+ ;;
*)
;;
esac