Add check for PulseAudio.
This commit is contained in:
parent
d114c79e43
commit
8c0e0e019b
24
configure.ac
24
configure.ac
@ -164,6 +164,29 @@ fi
|
|||||||
|
|
||||||
AC_SUBST(VORBIS_LIBS)
|
AC_SUBST(VORBIS_LIBS)
|
||||||
|
|
||||||
|
#
|
||||||
|
# PulseAudio
|
||||||
|
#
|
||||||
|
|
||||||
|
have_pulse=yes
|
||||||
|
PULSE_LIBS=
|
||||||
|
|
||||||
|
AC_CHECK_LIB([pulse-simple], [pa_simple_new], [PULSE_LIBS="$PULSE_LIBS -lpulse-simple"], [have_pulse=no])
|
||||||
|
AM_CONDITIONAL([ENABLE_PULSE], [test "x${have_pulse}" = "xyes"])
|
||||||
|
|
||||||
|
if test "x${have_pulse}" = "xno"
|
||||||
|
then
|
||||||
|
AC_MSG_WARN([
|
||||||
|
--------------------------------------------
|
||||||
|
Unable to find libpulse-simple
|
||||||
|
Sound support for VNC will be disabled
|
||||||
|
--------------------------------------------])
|
||||||
|
else
|
||||||
|
AC_DEFINE([ENABLE_PULSE])
|
||||||
|
fi
|
||||||
|
|
||||||
|
AC_SUBST(PULSE_LIBS)
|
||||||
|
|
||||||
#
|
#
|
||||||
# PANGO
|
# PANGO
|
||||||
#
|
#
|
||||||
@ -511,6 +534,7 @@ $PACKAGE_NAME version $PACKAGE_VERSION
|
|||||||
libssl .............. ${have_ssl}
|
libssl .............. ${have_ssl}
|
||||||
libVNCServer ........ ${have_libvncserver}
|
libVNCServer ........ ${have_libvncserver}
|
||||||
libvorbis ........... ${have_vorbis}
|
libvorbis ........... ${have_vorbis}
|
||||||
|
libpulse-simple ..... ${have_pulse}
|
||||||
|
|
||||||
Protocol support:
|
Protocol support:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user