]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
All the current pthread implementations are OK and working with us.
authorJan Moskyto Matejka <mq@ucw.cz>
Wed, 20 Jan 2016 14:23:17 +0000 (15:23 +0100)
committerJan Moskyto Matejka <mq@ucw.cz>
Thu, 25 Feb 2016 17:22:27 +0000 (18:22 +0100)
No more need to disable pthread for specific BSD's.

configure.in

index c81709e61bf4fec0d099306845814002b92d1e1a..b9220a1ddc2c149e2ea133112ce2a25711e72512 100644 (file)
@@ -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