Commit 383e30d5 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Require XCB version of libpulse

parent e9f34b05
......@@ -3555,15 +3555,7 @@ fi
dnl
dnl Pulseaudio module
dnl
AS_IF([test "${no_x}" = "yes"], [
AS_IF([test "${enable_pulse}" = "yes"], [
AC_MSG_ERROR([Xlib is required for VLC PulseAudio support
(see http://www.pulseaudio.org/ticket/799 for further reference).])
])
], [
PKG_ENABLE_MODULES_VLC([PULSE], [], [libpulse >= 0.9.11], [Pulseaudio support], [auto])
VLC_ADD_LIBS([pulse], [${X_LIBS} ${X_PRE_LIBS} -lX11])
])
PKG_ENABLE_MODULES_VLC([PULSE], [], [libpulse >= 0.9.22], [Pulseaudio support], [auto])
dnl
dnl Portaudio module
......
......@@ -34,10 +34,6 @@
#include <vlc_cpu.h>
#include <pulse/pulseaudio.h>
#ifdef X_DISPLAY_MISSING
# error Xlib required due to PulseAudio bug 799!
#endif
#include <vlc_xlib.h>
#include <assert.h>
......@@ -120,9 +116,6 @@ static int Open ( vlc_object_t *p_this )
struct pa_channel_map map;
char * p_client_name;
if( !vlc_xlib_init( p_this ) )
return VLC_EGENERIC;
/* Allocate structures */
p_aout->output.p_sys = p_sys = calloc( 1, sizeof( aout_sys_t ) );
if( p_sys == NULL )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment