This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
More VC5-induced casting found by Nikola Knezevic.
[perl5.git] / ext / GDBM_File / Makefile.PL
CommitLineData
42793c05 1use ExtUtils::MakeMaker;
1cb0fb50 2use ExtUtils::Constant 0.11 'WriteConstants';
4ad3186e 3WriteMakefile(
1adb159c 4 NAME => 'GDBM_File',
4ad3186e 5 LIBS => ["-L/usr/local/lib -lgdbm", "-ldbm"],
69158f75 6 MAN3PODS => {}, # Pods will be built by installman.
4ad3186e 7 XSPROTOARG => '-noprototypes', # XXX remove later?
c07a80fd 8 VERSION_FROM => 'GDBM_File.pm',
ece2ffd9 9 realclean => {FILES=> 'const-c.inc const-xs.inc'},
0552bf3a
NC
10);
11WriteConstants(
12 NAME => 'GDBM_File',
13 DEFAULT_TYPE => 'IV',
14 BREAKOUT_AT => 8,
15 NAMES => [qw(GDBM_CACHESIZE GDBM_FAST GDBM_FASTMODE GDBM_INSERT GDBM_NEWDB
16 GDBM_NOLOCK GDBM_READER GDBM_REPLACE GDBM_WRCREAT
17 GDBM_WRITER)],
4ad3186e 18);