Commit 0e965f69 authored by Jan Moskyto Matejka's avatar Jan Moskyto Matejka
Browse files

All the current pthread implementations are OK and working with us.

No more need to disable pthread for specific BSD's.
parent 7eb9e796
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -70,12 +70,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