From: David Lawrence Date: Tue, 24 May 2016 21:52:27 +0000 (+0000) Subject: Bug 1275404 - Makefile.PL and META.* should depend on Apache2::SizeLimit, not Apache... X-Git-Tag: release-5.1.2~116 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6e0a0d0e346990612579a47f291a41e76baa228;p=thirdparty%2Fbugzilla.git Bug 1275404 - Makefile.PL and META.* should depend on Apache2::SizeLimit, not Apache::SizeLimit r=dylan --- diff --git a/META.json b/META.json index 977f2de475..43d9e9b677 100644 --- a/META.json +++ b/META.json @@ -167,7 +167,7 @@ "prereqs" : { "runtime" : { "requires" : { - "Apache::SizeLimit" : "0.96", + "Apache2::SizeLimit" : "0.96", "mod_perl2" : "1.999022" } } diff --git a/META.yml b/META.yml index 68d14b994f..dc06c5ee37 100644 --- a/META.yml +++ b/META.yml @@ -90,7 +90,7 @@ optional_features: mod_perl: description: 'mod_perl support under Apache' requires: - Apache::SizeLimit: '0.96' + Apache2::SizeLimit: '0.96' mod_perl2: '1.999022' moving: description: 'Move Bugs Between Installations' diff --git a/Makefile.PL b/Makefile.PL index 71e4348670..eaa2322229 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -241,8 +241,8 @@ my %optional_features = ( prereqs => { runtime => { requires => { - 'mod_perl2' => '1.999022', - 'Apache::SizeLimit' => '0.96', + 'mod_perl2' => '1.999022', + 'Apache2::SizeLimit' => '0.96', } } }