diff options
author | Max Kellermann <max@duempel.org> | 2008-12-30 19:24:39 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-30 19:24:39 +0100 |
commit | 71e7ce5d8e3153342494685d60d7ff16d9b29101 (patch) | |
tree | ed9893562c16b7f8ab98a5c97bce79bcf1ae2267 /configure.ac | |
parent | 03e650aa9e9a95575fccd51ec9f669abae52fe7e (diff) | |
download | mpd-71e7ce5d8e3153342494685d60d7ff16d9b29101.tar.gz mpd-71e7ce5d8e3153342494685d60d7ff16d9b29101.tar.xz mpd-71e7ce5d8e3153342494685d60d7ff16d9b29101.zip |
main: use the GLib main loop
This is a rather huge patch, which unfortunately cannot be splitted.
Instead of using our custom ioops.h library, convert everything to use
the GLib main loop.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index dfcd15832..c05e2f4e8 100644 --- a/configure.ac +++ b/configure.ac @@ -909,7 +909,7 @@ esac if test x$with_zeroconf != xno; then if test x$with_zeroconf = xavahi || test x$with_zeroconf = xauto; then - PKG_CHECK_MODULES([AVAHI], [avahi-client], + PKG_CHECK_MODULES([AVAHI], [avahi-client avahi-glib], [found_avahi=1;AC_DEFINE([HAVE_AVAHI], 1, [Define to enable Avahi Zeroconf support])] MPD_LIBS="$MPD_LIBS $AVAHI_LIBS" MPD_CFLAGS="$MPD_CFLAGS $AVAHI_CFLAGS", [found_avahi=0]) |