# See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. use ExtUtils::MakeMaker; use Config; use English; # We needed perl >= 5.6.0 (use warnings...) but trying to do without #use 5.006; WriteMakefile( 'NAME' => 'W3C::LogValidator', 'DISTNAME' => 'W3C-LogValidator', 'AUTHOR' => 'Olivier Thereaux ', 'ABSTRACT' => 'The W3C Log Validator', 'VERSION' => '1.06', 'PREREQ_PM' => { 'Exporter' => 0, 'Sys::Hostname' => 0, 'LWP::UserAgent' => 0, 'URI::Escape' => 0, 'Config::General' => 0, 'File::Temp' => 0, 'DB_File' => 0, 'Mail::Sendmail' => 0, 'WebService::Validator::CSS::W3C' => 0 }, 'MAN3PODS' => { 'lib/W3C/LogValidator.pm' => 'blib/man3/W3C::LogValidator.3', 'lib/W3C/LogValidator/Basic.pm' => 'blib/man3/W3C::LogValidator::Basic.3', 'lib/W3C/LogValidator/Config.pm' => 'blib/man3/W3C::LogValidator::Config.3', 'lib/W3C/LogValidator/CSSValidator.pm' => 'blib/man3/W3C::LogValidator::CSSValidator.3', 'lib/W3C/LogValidator/HTMLValidator.pm' => 'blib/man3/W3C::LogValidator::HTMLValidator.3', 'lib/W3C/LogValidator/Output/HTML.pm' => 'blib/man3/W3C::LogValidator::Output::HTML.3', 'lib/W3C/LogValidator/Output/Mail.pm' => 'blib/man3/W3C::LogValidator::Output::Mail.3', 'lib/W3C/LogValidator/Output/Raw.pm' => 'blib/man3/W3C::LogValidator::Output::Raw.3', 'lib/W3C/LogValidator/SurveyEngine.pm' => 'blib/man3/W3C::LogValidator::SurveyEngine.3', }, 'EXE_FILES' => [ 'bin/logprocess.pl' ], 'dist' => { COMPRESS => 'gzip -9f', SUFFIX => '.gz' }, );