diff options
author | Justin Erenkrantz <jerenkrantz@apache.org> | 2001-08-30 22:50:06 +0200 |
---|---|---|
committer | Justin Erenkrantz <jerenkrantz@apache.org> | 2001-08-30 22:50:06 +0200 |
commit | 3c90c3f5f4c2540211146c0b6256f29ed824961c (patch) | |
tree | 60f1848fb7f9ffb66fa517f85227ec92a5cbefec /server/main.c | |
parent | Fix the new code (not currently enabled) for directory_walk (diff) | |
download | apache2-3c90c3f5f4c2540211146c0b6256f29ed824961c.tar.xz apache2-3c90c3f5f4c2540211146c0b6256f29ed824961c.zip |
Add -X functionality back to httpd.
- Updates upgrading.html
- Reverts Aaron's earlier docco patch (sorry...)
- Adds -X to all mpms in the tree
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90824 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/main.c')
-rw-r--r-- | server/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/main.c b/server/main.c index cfee4a987d..4b18845e14 100644 --- a/server/main.c +++ b/server/main.c @@ -344,6 +344,10 @@ int main(int argc, const char * const argv[]) new = (char **)apr_array_push(ap_server_config_defines); *new = apr_pstrdup(pcommands, optarg); break; + case 'X': + new = (char **)apr_array_push(ap_server_config_defines); + *new = "DEBUG"; + break; case 'f': confname = optarg; break; |