configure.ac: pthread-stubs not present on OpenBSD
authorJonathan Gray <jsg@jsg.id.au>
Tue, 20 Feb 2018 06:38:00 +0000 (17:38 +1100)
committerEric Engestrom <eric.engestrom@imgtec.com>
Tue, 20 Feb 2018 15:08:47 +0000 (15:08 +0000)
pthread-stubs is no longer required on OpenBSD and has been removed.
libpthread parts involved moved to libc.

Signed-off-by: Jonathan Gray <jsg@jsg.id.au>
Cc: 17.3 18.0 <mesa-stable@lists.freedesktop.org>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
configure.ac

index d37cb67a4605d4ee8354999f59925371c0a758c8..8a9172690a87d68714f7b44ed3f93794803ba9ee 100644 (file)
@@ -939,10 +939,10 @@ dnl In practise that should be sufficient for all platforms, since any
 dnl platforms build with GCC and Clang support the flag.
 PTHREAD_LIBS="$PTHREAD_LIBS -pthread"
 
-dnl pthread-stubs is mandatory on BSD platforms, due to the nature of the
+dnl pthread-stubs is mandatory on some 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* | gnu*)
+linux* | cygwin* | darwin* | solaris* | *-gnu* | gnu* | openbsd*)
     pthread_stubs_possible="no"
     ;;
 * )