On 09.07.2009 15:45, [email protected] wrote: > Author: takashi > Date: Thu Jul 9 13:45:35 2009 > New Revision: 792554 > > URL: http://svn.apache.org/viewvc?rev=792554&view=rev > Log: > vote and comment >
I guess the following part of the commit was an accident? That patch is still voted on in the status file. > Modified: httpd/httpd/branches/2.2.x/modules/generators/mod_info.c > URL: > http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/modules/generators/mod_info.c?rev=792554&r1=792553&r2=792554&view=diff > ============================================================================== > --- httpd/httpd/branches/2.2.x/modules/generators/mod_info.c (original) > +++ httpd/httpd/branches/2.2.x/modules/generators/mod_info.c Thu Jul 9 > 13:45:35 2009 > @@ -44,6 +44,8 @@ > #include "apr.h" > #include "apr_strings.h" > #include "apr_lib.h" > +#include "apr_version.h" > +#include "apu_version.h" > #define APR_WANT_STRFUNC > #include "apr_want.h" > > @@ -352,6 +354,20 @@ > "<font size=\"+1\"><tt>%s</tt></font></dt>\n", > ap_get_server_built()); > ap_rprintf(r, > + "<dt><strong>Server loaded APR Version:</strong> " > + "<tt>%s</tt></dt>\n", apr_version_string()); > + ap_rprintf(r, > + "<dt><strong>Compiled with APR Version:</strong> " > + "<tt>%s</tt></dt>\n", APR_VERSION_STRING); > +#if APR_MAJOR_VERSION < 2 > + ap_rprintf(r, > + "<dt><strong>Server loaded APU Version:</strong> " > + "<tt>%s</tt></dt>\n", apu_version_string()); > + ap_rprintf(r, > + "<dt><strong>Compiled with APU Version:</strong> " > + "<tt>%s</tt></dt>\n", APU_VERSION_STRING); > +#endif > + ap_rprintf(r, > "<dt><strong>Module Magic Number:</strong> " > "<tt>%d:%d</tt></dt>\n", MODULE_MAGIC_NUMBER_MAJOR, > MODULE_MAGIC_NUMBER_MINOR); > Regards, Rainer
