diff options
author | abs <abs@pkgsrc.org> | 2011-07-23 19:48:38 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2011-07-23 19:48:38 +0000 |
commit | bcb79c968428306a34955d7c8278130ab7f5ad5f (patch) | |
tree | eb5da9bf2145e79ba286e1c9789bb01af1c3b86e /multimedia | |
parent | f583ca57019e91443b7fdda58adf2ab202b203b2 (diff) | |
download | pkgsrc-bcb79c968428306a34955d7c8278130ab7f5ad5f.tar.gz |
Fix build against pulse-audio - no change for normal build
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/vlc/distinfo | 3 | ||||
-rw-r--r-- | multimedia/vlc/patches/patch-modules_audio__output_pulse.c | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/multimedia/vlc/distinfo b/multimedia/vlc/distinfo index 380b07b17af..5d4e5a67567 100644 --- a/multimedia/vlc/distinfo +++ b/multimedia/vlc/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.46 2011/07/18 17:06:42 drochner Exp $ +$NetBSD: distinfo,v 1.47 2011/07/23 19:48:38 abs Exp $ SHA1 (vlc-1.1.10.tar.bz2) = 6c7b3fefb2ad1e2ab53d17eabf509a318b76ef03 RMD160 (vlc-1.1.10.tar.bz2) = 8a4b32bceb2eb3d9a3a062477f772a53098cad0b @@ -12,3 +12,4 @@ SHA1 (patch-at) = 5761ec0809d2b03511666ae81f7b4ae01b6f5930 SHA1 (patch-au) = 551dd7d84e3e74a95891a708330af8a9e315c4d8 SHA1 (patch-av) = 892a0e260e594d0ec736f79b1e0e037d6c1a9685 SHA1 (patch-configure) = 83f476cc71d795a69f787713a04471e078c0ec52 +SHA1 (patch-modules_audio__output_pulse.c) = e5671c08a2779436d2f528208ff5cfb7c37238b3 diff --git a/multimedia/vlc/patches/patch-modules_audio__output_pulse.c b/multimedia/vlc/patches/patch-modules_audio__output_pulse.c new file mode 100644 index 00000000000..b38c816f40c --- /dev/null +++ b/multimedia/vlc/patches/patch-modules_audio__output_pulse.c @@ -0,0 +1,14 @@ +$NetBSD: patch-modules_audio__output_pulse.c,v 1.1 2011/07/23 19:48:39 abs Exp $ +To enable build against pulse-audio 0.9.21 - seems to work + +--- modules/audio_output/pulse.c.orig 2011-05-30 15:03:50.000000000 +0000 ++++ modules/audio_output/pulse.c +@@ -272,7 +272,7 @@ static int Open(vlc_object_t *obj) + { + aout_instance_t *aout = (aout_instance_t *)obj; + +-#if !defined(PA_CHECK_VERSION) || !PA_CHECK_VERSION(0,9,22) ++#if !defined(PA_CHECK_VERSION) || !PA_CHECK_VERSION(0,9,20) + if( !vlc_xlib_init( p_this ) ) + return VLC_EGENERIC; + #endif |