]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Echo a warning from configure if you select an
authorPaul Querna <pquerna@apache.org>
Sun, 5 Sep 2004 14:10:58 +0000 (14:10 +0000)
committerPaul Querna <pquerna@apache.org>
Sun, 5 Sep 2004 14:10:58 +0000 (14:10 +0000)
experimental MPM.
Reviewed by: Jeff Trawick

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105003 13f79535-47bb-0310-9956-ffa450edef68

configure.in

index 95d387b6f6260f4f86add082c8c185893fb06d85..71aa50f4035fb241f3cec52c486c3367b31acb34 100644 (file)
@@ -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