]> code.delx.au - pulseaudio/commitdiff
remove HOWL snippet from configure script
authorLennart Poettering <lennart@poettering.net>
Thu, 13 Jul 2006 17:44:18 +0000 (17:44 +0000)
committerLennart Poettering <lennart@poettering.net>
Thu, 13 Jul 2006 17:44:18 +0000 (17:44 +0000)
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1072 fefdeb5f-60dc-0310-8127-8f9354f1896f

Makefile.am
configure.ac

index 566cec6845da519e4f43eb123190cca2c620fd31..8aa609f6ca3504afbab049fe144aacccfbffdebb 100644 (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
index eb6fa2d376955a519ad70200f43ff9386f8be645..83cb2e1a2e559d87aeb5a2d9ff02765f927f1fc6 100644 (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],