summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-01-23 11:40:34 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2018-01-23 11:41:05 +0100
commit17ed34d641046efcfedff475eb6dc7af409e33cb (patch)
treeac0e4a76e503f039a72bb8ab7bc2788a38c31fad /media-libs/libffado/files/libffado-2.3.0-include-signal.patch
parentprofiles: Mask dev-libs/libindicate-qt for removal (diff)
downloadgentoo-17ed34d641046efcfedff475eb6dc7af409e33cb.tar.gz
gentoo-17ed34d641046efcfedff475eb6dc7af409e33cb.tar.bz2
gentoo-17ed34d641046efcfedff475eb6dc7af409e33cb.zip
media-libs/libffado: Drop old
Closes: https://bugs.gentoo.org/642530 Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'media-libs/libffado/files/libffado-2.3.0-include-signal.patch')
-rw-r--r--media-libs/libffado/files/libffado-2.3.0-include-signal.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/media-libs/libffado/files/libffado-2.3.0-include-signal.patch b/media-libs/libffado/files/libffado-2.3.0-include-signal.patch
deleted file mode 100644
index 4eabf12eef05..000000000000
--- a/media-libs/libffado/files/libffado-2.3.0-include-signal.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-------------------------------------------------------------------------
-r2706 | jwoithe | 2017-08-08 08:39:56 +0900 (Tue, 08 Aug 2017) | 11 lines
-
-PosixMessageQueue: ensure visibility of SIGEV_THREAD declaration.
-
-Orcan Ogetbil reported on the ffado-devel list that during the recent Fedora
-rebuild effort FFADO 2.3.0 failed to compile because SIGEV_THREAD was
-undeclared. Jano Svitok made the plausible suggestion that signal.h needs
-to be included explicitly under newer glibc versions. This trivial patch
-implements this. As of this commit it has not been verified that the
-problem is fixed with this addition. However, there's no harm done by the
-change in general and conceptionally the change is consistent with the
-source file's content given the use of signal-related functionality.
-
-
-Index: src/libutil/PosixMessageQueue.cpp
-===================================================================
---- a/src/libutil/PosixMessageQueue.cpp (revision 2705)
-+++ b/src/libutil/PosixMessageQueue.cpp (revision 2706)
-@@ -30,6 +30,7 @@
- #include <errno.h>
- #include <string.h>
- #include <poll.h>
-+#include <signal.h>
-
- #define MQ_INVALID_ID ((mqd_t) -1)
- // one second
-
-------------------------------------------------------------------------