]> git.imager.perl.org - imager.git/blame_incremental - ICO/Makefile.PL
remove a pointless NULL check from i_flipxy()
[imager.git] / ICO / Makefile.PL
... / ...
CommitLineData
1#!perl -w
2use strict;
3use ExtUtils::MakeMaker;
4
5my %opts =
6 (
7 NAME => 'Imager::File::ICO',
8 VERSION_FROM => 'ICO.pm',
9 OBJECT => 'ICO.o msicon.o imicon.o',
10 INC => '-I..',
11 clean => { FILES => 'testout' },
12 );
13my $MM_ver = eval $ExtUtils::MakeMaker::VERSION;
14if ($MM_ver > 6.06) {
15 $opts{AUTHOR} = 'Tony Cook <tonyc@cpan.org>';
16 $opts{ABSTRACT} = 'Icon Image file support';
17}
18
19WriteMakefile(%opts);
20
21