aboutsummaryrefslogtreecommitdiffstats
path: root/main/tvheadend/sys-queue.patch
diff options
context:
space:
mode:
authorCarlo Landmeter <clandmeter@gmail.com>2015-05-02 11:03:00 +0200
committerCarlo Landmeter <clandmeter@gmail.com>2015-05-02 11:03:38 +0200
commit4d521660193f6bd246543e0693785e33c3b495d8 (patch)
treed84c37cef41ac74604412af6632099f6642872a6 /main/tvheadend/sys-queue.patch
parentc981623a91e2d7713086882486935db8fdaba87f (diff)
downloadaports-4d521660193f6bd246543e0693785e33c3b495d8.tar.bz2
aports-4d521660193f6bd246543e0693785e33c3b495d8.tar.xz
main/tvheadend: move to main and upgrade to latest snapshot
Diffstat (limited to 'main/tvheadend/sys-queue.patch')
-rw-r--r--main/tvheadend/sys-queue.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/main/tvheadend/sys-queue.patch b/main/tvheadend/sys-queue.patch
deleted file mode 100644
index 0cec28c7bc..0000000000
--- a/main/tvheadend/sys-queue.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- ./src/queue.h.orig
-+++ ./src/queue.h
-@@ -86,12 +86,14 @@
- * Some extra functions for LIST manipulation
- */
-
-+#ifndef LIST_MOVE
- #define LIST_MOVE(newhead, oldhead, field) do { \
- if((oldhead)->lh_first) { \
- (oldhead)->lh_first->field.le_prev = &(newhead)->lh_first; \
- } \
- (newhead)->lh_first = (oldhead)->lh_first; \
- } while (0)
-+#endif
-
- #define LIST_INSERT_SORTED(head, elm, field, cmpfunc) do { \
- if(LIST_EMPTY(head)) { \