aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--URPM.xs3
2 files changed, 2 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index e0720cd..cea8523 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- fix compiling with rpm-4.11
+
Version 3.50 - 14 September 2014
- make it compatible with rpm-4.12.0
diff --git a/URPM.xs b/URPM.xs
index 5fade80..0bd209d 100644
--- a/URPM.xs
+++ b/URPM.xs
@@ -519,9 +519,7 @@ return_list_tag_modifier(Header header, int32_t tag_name) {
if (list[i] & RPMFILE_NOREPLACE) *s++ = 'n';
if (list[i] & RPMFILE_SPECFILE) *s++ = 'S';
if (list[i] & RPMFILE_README) *s++ = 'R';
- if (list[i] & RPMFILE_EXCLUDE) *s++ = 'e';
if (list[i] & RPMFILE_ICON) *s++ = 'i';
- if (list[i] & RPMFILE_UNPATCHED) *s++ = 'u';
if (list[i] & RPMFILE_PUBKEY) *s++ = 'p';
break;
default:
@@ -1151,7 +1149,6 @@ static void drop_tags(Header *h) {
headerDel(*h, RPMTAG_ICON);
headerDel(*h, RPMTAG_GIF);
- headerDel(*h, RPMTAG_EXCLUDE);
headerDel(*h, RPMTAG_EXCLUSIVE);
headerDel(*h, RPMTAG_COOKIE);
headerDel(*h, RPMTAG_VERIFYSCRIPT);