From 75e27e14dfa112bf7ae5eb44ab556458b4cb7798 Mon Sep 17 00:00:00 2001 From: Paul Querna Date: Sun, 5 Sep 2004 14:10:58 +0000 Subject: [PATCH] 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 --- configure.in | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) 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 -- 2.47.3