Re: [PATCH] Hash::Util::FieldHash
[p5sagit/p5-mst-13.2.git] / ext / Hash / Util / FieldHash / Makefile.PL
1 use 5.009004;
2 use ExtUtils::MakeMaker;
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4 # the contents of the Makefile that is written.
5 WriteMakefile(
6     NAME              => 'Hash::Util::FieldHash',
7     VERSION_FROM      => 'lib/Hash/Util/FieldHash.pm', # finds $VERSION
8     PREREQ_PM         => {}, # e.g., Module::Name => 1.1
9     (grep( /^PERL_CORE=1$/, @ARGV) ?  (MAN3PODS => {}) : ()),
10     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
11       (ABSTRACT_FROM  => 'lib/Hash/Util/FieldHash.pm', # retrieve abstract from module
12        AUTHOR         => 'Anno Siegel <anno@zrz.tu-berlin.de>') : ()),
13     LIBS              => [''], # e.g., '-lm'
14     DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
15         # Insert -I. if you add *.h files later:
16     INC               => '', # e.g., '-I/usr/include/other'
17         # Un-comment this if you add C files to link with later:
18     # OBJECT            => '$(O_FILES)', # link all the C files too
19     CCFLAGS             => '-Wuninitialized',
20 );