From: Ivan Maidanski Date: Tue, 6 Mar 2018 08:02:02 +0000 (+0300) Subject: Fix 'pthreads not supported by GC' configure error for DragonFly and Haiku X-Git-Tag: v8.0.0~299 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6936d97ac72e8b6986ff387d305e8ae18839b252;p=gc Fix 'pthreads not supported by GC' configure error for DragonFly and Haiku (fix of commits 19c81d8, 847927f) Issue #97 (bdwgc). * configure.ac [$THREADS=pthreads && ($host=*-*-dragonfly* || $host=*-*-haiku*)]: Do not AC_MSG_ERROR (i.e. use the default THREADDLLIBS). --- diff --git a/configure.ac b/configure.ac index 4ed9fe27..f08ef5aa 100644 --- a/configure.ac +++ b/configure.ac @@ -202,7 +202,8 @@ case "$THREADS" in esac AC_CHECK_LIB(pthread, pthread_self, THREADDLLIBS="-lpthread",,) case "$host" in - *-*-aix* | *-*-irix* | *-*-*linux* | *-*-nacl*) + *-*-aix* | *-*-dragonfly* | *-*-haiku* | *-*-irix* | *-*-*linux* | \ + *-*-nacl*) # The default THREADDLLIBS. ;; *-*-hpux11*)