projects
/
imager-screenshot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06bbf24
)
switch from EXTRA_META to META_MERGE
author
Tony Cook
<tony@develop-help.com>
Mon, 21 Sep 2009 10:58:27 +0000
(10:58 +0000)
committer
Tony Cook
<tony@develop-help.com>
Mon, 21 Sep 2009 10:58:27 +0000
(10:58 +0000)
Makefile.PL
patch
|
blob
|
blame
|
history
diff --git
a/Makefile.PL
b/Makefile.PL
index b098ebef72c55714f38da88f01f93e0b104de25b..5ef0314ee946178c9461ecdc07c2ea954c6396db 100644
(file)
--- a/
Makefile.PL
+++ b/
Makefile.PL
@@
-76,13
+76,20
@@
if ($eu_mm_version > 6.06) {
# EXTRA_META was also introduced in 6.30_01
if ($eu_mm_version > 6.3001) {
$opts{LICENSE} = 'perl';
- $opts{EXTRA_META} = <<META;
-configure_requires:
- Imager: 0.54
-build_requires:
- Imager: 0.54
- Test::More: 0.47
-META
+}
+if ($eu_mm_version >= 6.46) {
+ $opts{META_MERGE} =
+ {
+ configure_requires =>
+ {
+ Imager => "0.54"
+ },
+ build_requires =>
+ {
+ Imager => "0.54",
+ "Test::More" => "0.47",
+ }
+ };
}
WriteMakefile(%opts);