aboutsummaryrefslogtreecommitdiffstats
path: root/URPM.xs
diff options
context:
space:
mode:
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);