parent
9471c4854b
commit
fad81c49ae
@ -1 +1 @@
|
||||
vlc-1.1.6.tar.bz2
|
||||
vlc-1.1.7.tar.bz2
|
||||
|
@ -1 +1 @@
|
||||
c47f3ebc886f2aff8c95b98c564d1759 vlc-1.1.6.tar.bz2
|
||||
932ce1fa4afa54b56ac0ccc0655667b6 vlc-1.1.7.tar.bz2
|
||||
|
@ -1,31 +0,0 @@
|
||||
commit 942ab6c31026a84e4c5503cb8e68a5135dfc2f2b
|
||||
Author: Pierre Ynard <linkfanel@yahoo.fr>
|
||||
Date: Sun Jan 23 18:19:05 2011 +0100
|
||||
|
||||
lirc: build fix
|
||||
|
||||
diff --git a/modules/control/lirc.c b/modules/control/lirc.c
|
||||
index aee33c3..e8c4780 100644
|
||||
--- a/modules/control/lirc.c
|
||||
+++ b/modules/control/lirc.c
|
||||
@@ -25,6 +25,7 @@
|
||||
* Preamble
|
||||
*****************************************************************************/
|
||||
|
||||
+#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
@@ -154,10 +155,12 @@
|
||||
/* Wait for data */
|
||||
struct pollfd ufd = { .fd = p_sys->i_fd, .events = POLLIN, .revents = 0 };
|
||||
if( poll( &ufd, 1, -1 ) == -1 )
|
||||
+ {
|
||||
if( errno == EINTR )
|
||||
continue;
|
||||
else
|
||||
break;
|
||||
+ }
|
||||
|
||||
/* Process */
|
||||
int canc = vlc_savecancel();
|
Loading…
Reference in new issue