From 60bb91532ae971221aae22da36dd6f981936a63e Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Mon, 27 Jul 2009 12:42:15 +0000 Subject: use pkg-config for rpm 4.x too --- Makefile.PL | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 7fbd17b..cb753de 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -50,14 +50,11 @@ ChangeLog: } my @rpmflags; -my $ldflags; if ($hversion ge hexversion("4.4.90") && $hversion lt hexversion("4.7")) { # rpm.org version push @rpmflags, "-DRPM_ORG"; - $ldflags = '-lrpm -lrpmio -lrpmbuild'; } else { # rpm5.org version - $ldflags = `pkg-config --libs rpm`; } my $ccflags = join(' ', '-Wall -Wextra -fno-strict-aliasing', @rpmflags); @@ -70,7 +67,7 @@ WriteMakefile( }, CCFLAGS => $ccflags, VERSION_FROM => 'URPM.pm', - LIBS => [ $ldflags ], + LIBS => [ `pkg-config --libs rpm` ], INC => '-I/usr/include/rpm', dist => { COMPRESS => "bzip2", SUFFIX => ".bz2" }, realclean => { FILES => "t/RPMS/noarch/*" }, -- cgit v1.2.1