summaryrefslogtreecommitdiff
path: root/perl
diff options
context:
space:
mode:
authorgafton <devnull@localhost>1999-07-19 20:17:59 +0000
committergafton <devnull@localhost>1999-07-19 20:17:59 +0000
commitb499fad53862605683cda2a897ba953406e178e3 (patch)
treedb8d7871ba380f45f5088160997772f78e9a8081 /perl
parentc4e615007f983bb065f86a58b15ba792eeba51d3 (diff)
downloadrpm-b499fad53862605683cda2a897ba953406e178e3.tar.gz
rpm-b499fad53862605683cda2a897ba953406e178e3.tar.bz2
rpm-b499fad53862605683cda2a897ba953406e178e3.zip
Updated
CVS patchset: 3181 CVS date: 1999/07/19 20:17:59
Diffstat (limited to 'perl')
-rw-r--r--perl/Makefile.PL9
1 files changed, 5 insertions, 4 deletions
diff --git a/perl/Makefile.PL b/perl/Makefile.PL
index 7c9fd4df5..befc21673 100644
--- a/perl/Makefile.PL
+++ b/perl/Makefile.PL
@@ -3,13 +3,14 @@ use ExtUtils::MakeMaker;
# the contents of the Makefile that is written.
WriteMakefile(
+ #'LD' => 'gcc -shared -Wl,-Bsymbolic',
'NAME' => 'rpm',
- 'OBJECT' => 'rpm.o constant.o',
+ 'OBJECT' => 'rpm.o constant.o /usr/lib/libdb1.a',
'VERSION_FROM' => 'rpm.pm', # finds $VERSION
- 'LIBS' => ['-lrpm -lz -ldb1'], # e.g., '-lm'
+ 'LIBS' => ['-lrpm -lz'], # e.g., '-lm'
'CCFLAGS' => '-Dbool=char -DHAS_BOOL',
- 'OPTIMIZE'=> '-Wall -g',
- #'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
+ 'OPTIMIZE'=> '-g',
+ 'DEFINE' => '-Wall',
'INC' => '-I/usr/include/rpm', # e.g., '-I/usr/include/other'
'depend' => { 'rpm.c' => 'transaction.xs header.xs db.xs' },
);