summaryrefslogtreecommitdiffstats
path: root/server/main.c
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-12-01 15:02:49 +0100
committerJeff Trawick <trawick@apache.org>2000-12-01 15:02:49 +0100
commita321e8bc43f68ba387e21b9b5aed802bdd389f37 (patch)
tree769eb78765fd4893741b0a164d71847ac2df82a9 /server/main.c
parentGet Apache to use the new generated exports list. This works on my (diff)
downloadapache2-a321e8bc43f68ba387e21b9b5aed802bdd389f37.tar.xz
apache2-a321e8bc43f68ba387e21b9b5aed802bdd389f37.zip
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
Diffstat (limited to '')
-rw-r--r--server/main.c3
1 files changed, 3 insertions, 0 deletions
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