]> git.imager.perl.org - imager.git/blob - Mandelbrot/Makefile.PL
hopefully avoid coverity complaining about a float vs int comparison
[imager.git] / Mandelbrot / Makefile.PL
1 #!perl -w
2 use strict;
3 use ExtUtils::MakeMaker;
4
5 my %opts = 
6   (
7    NAME => 'Imager::Filter::Mandelbrot',
8    VERSION_FROM => 'Mandelbrot.pm',
9    OBJECT => 'Mandelbrot.o mandel.o',
10    INC => '-I..'
11   );
12 my $MM_ver = eval $ExtUtils::MakeMaker::VERSION;
13 if ($MM_ver > 6.06) {
14   $opts{AUTHOR} = 'Tony Cook <tonyc@cpan.org>';
15   $opts{ABSTRACT} = 'Mandelbrot Imager filter extension';
16 }
17
18 WriteMakefile(%opts);
19
20