Finally fixed it up for the new version of perl.
authorgafton <devnull@localhost>
Wed, 28 Jul 1999 00:56:34 +0000 (00:56 +0000)
committergafton <devnull@localhost>
Wed, 28 Jul 1999 00:56:34 +0000 (00:56 +0000)
CVS patchset: 3207
CVS date: 1999/07/28 00:56:34

perl/Makefile.PL

index f070fbf..0caf7df 100644 (file)
@@ -4,15 +4,13 @@ use ExtUtils::MakeMaker;
 
 WriteMakefile(
              'NAME'    => 'rpm',
-             'OBJECT'  => 'rpm.o constant.o /usr/lib/libdb1.a',
-             'VERSION_FROM' => 'rpm.pm', # finds $VERSION
-             'LIBS'    => ['-lrpm -lz -ldb1'],   # e.g., '-lm' 
+             'OBJECT'  => 'rpm.o constant.o',
+             'VERSION_FROM' => 'rpm.pm',               # finds $VERSION
+             'LIBS'    => ['-lrpm -lz -ldb1'],         # e.g., '-lm' 
              'CCFLAGS' => '-Dbool=char -DHAS_BOOL',
              'OPTIMIZE'=> '-g',
              'DEFINE'  => '-Wall',
-             'INC'     => '-I/usr/include/rpm',     # e.g., '-I/usr/include/other'
+             'INC'     => '-I/usr/include/rpm',        # e.g., '-I/usr/include/other'
              'depend'  => { 'rpm.c' => 'transaction.xs header.xs db.xs' },
 );
 
-# $self->{'MAP_PRELIBS'} = ['-lnsl -lndbm -lgdbm -ldb1 -ldl -lm -lc -lposix -lcrypt -lrpm -lz'];
-