Fixed documentation in template.
[dbsrgits/SQL-Translator.git] / Makefile.PL
index 4455299..f2469e9 100644 (file)
@@ -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',
@@ -16,6 +21,7 @@ WriteMakefile(
     ],
     'PREREQ_PM'    => {
         'Class::Base'             => 0,
+        'Class::MakeMethods'      => 0,
         'File::Basename'          => 0,
         'File::Spec'              => 0,
         'GD'                      => 0,
@@ -25,14 +31,14 @@ 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,
         'Test::Differences'       => 0,
         'Text::ParseWords'        => 0,
         'Text::RecordParser'      => 0.02,
-        'XML::Writer'             => 0,
+        'XML::Writer'             => 0.500,
         'XML::XPath'              => 1.13,
         'YAML'                    => 0,
     },