1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-04-11 09:33:31 +02:00

initial import

This commit is contained in:
root
2010-02-09 21:25:29 +01:00
commit b2719dc011
1080 changed files with 41656 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
MD5 6d028255ed86e37211bbda0122c14483 arts_output-0.7.1.tar.gz 236839
RMD160 3784f2ef5f99c61123477ce03ee6bcb1ffdf3214 arts_output-0.7.1.tar.gz 236839
SHA256 912295b0509ed1befc4de8cf2c9e47ed0318963dabe244579452a2296660db96 arts_output-0.7.1.tar.gz 236839

View File

@@ -0,0 +1,3 @@
MD5 6d028255ed86e37211bbda0122c14483 arts_output-0.7.1.tar.gz 236839
RMD160 3784f2ef5f99c61123477ce03ee6bcb1ffdf3214 arts_output-0.7.1.tar.gz 236839
SHA256 912295b0509ed1befc4de8cf2c9e47ed0318963dabe244579452a2296660db96 arts_output-0.7.1.tar.gz 236839

View File

@@ -0,0 +1,15 @@
--- audio.c.old 2005-01-09 13:32:09.629042808 +0100
+++ audio.c 2005-01-09 13:32:59.646439008 +0100
@@ -86,8 +86,12 @@
timeout.tv_sec = 10;
timeout.tv_usec = 0;
+again:
sr = select(fd + 1, &rdfs, NULL, NULL, &timeout);
if (sr < 0) {
+ if(errno==EINTR) {
+ goto again;
+ }
g_message("wait_for_helper(): select failed: %s",
strerror(errno));
return -1;