Removed references to GIF
[rrdtool.git] / bindings / perl-shared / ntmake.pl
1 use ExtUtils::MakeMaker;
2 use Config;
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4 # the contents of the Makefile that is written.
5 # This file is current set to compile with ActiveState 5xx builds
6 # (perl 5.005_03). Hopefully this lowest common denominator
7 # approach will work with newer ActiveState builds (i.e. 6xx).
8 WriteMakefile(
9     'NAME'      => 'RRDs',
10     'VERSION_FROM' => 'RRDs.pm',
11     'DEFINE'       => "-DPERLPATCHLEVEL=$Config{PATCHLEVEL}",
12    'INC'        => '-I../../src/ -I../../libraries/freetype-2.0.5/include -I ../../libraries/libart_lgpl-2.3.7 -I ../../libraries/zlib-1.1.4 -I ../../libraries/libpng-1.2.0',    
13 # change this path to refer to your libc.lib
14     'MYEXTLIB'  => 'c:/vc98/lib/libc.lib ../../src/release/rrd.lib ../../libraries/libart_lgpl-2.3.7/release/libart.lib ../../libraries/zlib-1.1.4/release/zlib.lib ../../libraries/libpng-1.2.0\release\png.lib ../../libraries/freetype-2.0.5/release/freetype.lib', 
15     'realclean'    => {FILES => 't/demo?.rrd t/demo?.png' },
16     ($] ge '5.005') ? (
17         'AUTHOR' => 'Tobias Oetiker (oetiker@ee.ethz.ch)',
18         'ABSTRACT' => 'Round Robin Database Tool',
19     ) : ()
20
21
22 );