diff options
author | maya <maya@pkgsrc.org> | 2018-06-19 02:25:58 +0000 |
---|---|---|
committer | maya <maya@pkgsrc.org> | 2018-06-19 02:25:58 +0000 |
commit | d87eadc63c7164204f347cf2ec08fbe33cd96bee (patch) | |
tree | c187dfca0f83a25b3ef090b021d62a8c2de44d42 /audio | |
parent | fac422c9fc0cdeab494708f968ff6529d939d4b9 (diff) | |
download | pkgsrc-d87eadc63c7164204f347cf2ec08fbe33cd96bee.tar.gz |
pulseaudio: fix build on FreeBSD11. Include missing headers.
From Santhosh Raju in PR pkg/53381
Diffstat (limited to 'audio')
-rw-r--r-- | audio/pulseaudio/distinfo | 3 | ||||
-rw-r--r-- | audio/pulseaudio/patches/patch-src_modules_raop_raop-client.h | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/audio/pulseaudio/distinfo b/audio/pulseaudio/distinfo index e783c2c3479..72f0d194f89 100644 --- a/audio/pulseaudio/distinfo +++ b/audio/pulseaudio/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.64 2018/05/22 18:16:42 maya Exp $ +$NetBSD: distinfo,v 1.65 2018/06/19 02:25:58 maya Exp $ SHA1 (pulseaudio-11.1.tar.xz) = 53bde72b6bfe715c19b1519db8845f7a58346b67 RMD160 (pulseaudio-11.1.tar.xz) = bb625751165be83c3ff4cbb0b22c5a28007e61fe @@ -9,6 +9,7 @@ SHA1 (patch-configure.ac) = ec7b610376aa3504dc9244de83e3d7d053819ee3 SHA1 (patch-src_Makefile.am) = debe40be5d1155f6cb0d5ae90119dece4e090b02 SHA1 (patch-src_modules_module-detect.c) = f202194b03a2023959d772392d58297f963f0ada SHA1 (patch-src_modules_oss_module-oss.c) = 399ac178ae832619253ce8dd985edbed23db86e7 +SHA1 (patch-src_modules_raop_raop-client.h) = 9fb7ae86a6852022f53aee3765777bd136250ffb SHA1 (patch-src_pulsecore_memfd-wrappers.h) = e39b3bff363bb5f8a4f21f879d56cd6f3df460ac SHA1 (patch-src_pulsecore_mix__neon.c) = 6f6d33d38024d65045d637d48276e1ba92b81342 SHA1 (patch-src_pulsecore_svolume__mmx.c) = c34d153e3bfdb812eb7bd70fa330a9ec674c2dc2 diff --git a/audio/pulseaudio/patches/patch-src_modules_raop_raop-client.h b/audio/pulseaudio/patches/patch-src_modules_raop_raop-client.h new file mode 100644 index 00000000000..16f3d0d66f1 --- /dev/null +++ b/audio/pulseaudio/patches/patch-src_modules_raop_raop-client.h @@ -0,0 +1,16 @@ +$NetBSD: patch-src_modules_raop_raop-client.h,v 1.1 2018/06/19 02:25:58 maya Exp $ + +Missing headers for sockaddr_in (PR pkg/53381) + +--- src/modules/raop/raop-client.h.orig 2017-09-05 09:33:13.000000000 +0000 ++++ src/modules/raop/raop-client.h +@@ -20,6 +20,9 @@ + along with PulseAudio; if not, see <http://www.gnu.org/licenses/>. + ***/ + ++#include <sys/socket.h> ++#include <netinet/in.h> ++ + #include <pulse/volume.h> + + #include <pulsecore/core.h> |