From: Jeff Trawick Date: Fri, 1 Dec 2000 14:02:49 +0000 (+0000) Subject: Add "-D PROCESS_LOCK_IS_GLOBAL" to the httpd -V output when X-Git-Tag: moving_to_httpd_module~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a321e8bc43f68ba387e21b9b5aed802bdd389f37;p=apache Add "-D PROCESS_LOCK_IS_GLOBAL" to the httpd -V output when appropriate. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87143 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/main.c b/server/main.c index 4bd5de728b..2604dbf40e 100644 --- a/server/main.c +++ b/server/main.c @@ -135,6 +135,9 @@ static void show_compile_settings(void) #if APR_USE_PTHREAD_SERIALIZE printf(" -D APR_USE_PTHREAD_SERIALIZE\n"); #endif +#if APR_PROCESS_LOCK_IS_GLOBAL + printf(" -D APR_PROCESS_LOCK_IS_GLOBAL\n"); +#endif #ifdef SINGLE_LISTEN_UNSERIALIZED_ACCEPT printf(" -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT\n"); #endif