X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=33412805791c6464316c569ab19b5b532efbd0a6;hb=4ee57231353e8d71dd88494429fab1a7a293632b;hp=35e7dbe2d5200e7eb9df1e7dba51f8a180931810;hpb=0eb5d8f43b9c03ceb50173a69e84577d00cba133;p=dbsrgits%2FSQL-Translator.git diff --git a/Makefile.PL b/Makefile.PL index 35e7dbe..3341280 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,9 +3,14 @@ package SQL::Translator; use strict; use ExtUtils::MakeMaker; +my @SIGN; +if ($ExtUtils::MakeMaker::VERSION >= 6.18) { + @SIGN = (SIGN => 1); +} + WriteMakefile( 'NAME' => __PACKAGE__, - 'SIGN' => 1, + @SIGN, 'VERSION_FROM' => 'lib/SQL/Translator.pm', 'EXE_FILES' => [ 'bin/sqlt-diagram', @@ -32,7 +37,7 @@ WriteMakefile( 'Test::Differences' => 0, 'Text::ParseWords' => 0, 'Text::RecordParser' => 0.02, - 'XML::Writer' => 0, + 'XML::Writer' => 0.500, 'XML::XPath' => 1.13, 'YAML' => 0, },