This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update to version 1.02
[perl5.git] / ext / DB_File / Makefile.PL
CommitLineData
88108326 1use ExtUtils::MakeMaker 5.16 ;
2use Config ;
3
4# OS2 is a special case, so check for it now.
5my $OS2 = "-DOS2" if $Config{'osname'} eq 'os2' ;
8e07c86e
AD
6
7WriteMakefile(
88108326 8 NAME => 'DB_File',
9 LIBS => ["-L/usr/local/lib -ldb"],
10 MAN3PODS => ' ', # Pods will be built by installman.
11 #INC => '-I/usr/local/include',
c07a80fd 12 VERSION_FROM => 'DB_File.pm',
88108326 13 XSPROTOARG => '-noprototypes',
14 DEFINE => "$OS2",
15 );
8e07c86e 16