CVS patchset: 3181
CVS date: 1999/07/19 20:17:59
This commit is contained in:
gafton 1999-07-19 20:17:59 +00:00
parent c4e615007f
commit b499fad538
1 changed files with 5 additions and 4 deletions

View File

@ -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' },
);