From: Guenter Knauf Date: Sun, 5 Jul 2009 20:31:17 +0000 (+0000) Subject: added apr / apr-util version output. X-Git-Tag: 2.3.3~480 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2b63bdb61bdd56088a900aed0c8ce0c7eb70dccf;p=thirdparty%2Fapache%2Fhttpd.git added apr / apr-util version output. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@791313 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/generators/mod_info.c b/modules/generators/mod_info.c index 602fdc8227b..2b7f227ae6b 100644 --- a/modules/generators/mod_info.c +++ b/modules/generators/mod_info.c @@ -350,6 +350,16 @@ static int show_server_settings(request_rec * r) "
Server Built: " "%s
\n", ap_get_server_built()); + ap_rprintf(r, + "
Apache Portable Runtime Version: " + "%s
\n", + apr_version_string()); +#if APR_MAJOR_VERSION < 2 + ap_rprintf(r, + "
Apache Portable Utility Version: " + "%s
\n", + apu_version_string()); +#endif ap_rprintf(r, "
Module Magic Number: " "%d:%d
\n", MODULE_MAGIC_NUMBER_MAJOR,