From: Paul Querna Date: Sun, 5 Sep 2004 14:10:58 +0000 (+0000) Subject: Echo a warning from configure if you select an X-Git-Tag: 2.1.1~342 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75e27e14dfa112bf7ae5eb44ab556458b4cb7798;p=thirdparty%2Fapache%2Fhttpd.git Echo a warning from configure if you select an experimental MPM. Reviewed by: Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105003 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure.in b/configure.in index 95d387b6f62..71aa50f4035 100644 --- a/configure.in +++ b/configure.in @@ -581,3 +581,22 @@ AC_OUTPUT($APACHE_OUTPUT_FILES docs/conf/httpd-std.conf docs/conf/ssl-std.conf i APACHE_GEN_MAKEFILES ]) +case $MPM_SUBDIR_NAME in +*experimental*) + echo "" + echo "" + echo "============================================================" + echo " WARNING: THE '${APACHE_MPM}' MPM IS EXPERIMENTAL" + echo "============================================================" + echo " The selected MPM might not be fully functional!" + echo "" + echo " Development of this MPM is not complete. Do not use this" + echo " MPM unless you are a programmer willing to help fix it." + echo "" + echo " If you are looking for a stable server, you should not use" + echo " the '${APACHE_MPM}' MPM until it is moved out of experimental." + echo "============================================================" + echo "" + echo "" + ;; +esac