From aa6fdd0e529a33f34db80bc3932c0a3fc2f2ea64 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 1 Sep 2005 14:21:38 +0000 Subject: [PATCH] httpd.exe/apachectl -V: display the DYNAMIC_MODULE_LIMIT setting (1.3 has done that for a while) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@265737 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 3 +++ server/main.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/CHANGES b/CHANGES index 3f2caf8ac6..d12a117ba2 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,9 @@ Changes with Apache 2.3.0 [Remove entries to the current 2.0 and 2.2 section below, when backported] + *) httpd.exe/apachectl -V: display the DYNAMIC_MODULE_LIMIT setting, as + in 1.3. [Jeff Trawick] + *) mod_log_config: %{hextid}P will log the thread id in hex with APR versions 1.2.0 or higher. [Jeff Trawick] diff --git a/server/main.c b/server/main.c index 9808581921..3b0d207103 100644 --- a/server/main.c +++ b/server/main.c @@ -196,6 +196,8 @@ static void show_compile_settings(void) #endif #endif + printf(" -D DYNAMIC_MODULE_LIMIT=%ld\n",(long)DYNAMIC_MODULE_LIMIT); + #if APR_CHARSET_EBCDIC printf(" -D APR_CHARSET_EBCDIC\n"); #endif -- 2.40.0