From: Martin Kraemer Date: Tue, 1 Oct 2002 14:24:23 +0000 (+0000) Subject: Print out the DYNAMIC_MODULE_LIMIT (=64) on the "httpd -V" page. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8f94e4bc7d6bfcac52e9725f5f66062fda6a210;p=thirdparty%2Fapache%2Fhttpd.git Print out the DYNAMIC_MODULE_LIMIT (=64) on the "httpd -V" page. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@97042 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/main/http_main.c b/src/main/http_main.c index 4ff3874ce6c..282a9557f9e 100644 --- a/src/main/http_main.c +++ b/src/main/http_main.c @@ -4086,6 +4086,7 @@ static void show_compile_settings(void) printf(" -D PIPE_BUF=%ld\n",(long)PIPE_BUF); #endif #endif + printf(" -D DYNAMIC_MODULE_LIMIT=%ld\n",(long)DYNAMIC_MODULE_LIMIT); printf(" -D HARD_SERVER_LIMIT=%ld\n",(long)HARD_SERVER_LIMIT); #ifdef MULTITHREAD printf(" -D MULTITHREAD\n");