summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/a2enmod5
1 files changed, 5 insertions, 0 deletions
diff --git a/debian/a2enmod b/debian/a2enmod
index 0bd3c125..8d485009 100644
--- a/debian/a2enmod
+++ b/debian/a2enmod
@@ -170,6 +170,11 @@ sub doit {
# handle module dependencies
if ( $obj eq 'module' ) {
if ( $act eq 'enable' ) {
+ if ( $acton eq 'mpm_itk' ) {
+ warning( "MPM_ITK is a third party module that is not part "
+ . "of the official Apache HTTPD. It has seen less "
+ . "testing than the official MPM modules." );
+ }
my @depends = get_deps("$availdir/$acton.load");
do_deps( $acton, @depends ) or return 0;