This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Bump VERSIONs in all non-dual-lived modules that have changed
[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',
30afd0dc 5 LIBS => ["-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'},
a5d81eb5 10 XS_VERSION => eval MM->parse_version('GDBM_File.pm'), #silence warnings if we are a dev release
0552bf3a
NC
11);
12WriteConstants(
13 NAME => 'GDBM_File',
14 DEFAULT_TYPE => 'IV',
15 BREAKOUT_AT => 8,
6c8d78fb
HS
16 NAMES => [qw(GDBM_CACHESIZE GDBM_CENTFREE GDBM_COALESCEBLKS
17 GDBM_FAST GDBM_FASTMODE GDBM_INSERT GDBM_NEWDB GDBM_NOLOCK
18 GDBM_OPENMASK GDBM_READER GDBM_REPLACE GDBM_SYNC GDBM_SYNCMODE
19 GDBM_WRCREAT GDBM_WRITER)],
4ad3186e 20);