From: Martin Kraemer Date: Tue, 29 Jun 2004 14:08:17 +0000 (+0000) Subject: Add OS and APACHE_MPM_DIR to -V output X-Git-Tag: pre_ajp_proxy~121 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3b5b7677b0d3610495de15f807b5fa982fc9f6a5;p=apache Add OS and APACHE_MPM_DIR to -V output git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104083 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/main.c b/server/main.c index f166844ee1..21a8a13cd7 100644 --- a/server/main.c +++ b/server/main.c @@ -106,6 +106,14 @@ static void show_compile_settings(void) printf(" -D SECURITY_HOLE_PASS_AUTHORIZATION\n"); #endif +#ifdef OS + printf(" -D OS=\"" OS "\"\n"); +#endif + +#ifdef APACHE_MPM_DIR + printf(" -D APACHE_MPM_DIR=\"" APACHE_MPM_DIR "\"\n"); +#endif + #ifdef HAVE_SHMGET printf(" -D HAVE_SHMGET\n"); #endif