mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Check the right variable for the right value in order to default netbsd threads to "off". Fixes bug 122.
svn:r4202
This commit is contained in:
parent
00f2a09380
commit
e2749de1bb
@ -23,8 +23,10 @@ AC_ARG_ENABLE(threads,
|
||||
AC_HELP_STRING(--disable-threads, disable multi-threading support))
|
||||
|
||||
if test x$enable_threads = x; then
|
||||
case $ac_sys_system in
|
||||
NetBSD*)
|
||||
case $host in
|
||||
*-*-netbsd*)
|
||||
# Don't try multithreading on netbsd -- there is no threadsafe DNS
|
||||
# lookup function there.
|
||||
enable_threads="no";;
|
||||
*)
|
||||
enable_threads="yes";;
|
||||
|
Loading…
Reference in New Issue
Block a user