diff options
author | Jan Moskyto Matejka <mq@ucw.cz> | 2016-01-20 15:23:17 +0100 |
---|---|---|
committer | Jan Moskyto Matejka <mq@ucw.cz> | 2016-02-25 18:22:27 +0100 |
commit | b25509e5128e6f2a856cd4a07bb78f3d6b7fc789 (patch) | |
tree | 21172ceb0dffcf6bd18c1ae6f1c1ca6cd176f79e /configure.in | |
parent | 9c9cc35c0273f8bcae10fb8b546d199514b2bbc5 (diff) |
All the current pthread implementations are OK and working with us.
No more need to disable pthread for specific BSD's.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.in b/configure.in index c81709e6..b9220a1d 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 |