From: Ken Youens-Clark Date: Sat, 3 May 2003 04:15:56 +0000 (+0000) Subject: Added the requirement of Parse::RecDescent 1.94 or later, added X-Git-Tag: v0.02~155 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b5f8a3c82299a44af5033f4d7c8af72dc0680171;p=dbsrgits%2FSQL-Translator.git Added the requirement of Parse::RecDescent 1.94 or later, added "auto-graph.pl" to the EXE_FILES. --- diff --git a/Makefile.PL b/Makefile.PL index 77c378a..0ce062a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,6 +8,7 @@ WriteMakefile( 'VERSION' => 0.01, 'EXE_FILES' => [ 'bin/auto-dia.pl', + 'bin/auto-graph.pl', 'bin/sql_translator.pl', ], 'PREREQ_PM' => { @@ -17,7 +18,7 @@ WriteMakefile( 'GD' => 0, 'GraphViz' => 0, 'IO::Dir' => 0, - 'Parse::RecDescent' => 0, # Is a particular version needed? + 'Parse::RecDescent' => 1.94, 'Pod::Usage' => 0, 'Spreadsheet::ParseExcel' => 0, 'Text::ParseWords' => 0,