diff options
author | Guenter Knauf <fuankg@apache.org> | 2009-07-06 23:41:52 +0200 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2009-07-06 23:41:52 +0200 |
commit | 266b72ffae2f4ac3b2907497a94f7355d9ee2266 (patch) | |
tree | 1a0a0bef0f60260eff0451dbd9747d97f975b87a /modules/generators/mod_info.c | |
parent | Add use slotmem. Directive HeartbeatMaxServers > 10 to activate the logic. (diff) | |
download | apache2-266b72ffae2f4ac3b2907497a94f7355d9ee2266.tar.xz apache2-266b72ffae2f4ac3b2907497a94f7355d9ee2266.zip |
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
Diffstat (limited to 'modules/generators/mod_info.c')
-rw-r--r-- | modules/generators/mod_info.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/modules/generators/mod_info.c b/modules/generators/mod_info.c index de11233ffc..ab7d58929a 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) "<font size=\"+1\"><tt>%s</tt></font></dt>\n", ap_get_server_built()); ap_rprintf(r, - "<dt><strong>Apache Portable Runtime Version:</strong> " + "<dt><strong>Server loaded APR Version:</strong> " "<font size=\"+1\"><tt>%s</tt></font></dt>\n", apr_version_string()); + ap_rprintf(r, + "<dt><strong>Compiled with APR Version:</strong> " + "<font size=\"+1\"><tt>%s</tt></font></dt>\n", + APR_VERSION_STRING); #if APR_MAJOR_VERSION < 2 ap_rprintf(r, - "<dt><strong>Apache Portable Utility Version:</strong> " + "<dt><strong>Server loaded APU Version:</strong> " "<font size=\"+1\"><tt>%s</tt></font></dt>\n", apu_version_string()); + ap_rprintf(r, + "<dt><strong>Compiled with APU Version:</strong> " + "<font size=\"+1\"><tt>%s</tt></font></dt>\n", + APU_VERSION_STRING); #endif ap_rprintf(r, "<dt><strong>Module Magic Number:</strong> " |