diff options
author | Jan Moskyto Matejka <mq@ucw.cz> | 2016-01-20 15:23:17 +0100 |
---|---|---|
committer | Jan Moskyto Matejka <mq@ucw.cz> | 2016-01-21 14:55:33 +0100 |
commit | 0e965f69914313857a95d03b2e6136d3e84019dd (patch) | |
tree | 34c4728ee794c0cb56e804b3e4f77bc74f67d535 | |
parent | 7eb9e79648e17037f3691aafa829970efacbbbc9 (diff) |
All the current pthread implementations are OK and working with us.
No more need to disable pthread for specific BSD's.
-rw-r--r-- | configure.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.in b/configure.in index 6bee4e0c..1c2c2fe1 100644 --- a/configure.in +++ b/configure.in @@ -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 |