diff options
author | Bernhard Froehlich <decke@FreeBSD.org> | 2013-07-26 17:11:25 +0000 |
---|---|---|
committer | Bernhard Froehlich <decke@FreeBSD.org> | 2013-07-26 17:11:25 +0000 |
commit | 80f0ddf7dc2359e8d122f49f61da682e258f91bd (patch) | |
tree | f364bfbddb5b2555c3c06ae04ea9a351e146cd4f /multimedia/tvheadend/files | |
parent | ec8233bfa09776fd7fefe78d42cbef1098a8a592 (diff) | |
download | ports-80f0ddf7dc2359e8d122f49f61da682e258f91bd.tar.gz ports-80f0ddf7dc2359e8d122f49f61da682e258f91bd.zip |
- Update to 3.4.0.20130726.3 (8a8c1a8712)
- This update includes a fix for the kqueue implementation which also fixes scanning
Thanks to: nox, hselasky
Notes
Notes:
svn path=/head/; revision=323737
Diffstat (limited to 'multimedia/tvheadend/files')
-rw-r--r-- | multimedia/tvheadend/files/patch-src__tvhpoll.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/multimedia/tvheadend/files/patch-src__tvhpoll.c b/multimedia/tvheadend/files/patch-src__tvhpoll.c deleted file mode 100644 index fd279ef982f0..000000000000 --- a/multimedia/tvheadend/files/patch-src__tvhpoll.c +++ /dev/null @@ -1,24 +0,0 @@ ---- src/tvhpoll.c.orig 2013-07-14 13:20:52.000000000 +0200 -+++ src/tvhpoll.c 2013-07-14 16:54:00.375898773 +0200 -@@ -121,10 +121,10 @@ - tvhpoll_alloc(tp, num); - for (i = 0; i < num; i++) { - if (evs[i].events & TVHPOLL_OUT){ -- EV_SET(tp->ev+i, evs[i].fd, EVFILT_WRITE, EV_ADD | EV_ENABLE, 0, 0, (void*)evs[i].data.u64); -+ EV_SET(tp->ev+i, evs[i].fd, EVFILT_WRITE, EV_ADD | EV_ENABLE, 0, 0, (intptr_t*)evs[i].data.u64); - } - if (evs[i].events & TVHPOLL_IN){ -- EV_SET(tp->ev+i, evs[i].fd, EVFILT_READ, EV_ADD | EV_ENABLE, 0, 0, (void*)evs[i].data.u64); -+ EV_SET(tp->ev+i, evs[i].fd, EVFILT_READ, EV_ADD | EV_ENABLE, 0, 0, (intptr_t*)evs[i].data.u64); - } - } - return kevent(tp->fd, tp->ev, num, NULL, 0, NULL); -@@ -177,7 +177,7 @@ - for (i = 0; i < nfds; i++) { - evs[i].fd = tp->ev[i].ident; - evs[i].events = 0; -- evs[i].data.u64 = (uint64_t)tp->ev[i].udata; -+ evs[i].data.u64 = (intptr_t)tp->ev[i].udata; - if (tp->ev[i].filter & EVFILT_WRITE) evs[i].events |= TVHPOLL_OUT; - if (tp->ev[i].filter & EVFILT_READ) evs[i].events |= TVHPOLL_IN; - if (tp->ev[i].flags & EV_ERROR) evs[i].events |= TVHPOLL_ERR; |