Quellcode durchsuchen

add solaris to poorly threading platforms

svn:r4383
Nick Mathewson vor 20 Jahren
Ursprung
Commit
8753e7ef65
1 geänderte Dateien mit 5 neuen und 0 gelöschten Zeilen
  1. 5 0
      configure.in

+ 5 - 0
configure.in

@@ -30,6 +30,11 @@ if test x$enable_threads = x; then
      AC_MSG_NOTICE([You are running OpenBSD or NetBSD; I am assuming that
 getaddrinfo is not threadsafe here, so I will disable threads.])
      enable_threads="no";;
+    *-*-solaris* )
+     # Don't try multithreading on solaris -- cpuworkers seem to lock.
+     AC_MSG_NOTICE([You are running Solaris; Sometimes threading makes
+cpu workers lock up here, so I will disable threads.])
+     enable_threads="no";;
     *)
      enable_threads="yes";;
    esac