This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade to Cwd 2.16
[perl5.git] / ext / NDBM_File / Makefile.PL
CommitLineData
42793c05 1use ExtUtils::MakeMaker;
4ad3186e 2WriteMakefile(
1adb159c 3 NAME => 'NDBM_File',
4ad3186e 4 LIBS => ["-L/usr/local/lib -lndbm", "-ldbm -lucb"],
69158f75 5 MAN3PODS => {}, # Pods will be built by installman.
4ad3186e 6 XSPROTOARG => '-noprototypes', # XXX remove later?
c07a80fd 7 VERSION_FROM => 'NDBM_File.pm',
bf4acbe4 8 INC => ($^O eq "MacOS" ? "-i ::::db:include" : "")
4ad3186e 9);