From: Bill Stoddard Date: Tue, 26 Feb 2002 15:01:35 +0000 (+0000) Subject: Ignore AcceptMutex directive if it is present in an Apache on Windows config X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e6b1296e5e3cc8a5030201c5f693fa3cb569aa1;p=thirdparty%2Fapache%2Fhttpd.git Ignore AcceptMutex directive if it is present in an Apache on Windows config file. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@93573 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/main/http_main.c b/src/main/http_main.c index 9afa419e6cf..50f4bf8b3d0 100644 --- a/src/main/http_main.c +++ b/src/main/http_main.c @@ -1312,6 +1312,8 @@ char *ap_init_mutex_method(char *t) } else #endif { +/* Ignore this directive on Windows */ +#ifndef WIN32 if (server_conf) { ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, server_conf, "Requested serialization method '%s' not available",t); @@ -1320,6 +1322,7 @@ char *ap_init_mutex_method(char *t) fprintf(stderr, "Requested serialization method '%s' not available\n", t); exit(APEXIT_INIT); } +#endif } return NULL; }