From 95a5d13240b993312f3890b3d4f8f35d7f5aa0d8 Mon Sep 17 00:00:00 2001 From: mgehre <M.Gehre@gmx.de> Date: Wed, 31 Dec 2014 00:19:47 +0100 Subject: configure.in: Fix final_message without PulseAudio Currently, when pulseaudio is not installed, ./configure shows: ``` checking for PULSE... no == PulseAudio support disabled. == ``` but at the end ``` ------------------------ Kodi Configuration: ------------------------ ... PulseAudio: Yes ``` --- configure.in | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.in b/configure.in index 32244d15a6..dd7338efdc 100644 --- a/configure.in +++ b/configure.in @@ -1285,6 +1285,7 @@ if test "x$use_pulse" != "xno"; then if test "x$use_pulse" = "xyes"; then AC_MSG_ERROR($pulse_not_found) else + use_pulse="no" AC_MSG_RESULT($pulse_disabled) fi fi -- cgit v1.2.3