summaryrefslogtreecommitdiff
path: root/packages/libmrss/files/atom-changes.patch
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2007-04-07 12:30:48 +0000
committerHolger Freyther <zecke@selfish.org>2007-04-07 12:30:48 +0000
commit41b13b4beba086ce1eb00bc15a6c27b83f6b3fc5 (patch)
tree4ee13665ac7a344930c69a176805872a437f01cd /packages/libmrss/files/atom-changes.patch
parent8679a9849d2d635859f9207326cd1e94d982f454 (diff)
packages/libmrss: Move to 0.17.1 and drop all patches
The patches were applied upstream, move to the new version and update the checksums.
Diffstat (limited to 'packages/libmrss/files/atom-changes.patch')
-rw-r--r--packages/libmrss/files/atom-changes.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/packages/libmrss/files/atom-changes.patch b/packages/libmrss/files/atom-changes.patch
deleted file mode 100644
index 42f74d00f2..0000000000
--- a/packages/libmrss/files/atom-changes.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Make sure to always set a pubDate
-
-Index: libmrss-0.17/src/mrss_parser.c
-===================================================================
---- libmrss-0.17.orig/src/mrss_parser.c 2007-03-22 19:40:54.000000000 +0100
-+++ libmrss-0.17/src/mrss_parser.c 2007-03-22 19:44:15.000000000 +0100
-@@ -270,6 +270,10 @@
- && data->version == MRSS_VERSION_ATOM_1_0)
- item->pubDate =
- __mrss_atom_prepare_date (nxmle_get_string (cur, NULL));
-+ else if (!strcmp(cur->value, "updated" ) && !item->pubDate
-+ && data->version == MRSS_VERSION_ATOM_1_0)
-+ item->pubDate =
-+ __mrss_atom_prepare_date (nxmle_get_string (cur, NULL));
-
- /* issued -> pubDate (Atom 0.3) */
- else if (!strcmp (cur->value, "issued") && !item->pubDate)