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/vlc/patches | |
parent | f583ca57019e91443b7fdda58adf2ab202b203b2 (diff) | |
download | pkgsrc-bcb79c968428306a34955d7c8278130ab7f5ad5f.tar.gz |
Fix build against pulse-audio - no change for normal build
Diffstat (limited to 'multimedia/vlc/patches')
-rw-r--r-- | multimedia/vlc/patches/patch-modules_audio__output_pulse.c | 14 |
1 files changed, 14 insertions, 0 deletions
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 |