]> git.imager.perl.org - imager.git/blame - DynTest/Makefile.PL
handle failure to clone the log filehandle when cloning the Imager context
[imager.git] / DynTest / Makefile.PL
CommitLineData
52db4f96
TC
1#!perl -w
2use strict;
92bda632 3use ExtUtils::MakeMaker;
92bda632
TC
4
5my %opts =
6 (
7 NAME => 'Imager::Filter::DynTest',
8 VERSION_FROM => 'DynTest.pm',
9 OBJECT => 'DynTest.o linstretch.o',
10 INC => '-I..'
11 );
c52cbef2
TC
12my $MM_ver = eval $ExtUtils::MakeMaker::VERSION;
13if ($MM_ver > 6.06) {
5b480b14 14 $opts{AUTHOR} = 'Tony Cook <tonyc@cpan.org>';
92bda632
TC
15 $opts{ABSTRACT} = 'Demo Imager filter extension';
16}
17
18WriteMakefile(%opts);
19
20