configure: Add another warning in case --disable-pthread is used
authorFabian Keil <fk@fabiankeil.de>
Thu, 18 Mar 2021 17:25:15 +0000 (18:25 +0100)
committerFabian Keil <fk@fabiankeil.de>
Sun, 21 Mar 2021 06:58:53 +0000 (07:58 +0100)
... while POSIX threads are available.

Various features don't even compile when not using threads.

configure.in

index 07f2fd9..3ec78e0 100644 (file)
@@ -462,6 +462,7 @@ AC_ARG_ENABLE(pthread,
   if test $have_pthread = yes; then
      AC_MSG_WARN([pthreads seem to be available but you are using --disable-pthread.])
      AC_MSG_WARN([This is almost always a mistake and can render Privoxy unacceptable slow.])
+     AC_MSG_WARN([Also various Privoxy features only work when using threads and won't even compile without them.])
   fi
   have_pthread=no
 fi])