Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed: Marked pulse as auto but forgot to implement.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@30117 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
  • Loading branch information
althekiller committed May 13, 2010
1 parent 0931728 commit 1b9f996
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions configure.in
Expand Up @@ -509,16 +509,25 @@ if test "$host_vendor" != "apple"; then
fi

# PulseAudio
if test "$host_vendor" = "apple" ; then
use_pulse="no"
AC_MSG_RESULT($pulse_disabled)
else
if test "$use_pulse" = "yes"; then
AC_CHECK_LIB([pulse], [main],,
use_pulse=no;AC_MSG_RESULT($pulse_not_found))
if test "x$use_pulse" != "xno"; then
if test "$host_vendor" = "apple" ; then
if test "x$use_pulse" = "xyes"; then
AC_MSG_ERROR($pulse_disabled)
else
use_pulse="no"
AC_MSG_RESULT($pulse_disabled)
fi
else
AC_MSG_RESULT($pulse_disabled)
AC_CHECK_LIB([pulse], [main],,
[if test "x$use_pulse" = "xyes"; then
AC_MSG_ERROR($pulse_not_found)
else
use_pulse=no
AC_MSG_RESULT($pulse_not_found)
fi])
fi
else
AC_MSG_RESULT($pulse_disabled)
fi

# FAAC
Expand Down Expand Up @@ -1015,7 +1024,7 @@ else
final_message="$final_message\n ccache:\tNo"
fi

if test "$use_pulse" = "yes"; then
if test "x$use_pulse" != "xno"; then
final_message="$final_message\n PulseAudio:\tYes"
else
final_message="$final_message\n PulseAudio:\tNo"
Expand Down

0 comments on commit 1b9f996

Please sign in to comment.