The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use ExtUtils::MakeMaker;

use Apache::TestMM  qw(test clean);

Apache::TestMM::filter_args();
Apache::TestMM::generate_script('t/TEST');

WriteMakefile(
    NAME                => 'Apache2::FixupLastModified',
    AUTHOR              => 'dorian taylor <dorian@cpan.org>',
    VERSION_FROM        => 'lib/Apache2/FixupLastModified.pm',
    ABSTRACT_FROM       => 'lib/Apache2/FixupLastModified.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'mod_perl2'         => 1.999023,
        'Apache::Test'      => 1.24,
        'Apache2::DebugLog' => 0.03,
        'Test::More'        => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Apache2-FixupLastModified-* t/TEST' },
);