Commit c44c8bf6 authored by Greg Ames's avatar Greg Ames
Browse files

tell the user what's going if APR threads aren't unavailable, and Apache

is using a threaded MPM.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88681 13f79535-47bb-0310-9956-ffa450edef68
parent 94e5fb4e
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -73,6 +73,10 @@
#include <sys/socket.h>
#endif

#if !APR_HAVE_THREADS
#error The perchild MPM requires APR threads, but they are unavailable.
#endif  

#define CORE_PRIVATE 
 
#include "ap_config.h"
+4 −0
Original line number Diff line number Diff line
@@ -73,6 +73,10 @@
#include <sys/socket.h>
#endif

#if !APR_HAVE_THREADS
#error The perchild MPM requires APR threads, but they are unavailable.
#endif  

#define CORE_PRIVATE 
 
#include "ap_config.h"
+4 −0
Original line number Diff line number Diff line
@@ -73,6 +73,10 @@
#include <sys/wait.h> 
#endif

#if !APR_HAVE_THREADS
#error The threaded MPM requires APR threads, but they are unavailable.
#endif

#define CORE_PRIVATE 
 
#include "ap_config.h"