summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Slemko <marc@apache.org>2001-04-03 03:19:58 +0000
committerMarc Slemko <marc@apache.org>2001-04-03 03:19:58 +0000
commit66b80982f784eb21631f04d6f4831a52af6cdbe0 (patch)
treeb625a558e630032a85b7e131d71bffaca3e1cf47
parent95d3ab5de2a772663c6bba1ee99387a8884489b9 (diff)
downloadhttpd-66b80982f784eb21631f04d6f4831a52af6cdbe0.tar.gz
Threads is a feature, so it is HAS threads not HAVE threads...
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88682 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--server/mpm/experimental/perchild/perchild.c2
-rw-r--r--server/mpm/perchild/perchild.c2
-rw-r--r--server/mpm/threaded/threaded.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/server/mpm/experimental/perchild/perchild.c b/server/mpm/experimental/perchild/perchild.c
index cb68180d92..2a7092f593 100644
--- a/server/mpm/experimental/perchild/perchild.c
+++ b/server/mpm/experimental/perchild/perchild.c
@@ -73,7 +73,7 @@
#include <sys/socket.h>
#endif
-#if !APR_HAVE_THREADS
+#if !APR_HAS_THREADS
#error The perchild MPM requires APR threads, but they are unavailable.
#endif
diff --git a/server/mpm/perchild/perchild.c b/server/mpm/perchild/perchild.c
index cb68180d92..2a7092f593 100644
--- a/server/mpm/perchild/perchild.c
+++ b/server/mpm/perchild/perchild.c
@@ -73,7 +73,7 @@
#include <sys/socket.h>
#endif
-#if !APR_HAVE_THREADS
+#if !APR_HAS_THREADS
#error The perchild MPM requires APR threads, but they are unavailable.
#endif
diff --git a/server/mpm/threaded/threaded.c b/server/mpm/threaded/threaded.c
index 4617268747..a15f39cad7 100644
--- a/server/mpm/threaded/threaded.c
+++ b/server/mpm/threaded/threaded.c
@@ -73,7 +73,7 @@
#include <sys/wait.h>
#endif
-#if !APR_HAVE_THREADS
+#if !APR_HAS_THREADS
#error The threaded MPM requires APR threads, but they are unavailable.
#endif