diff options
author | David Lawrence <dkl@mozilla.com> | 2016-05-24 23:52:27 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2016-05-24 23:52:27 +0200 |
commit | d6e0a0d0e346990612579a47f291a41e76baa228 (patch) | |
tree | 6ee25297d6bcfe1dca3096e55d61cf076911f091 | |
parent | 9acca922dddfadfad8d86e10bf516b30b113973c (diff) | |
download | bugzilla-d6e0a0d0e346990612579a47f291a41e76baa228.tar.gz bugzilla-d6e0a0d0e346990612579a47f291a41e76baa228.tar.xz |
Bug 1275404 - Makefile.PL and META.* should depend on Apache2::SizeLimit, not Apache::SizeLimit
r=dylan
-rw-r--r-- | META.json | 2 | ||||
-rw-r--r-- | META.yml | 2 | ||||
-rw-r--r-- | Makefile.PL | 4 |
3 files changed, 4 insertions, 4 deletions
@@ -167,7 +167,7 @@ "prereqs" : { "runtime" : { "requires" : { - "Apache::SizeLimit" : "0.96", + "Apache2::SizeLimit" : "0.96", "mod_perl2" : "1.999022" } } @@ -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 71e434867..eaa232222 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', } } } |