summaryrefslogtreecommitdiffstats
path: root/contrib/perl5/ext/DB_File/Makefile.PL
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/perl5/ext/DB_File/Makefile.PL')
-rw-r--r--contrib/perl5/ext/DB_File/Makefile.PL29
1 files changed, 0 insertions, 29 deletions
diff --git a/contrib/perl5/ext/DB_File/Makefile.PL b/contrib/perl5/ext/DB_File/Makefile.PL
deleted file mode 100644
index 0414160..0000000
--- a/contrib/perl5/ext/DB_File/Makefile.PL
+++ /dev/null
@@ -1,29 +0,0 @@
-use ExtUtils::MakeMaker 5.16 ;
-use Config ;
-
-# OS2 is a special case, so check for it now.
-my $OS2 = "-DOS2" if $Config{'osname'} eq 'os2' ;
-
-my $LIB = "-ldb" ;
-# so is win32
-$LIB = "-llibdb" if $^O eq 'MSWin32' ;
-
-WriteMakefile(
- NAME => 'DB_File',
- LIBS => ["-L/usr/local/lib $LIB"],
- MAN3PODS => {}, # Pods will be built by installman.
- #INC => '-I/usr/local/include',
- VERSION_FROM => 'DB_File.pm',
- OBJECT => 'version$(OBJ_EXT) DB_File$(OBJ_EXT)',
- XSPROTOARG => '-noprototypes',
- DEFINE => $OS2 || "",
- INC => ($^O eq "MacOS" ? "-i ::::db:include" : "")
- );
-
-sub MY::postamble {
- '
-version$(OBJ_EXT): version.c
-
-' ;
-}
-
OpenPOWER on IntegriCloud