From: Jan Moskyto Matejka Date: Wed, 20 Jan 2016 14:23:17 +0000 (+0100) Subject: All the current pthread implementations are OK and working with us. X-Git-Tag: v1.6.0~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b25509e5128e6f2a856cd4a07bb78f3d6b7fc789;p=thirdparty%2Fbird.git All the current pthread implementations are OK and working with us. No more need to disable pthread for specific BSD's. --- diff --git a/configure.in b/configure.in index c81709e61..b9220a1dd 100644 --- a/configure.in +++ b/configure.in @@ -85,12 +85,12 @@ if test -z "$GCC" ; then fi # Enable threads by default just in Linux and FreeBSD -if test "$enable_pthreads" = try ; then - case "$host_os" in - (linux* | freebsd*) enable_pthreads=try ;; - (*) enable_pthreads=no ;; - esac -fi +#if test "$enable_pthreads" = try ; then +# case "$host_os" in +# (linux* | freebsd* | openbsd* | netbsd* ) enable_pthreads=try ;; +# (*) enable_pthreads=no ;; +# esac +#fi if test "$enable_pthreads" != no ; then BIRD_CHECK_PTHREADS