From: Colm MacCarthaigh Date: Tue, 11 Oct 2005 16:11:16 +0000 (+0000) Subject: merge r265737 from trunk. X-Git-Tag: 2.1.9~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a1c760550f2cd7b645cba98cbf7d692a86feee7;p=thirdparty%2Fapache%2Fhttpd.git merge r265737 from trunk. Author: trawick Reviewed by: colm git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@312906 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 603122c5fe3..84fd56623b7 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,9 @@ -*- coding: utf-8 -*- Changes with Apache 2.1.9 + *) httpd.exe/apachectl -V: display the DYNAMIC_MODULE_LIMIT setting, as + in 1.3. [Jeff Trawick] + *) Support dbd connection tied to conn_rec in mod_dbd [Nick Kew] *) Fix use of pools in mod_dbd [Brian J France, Nick Kew] diff --git a/server/main.c b/server/main.c index 98085819215..3b0d207103f 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