aboutsummaryrefslogtreecommitdiffstats
path: root/URPM.xs
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-08-09 14:58:06 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-08-09 14:58:06 +0000
commit5681246da10811a2d866671e65ca5b13eb8e9e74 (patch)
tree0cd784339e742f130a20a9b5cea8a78a9b234195 /URPM.xs
parent33b8b51022eb2ee76dd6089d18fca2117b310f88 (diff)
downloadperl-URPM-5681246da10811a2d866671e65ca5b13eb8e9e74.tar
perl-URPM-5681246da10811a2d866671e65ca5b13eb8e9e74.tar.gz
perl-URPM-5681246da10811a2d866671e65ca5b13eb8e9e74.tar.bz2
perl-URPM-5681246da10811a2d866671e65ca5b13eb8e9e74.tar.xz
perl-URPM-5681246da10811a2d866671e65ca5b13eb8e9e74.zip
compilation fixes on rpm < 4.4.8
Diffstat (limited to 'URPM.xs')
-rw-r--r--URPM.xs12
1 files changed, 10 insertions, 2 deletions
diff --git a/URPM.xs b/URPM.xs
index 46873b4..500d719 100644
--- a/URPM.xs
+++ b/URPM.xs
@@ -3796,7 +3796,7 @@ Urpm_platformscore(platform)
RETVAL=rpmPlatformScore(platform, NULL, 0);
#else
croak("platformscore() is availlable only since rpm 4.4.8");
- RETVAL=0
+ RETVAL=0;
#endif
OUTPUT:
RETVAL
@@ -3838,7 +3838,15 @@ Urpm_spec2srcheader(specfile)
#define SPEC_FORCE 1
/* check what it does */
#define SPEC_VERIFY 0
- if (!parseSpec(ts, specfile, "/", 0, NULL, NULL, SPEC_ANYARCH, SPEC_FORCE, SPEC_VERIFY)) {
+ if (!parseSpec(ts, specfile, "/"
+#ifndef RPM_448
+ , NULL
+#endif
+ , 0, NULL, NULL, SPEC_ANYARCH, SPEC_FORCE
+#ifdef RPM_448
+ , SPEC_VERIFY
+#endif
+ )) {
const char *zero = "";
SV *sv_pkg;
spec = rpmtsSetSpec(ts, NULL);