summaryrefslogtreecommitdiffstats
path: root/media-plugins/xmms-arts/files/xmms-arts-0.7.1-eintr.patch
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@suren.me>2019-09-02 05:23:45 +0200
committerSuren A. Chilingaryan <csa@suren.me>2019-09-02 05:23:45 +0200
commit576b6208d6defe240bfa2477d6dd19f1ed83bfaf (patch)
tree7d54883f16cccc4cbd414398d7fec3c437b36b49 /media-plugins/xmms-arts/files/xmms-arts-0.7.1-eintr.patch
parentfdd6b67a78a966f6a2131de8fe0e539316511083 (diff)
downloaddarklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.tar.gz
darklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.tar.bz2
darklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.tar.xz
darklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.zip
Cleaned most of outdated stuff
Diffstat (limited to 'media-plugins/xmms-arts/files/xmms-arts-0.7.1-eintr.patch')
-rw-r--r--media-plugins/xmms-arts/files/xmms-arts-0.7.1-eintr.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/media-plugins/xmms-arts/files/xmms-arts-0.7.1-eintr.patch b/media-plugins/xmms-arts/files/xmms-arts-0.7.1-eintr.patch
deleted file mode 100644
index 96a28d5..0000000
--- a/media-plugins/xmms-arts/files/xmms-arts-0.7.1-eintr.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- 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;