Fixed a possible infinite loop problem where the primary key accessor calls itself...
[dbsrgits/SQL-Translator.git] / Makefile.PL
index ce56a84..a9a00ff 100644 (file)
@@ -3,11 +3,18 @@ package SQL::Translator;
 use strict;
 use ExtUtils::MakeMaker;
 
+my @SIGN;
+if ($ExtUtils::MakeMaker::VERSION >= 6.18) {
+    @SIGN = (SIGN => 1);
+}
+
 WriteMakefile(
     'NAME'         => __PACKAGE__,
+    @SIGN,
     'VERSION_FROM' => 'lib/SQL/Translator.pm',
     'EXE_FILES'    => [
         'bin/sqlt-diagram',
+        'bin/sqlt-diff',
         'bin/sqlt-dumper',
         'bin/sqlt-graph',
         'bin/sqlt',
@@ -23,7 +30,7 @@ WriteMakefile(
         'IO::Scalar'              => 0,
         'Parse::RecDescent'       => 1.94,
         'Pod::Usage'              => 0,
-        'Spreadsheet::ParseExcel' => 0,
+        'Spreadsheet::ParseExcel' => 0.2602,
         'Template'                => 2.10,
         'Test::More'              => 0,
         'Test::Exception'         => 0,