From a321e8bc43f68ba387e21b9b5aed802bdd389f37 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Fri, 1 Dec 2000 14:02:49 +0000 Subject: [PATCH] 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 --- server/main.c | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.40.0