diff options
author | Jeff Trawick <trawick@apache.org> | 2011-03-28 16:04:23 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2011-03-28 16:04:23 +0200 |
commit | d1ac3fd574e8be765115c4ab654d79f781700cf4 (patch) | |
tree | 6917a465515624090044a5acd0ca4a94abe476ce /include | |
parent | consolidate logic to remove the pidfile in a new API, (diff) | |
download | apache2-d1ac3fd574e8be765115c4ab654d79f781700cf4.tar.xz apache2-d1ac3fd574e8be765115c4ab654d79f781700cf4.zip |
some non-MPM code wants to see DEFAULT_PIDLOG, so liberate the
setting from the MPM-specific mpm_default.h
now visible again via httpd -V
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1086243 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/ap_config.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/ap_config.h b/include/ap_config.h index 3a02bbef11..1eba92532c 100644 --- a/include/ap_config.h +++ b/include/ap_config.h @@ -235,6 +235,11 @@ #endif #include "ap_config_layout.h" +/* Where the main/parent process's pid is logged */ +#ifndef DEFAULT_PIDLOG +#define DEFAULT_PIDLOG DEFAULT_REL_RUNTIMEDIR "/httpd.pid" +#endif + #if defined(NETWARE) #define AP_NONBLOCK_WHEN_MULTI_LISTEN 1 #endif |