[pulseaudio-commits] src/daemon
Tanu Kaskinen
tanuk at kemper.freedesktop.org
Sun Jan 26 06:44:02 PST 2014
src/daemon/caps.c | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit 97c27202ca71f5f3f6792535eef1e26f5369e9cc
Author: Tanu Kaskinen <tanu.kaskinen at linux.intel.com>
Date: Sun Jan 26 16:41:29 2014 +0200
caps: Don't require --without-caps on FreeBSD
BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=72580
diff --git a/src/daemon/caps.c b/src/daemon/caps.c
index 9540f06..669d6e2 100644
--- a/src/daemon/caps.c
+++ b/src/daemon/caps.c
@@ -86,6 +86,9 @@ void pa_drop_caps(void) {
pa_assert_se(cap_clear(caps) == 0);
pa_assert_se(cap_set_proc(caps) == 0);
pa_assert_se(cap_free(caps) == 0);
+#elif defined(__FreeBSD__)
+ /* FreeBSD doesn't have this functionality, even though sys/capability.h is
+ * available. See https://bugs.freedesktop.org/show_bug.cgi?id=73967 */
#else
#error "Don't know how to do capabilities on your system. Please send a patch."
#endif /* __linux__ */
More information about the pulseaudio-commits
mailing list