diff --git a/Changelog b/Changelog index 0328ca4..16d32d8 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,8 @@ + 2.36 + - oh my goodness! For some unknown reason I deleted the + Makefile.PL before packaging. Dammit. So, here it is + again. + 2.35 - 'make test' failed under perl 5.5 because some prequisite modules were not found. So now I added all requirements diff --git a/Makefile.PL b/Makefile.PL index 1796d91..2f3442f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,7 +1,7 @@ # # Makefile.PL - build file for Config::General # -# Copyright (c) 2000-2006 Thomas Linden . +# Copyright (c) 2000-2007 Thomas Linden . # All Rights Reserved. Std. disclaimer applies. # Artificial License, same as perl itself. Have fun. # @@ -9,8 +9,16 @@ use ExtUtils::MakeMaker; WriteMakefile( - 'NAME' => 'Config::General', - 'VERSION_FROM' => 'General.pm', # finds $VERSION - 'clean' => { FILES => 't/*.out t/test.cfg *~ */*~' }, + 'NAME' => 'Config::General', + 'VERSION_FROM' => 'General.pm', + 'clean' => { + FILES => 't/*.out t/test.cfg *~ */*~' + }, + 'PREREQ_PM' => { + 'IO::File' => 0, + 'FileHandle' => 0, + 'File::Spec::Functions' => 0, + 'File::Glob' => 0 + } );