blob: 4671d2b7162aa623607396fdbf76ab02f9639edb (
plain)
1
2
3
4
5
6
7
8
9
|
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'NDBM_File',
#LIBS => ["-L/usr/local/lib -lndbm", "-ldbm -lucb"],
MAN3PODS => {}, # Pods will be built by installman.
XSPROTOARG => '-noprototypes', # XXX remove later?
VERSION_FROM => 'NDBM_File.pm',
INC => ($^O eq "MacOS" ? "-i ::::db:include" : "")
);
|