summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorEmil Velikov <emil.velikov@collabora.com>2017-04-05 17:21:29 +0100
committerEmil Velikov <emil.l.velikov@gmail.com>2017-04-05 17:47:41 +0100
commit830712482968a3f3fe30e9618b11546ff0bbb51b (patch)
treea19553028f1eae58138e383f03e594c772c4dbf4 /configure.ac
parent4d0399f1755145b7c25f0aba0413e41e43e4cbbe (diff)
configure.ac: pthread-stubs is not a thing on GNU/kFreeBSD
As mentioned on the xcb mailing list, the platform uses the GLIBC forwarding mechanism. https://lists.freedesktop.org/archives/xcb/2016-November/010896.html Cc: Andreas Boll <andreas.boll.dev@gmail.com> Reported-by: Andreas Boll <andreas.boll.dev@gmail.com> Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 1c60a598239..74a28ac1d96 100644
--- a/configure.ac
+++ b/configure.ac
@@ -817,7 +817,7 @@ fi
dnl pthread-stubs is mandatory on BSD platforms, due to the nature of the
dnl project. Even then there's a notable issue as described in the project README
case "$host_os" in
-linux* | cygwin* | darwin* | solaris* | gnu*)
+linux* | cygwin* | darwin* | solaris* | *-gnu* | gnu*)
pthread_stubs_possible="no"
;;
* )