diff options
author | Jeff Trawick <trawick@apache.org> | 2000-12-01 15:02:49 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2000-12-01 15:02:49 +0100 |
commit | a321e8bc43f68ba387e21b9b5aed802bdd389f37 (patch) | |
tree | 769eb78765fd4893741b0a164d71847ac2df82a9 /server/main.c | |
parent | Get Apache to use the new generated exports list. This works on my (diff) | |
download | apache2-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.c | 3 |
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 |