blob: f67e6cd6425d9efc5ec76cb2c0e1e9e29cce0a9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'DB_File',
LIBS => ["-L/usr/local/lib -ldb"],
MAN3PODS => ' ', # Pods will be built by installman.
#INC => '-I/usr/local/include',
VERSION => 1.01,
XSPROTOARG => '-noprototypes', # XXX remove later?
);
|