remove HOWL snippet from configure script

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1072 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2006-07-13 17:44:18 +00:00
parent 1fd18d6b5f
commit 6f24a9d32c
2 changed files with 1 additions and 36 deletions

View file

@ -26,7 +26,7 @@ noinst_DATA =
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libpulse.pc libpulse-simple.pc
if HAVE_HOWL
if HAVE_AVAHI
pkgconfig_DATA += \
libpulse-browse.pc
endif

View file

@ -475,41 +475,6 @@ AC_SUBST(GLIB12_LIBS)
AC_SUBST(HAVE_GLIB12)
AM_CONDITIONAL([HAVE_GLIB12], [test "x$HAVE_GLIB12" = x1])
#### Howl support (optional) ####
AC_ARG_ENABLE([howl],
AC_HELP_STRING([--disable-howl], [Disable optional Howl support]),
[
case "${enableval}" in
yes) howl=yes ;;
no) howl=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for --disable-howl) ;;
esac
],
[howl=auto])
if test "x${howl}" != xno ; then
PKG_CHECK_MODULES(HOWL, [ howl >= 0.9.8 ],
HAVE_HOWL=1,
[
PKG_CHECK_MODULES(HOWL, [ avahi-compat-howl >= 0.9.8 ],
HAVE_HOWL=1,
[
HAVE_HOWL=0
if test "x$howl" = xyes ; then
AC_MSG_ERROR([*** Howl support not found])
fi
])
])
else
HAVE_HOWL=0
fi
AC_SUBST(HOWL_CFLAGS)
AC_SUBST(HOWL_LIBS)
AC_SUBST(HAVE_HOWL)
AM_CONDITIONAL([HAVE_HOWL], [test "x$HAVE_HOWL" = x1])
#### Avahi support (optional) ####
AC_ARG_ENABLE([avahi],