From: Guenter Knauf Date: Mon, 6 Jul 2009 21:41:52 +0000 (+0000) Subject: added compile-time apr / apr-util versions as wrowe suggested. X-Git-Tag: 2.3.3~464 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=266b72ffae2f4ac3b2907497a94f7355d9ee2266;p=thirdparty%2Fapache%2Fhttpd.git added compile-time apr / apr-util versions as wrowe suggested. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@791622 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/generators/mod_info.c b/modules/generators/mod_info.c index de11233ffc3..ab7d58929ac 100644 --- a/modules/generators/mod_info.c +++ b/modules/generators/mod_info.c @@ -352,14 +352,22 @@ static int show_server_settings(request_rec * r) "%s\n", ap_get_server_built()); ap_rprintf(r, - "
Apache Portable Runtime Version: " + "
Server loaded APR Version: " "%s
\n", apr_version_string()); + ap_rprintf(r, + "
Compiled with APR Version: " + "%s
\n", + APR_VERSION_STRING); #if APR_MAJOR_VERSION < 2 ap_rprintf(r, - "
Apache Portable Utility Version: " + "
Server loaded APU Version: " "%s
\n", apu_version_string()); + ap_rprintf(r, + "
Compiled with APU Version: " + "%s
\n", + APU_VERSION_STRING); #endif ap_rprintf(r, "
Module Magic Number: "