From 08d33b92e7498f769fc7967ef74e31c08b59b200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Per=20=C3=98yvind=20Karlsen?= Date: Sun, 26 Jul 2009 06:23:12 +0000 Subject: * clean out compatibility code for older rpm versions that's not really supported anymore anyways and move out as much as possible rpm5.org compatibility code out of URPM into new rpm46compat.h @ rpm5.org --- Makefile.PL | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL index 21823cb..9cda782 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -50,12 +50,14 @@ 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 - push @rpmflags, "-DRPM_VERSION_CODE=$hversion"; + $ldflags = `pkg-config --libs rpm`; } my $ccflags = join(' ', '-Wall -fno-strict-aliasing', @rpmflags); @@ -68,7 +70,7 @@ WriteMakefile( }, CCFLAGS => $ccflags, VERSION_FROM => 'URPM.pm', - LIBS => [ '-lrpm -lrpmio -lrpmbuild' ], + LIBS => [ $ldflags ], INC => '-I/usr/include/rpm', dist => { COMPRESS => "bzip2", SUFFIX => ".bz2" }, realclean => { FILES => "t/RPMS/noarch/*" }, -- cgit v1.2.1