This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
More pathname portability checks.
[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',
0552bf3a
NC
9);
10WriteConstants(
11 NAME => 'GDBM_File',
12 DEFAULT_TYPE => 'IV',
13 BREAKOUT_AT => 8,
14 NAMES => [qw(GDBM_CACHESIZE GDBM_FAST GDBM_FASTMODE GDBM_INSERT GDBM_NEWDB
15 GDBM_NOLOCK GDBM_READER GDBM_REPLACE GDBM_WRCREAT
16 GDBM_WRITER)],
4ad3186e 17);