From 57227728178cd756d3fee401b7bb5f35eed3669d Mon Sep 17 00:00:00 2001 From: ejurgensen Date: Sun, 28 Aug 2016 22:36:06 +0200 Subject: [PATCH] [pulseaudio] Don't try to build by default - yet --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 04c87667..ad97191f 100644 --- a/configure.ac +++ b/configure.ac @@ -224,15 +224,15 @@ AS_IF([test "x$with_alsa" != "xno"], [ AM_CONDITIONAL(COND_ALSA, [test "x$with_alsa" != "xno"]) dnl PULSEAUDIO -AC_ARG_WITH(pulseaudio, AS_HELP_STRING([--without-pulseaudio], [without Pulseaudio support (default=no)])) -AS_IF([test "x$with_pulseaudio" != "xno"], [ +AC_ARG_WITH(pulseaudio, AS_HELP_STRING([--with-pulseaudio], [with Pulseaudio support (default=no)])) +AS_IF([test "x$with_pulseaudio" = "xyes"], [ CPPFLAGS="${CPPFLAGS} -DPULSEAUDIO" PKG_CHECK_MODULES(LIBPULSE, [ libpulse ]) AC_SEARCH_LIBS([pa_threaded_mainloop_set_name], [pulse], AC_DEFINE(HAVE_PULSE_MAINLOOP_SET_NAME, 1, [Define to 1 if you have Pulseaudio with pa_threaded_mainloop_set_name]) ) ]) -AM_CONDITIONAL(COND_PULSEAUDIO, [test "x$with_pulseaudio" != "xno"]) +AM_CONDITIONAL(COND_PULSEAUDIO, [test "x$with_pulseaudio" = "xyes"]) dnl --- End options --- dnl Checks for header files.