2 # Process this file with autoconf to produce a configure script.
6 # This file is part of avahi.
8 # avahi is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU Lesser General Public License as
10 # published by the Free Software Foundation; either version 2 of the
11 # License, or (at your option) any later version.
13 # avahi is distributed in the hope that it will be useful, but WITHOUT
14 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
16 # License for more details.
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with avahi; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24 AC_INIT([avahi],[0.6.1],[avahi (at) lists (dot) freedesktop (dot) org])
25 AC_CONFIG_SRCDIR([avahi-core/server.c])
26 AC_CONFIG_HEADERS([config.h])
27 AM_INIT_AUTOMAKE([foreign 1.9 -Wall])
29 AC_SUBST(PACKAGE_URL, [http://www.freedesktop.org/Software/Avahi])
31 AC_SUBST(LIBAVAHI_COMMON_VERSION_INFO, [4:0:1])
32 AC_SUBST(LIBAVAHI_CORE_VERSION_INFO, [3:1:0])
33 AC_SUBST(LIBAVAHI_CLIENT_VERSION_INFO, [3:1:0])
34 AC_SUBST(LIBAVAHI_GLIB_VERSION_INFO, [1:0:0])
35 AC_SUBST(LIBAVAHI_QT3_VERSION_INFO, [1:0:0])
36 AC_SUBST(LIBAVAHI_QT4_VERSION_INFO, [1:0:0])
37 AC_SUBST(LIBAVAHI_COMPAT_LIBDNS_SD_VERSION_INFO, [1:0:0])
38 AC_SUBST(LIBAVAHI_COMPAT_HOWL_VERSION_INFO, [0:0:0])
39 AC_SUBST(HOWL_COMPAT_VERSION, [0.9.8])
41 if type -p stow > /dev/null && test -d /usr/local/stow ; then
42 AC_MSG_NOTICE([*** Found /usr/local/stow: default install prefix set to /usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION} ***])
43 ac_default_prefix="/usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION}"
46 # Checks for programs.
54 AC_PROG_GCC_TRADITIONAL
59 ACX_PTHREAD(,AC_MSG_ERROR([Missing POSIX Threads support]))
64 AC_CHECK_HEADER(linux/netlink.h,
66 AC_DEFINE([HAVE_NETLINK],[],[Support for Linux netlink])
68 #include <sys/socket.h>
69 #include <asm/types.h>
72 AM_CONDITIONAL(HAVE_NETLINK, [ test x"$HAVE_NETLINK" = xyes ])
75 # Check for net/route.h
77 AC_CHECK_HEADER(net/route.h,
79 AC_DEFINE([HAVE_PF_ROUTE],[],[Support for PF_ROUTE])
81 #include <sys/types.h>
82 #include <sys/socket.h>
85 AM_CONDITIONAL(HAVE_PF_ROUTE, [ test x"$HAVE_PF_ROUTE" = xyes ])
88 # Check for struct ip_mreqn
90 AC_MSG_CHECKING(for struct ip_mreqn)
91 AC_TRY_COMPILE([#include <netinet/in.h>], [
93 mreq.imr_address.s_addr = 0;
97 AC_DEFINE([HAVE_STRUCT_IP_MREQN],[],[Support for struct ip_mreqn])
99 # We'll just have to try and use struct ip_mreq
101 AC_MSG_CHECKING(for struct ip_mreq)
102 AC_TRY_COMPILE([#include <netinet/in.h>], [
104 mreq.imr_interface.s_addr = 0;
108 AC_DEFINE([HAVE_STRUCT_IP_MREQ],[],[Support for struct ip_mreq])
110 # No multicast support
116 # Detecting the linux distribution for specific things like init scripts.
118 AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO],[Specify the distribution to target: One of debian, gentoo, archlinux, fedora, darwin, netbsd, freebsd or none]))
119 if test "z$with_distro" = "z"; then
120 AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
121 AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
122 AC_CHECK_FILE(/etc/arch-release,with_distro="archlinux")
123 AC_CHECK_FILE(/etc/debian_version,with_distro="debian")
124 AC_CHECK_FILE(/etc/redhat-release,with_distro="fedora")
125 if test "z$with_distro" = "z"; then
126 with_distro=`uname -s`
129 with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]' `
132 debian|gentoo|archlinux|suse|fedora|darwin|freebsd|none)
135 AC_MSG_WARN([Your distribution (${with_distro}) is supported but no init script exist yet! (patches welcome)])
138 AC_MSG_ERROR([Linux distribution autodetection failed, you must specify the distribution to target using --with-distro=DISTRO, set DISTRO to none if your distribution is not supported.])
141 AC_MSG_ERROR([Your distribution (${with_distro}) is not yet supported, init scripts and dbus configuration will not be installed! (patches welcome), you can specify --with-distro=none to skip this check])
145 AM_CONDITIONAL(TARGET_SUSE, test x"$with_distro" = xsuse)
146 AM_CONDITIONAL(TARGET_GENTOO, test x"$with_distro" = xgentoo)
147 AM_CONDITIONAL(TARGET_DEBIAN, test x"$with_distro" = xdebian)
148 AM_CONDITIONAL(TARGET_ARCHLINUX, test x"$with_distro" = xarchlinux)
149 AM_CONDITIONAL(TARGET_FEDORA, test x"$with_distro" = xfedora)
150 AM_CONDITIONAL(TARGET_DARWIN, test x"$with_distro" = xdarwin)
151 AM_CONDITIONAL(TARGET_NETBSD, test x"$with_distro" = xnetbsd)
152 AM_CONDITIONAL(TARGET_FREEBSD, test x"$with_distro" = xfreebsd)
155 AC_LANG_CONFTEST([int main() {}])
156 $CC -c conftest.c $CFLAGS $@ > /dev/null 2> /dev/null
162 # If using GCC specify some additional parameters
163 if test "x$GCC" = "xyes" ; then
165 DESIRED_FLAGS="-Wall -W -Wextra -pedantic -pipe -Wformat -Wold-style-definition -Wdeclaration-after-statement -Wfloat-equal -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls -Wmissing-noreturn -Wshadow -Wendif-labels -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Winline"
167 if test "x$HAVE_NETLINK" = "xyes" ; then
168 # Test whether rtnetlink.h can be included when compiled with -std=c99
169 # some distributions (e.g. archlinux) have broken headers that dont
170 # define __u64 with -std=c99
171 AC_MSG_CHECKING([checking whether rtnetlink.h can be included with -std=c99])
174 AC_TRY_COMPILE([#include <linux/rtnetlink.h>], [],
175 use_stdc99=yes, use_stdc99=no)
177 if test x"$use_stdc99" = xyes; then
178 DESIRED_FLAGS="-std=c99 $DESIRED_FLAGS"
186 DESIRED_FLAGS="-std=c99 $DESIRED_FLAGS"
189 for flag in $DESIRED_FLAGS ; do
190 AC_MSG_CHECKING([whether $CC accepts $flag])
191 if test_gcc_flag $flag ; then
192 CFLAGS="$CFLAGS $flag"
200 # Checks for header files.
202 AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h limits.h netinet/in.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/time.h unistd.h netdb.h syslog.h])
205 # Checks for typedefs, structures, and compiler characteristics.
211 # Checks for library functions.
213 AC_FUNC_SELECT_ARGTYPES
216 AC_CHECK_FUNCS([gethostname memchr memmove memset mkdir select socket strchr strcspn strdup strerror strrchr strspn strstr uname setresuid setreuid setresgid setregid strcasecmp gettimeofday putenv strncasecmp strlcpy gethostbyname seteuid setegid setproctitle getprogname])
223 AC_CHECK_DECLS(environ)
226 AC_CHECK_HEADERS([sys/capability.h],,enable_chroot=no)
227 AC_CHECK_HEADERS([sys/prctl.h],,enable_chroot=no)
228 AC_CHECK_FUNCS([chroot],,enable_chroot=no)
230 AM_CONDITIONAL(ENABLE_CHROOT, test "x$enable_chroot" = "xyes")
232 if test "x$enable_chroot" = "xyes" ; then
233 AC_DEFINE([ENABLE_CHROOT], 1, [Enable chroot() usage])
236 # Check for pkg-config manually first, as if its not installed the
237 # PKG_PROG_PKG_CONFIG macro won't be defined.
238 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
240 if test x"$have_pkg_config" = "xno"; then
241 AC_MSG_ERROR(pkg-config is required to install this program)
250 AS_HELP_STRING([--disable-glib],[Disable use of GLib]),
251 [case "${enableval}" in
252 yes) HAVE_GLIB=yes ;;
254 *) AC_MSG_ERROR(bad value ${enableval} for --enable-glib) ;;
258 if test "x$HAVE_GLIB" = "xyes" ; then
259 PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ])
260 AC_SUBST(GLIB20_CFLAGS)
261 AC_SUBST(GLIB20_LIBS)
263 AM_CONDITIONAL(HAVE_GLIB, test "x$HAVE_GLIB" = "xyes")
269 AS_HELP_STRING([--disable-qt3],[Disable building of Qt3 mainloop integration]),
270 [case "${enableval}" in
273 *) AC_MSG_ERROR(bad value ${enableval} for --enable-qt3) ;;
277 if test "x$HAVE_QT3" = "xyes" ; then
278 PKG_CHECK_MODULES( QT3, [ qt-mt >= 3.0.0 ])
281 QT3_PREFIX="`$PKG_CONFIG --variable=prefix qt-mt`/bin"
283 AC_CHECK_FILE( "$QT3_PREFIX/moc-qt3", [ MOC_QT3=$QT3_PREFIX/moc-qt3 ], [
284 AC_CHECK_FILE("$QT3_PREFIX/moc", [ MOC_QT3=$QT3_PREFIX/moc ], [
285 AC_MSG_ERROR([Couldn't find QT3 moc])])])
288 AM_CONDITIONAL(HAVE_QT3, test "x$HAVE_QT3" = "xyes")
294 AS_HELP_STRING([--disable-qt4],[Disable building of Qt4Core mainloop integration]),
295 [case "${enableval}" in
298 *) AC_MSG_ERROR(bad value ${enableval} for --enable-qt4) ;;
302 if test "x$HAVE_QT4" = "xyes" ; then
303 PKG_CHECK_MODULES( QT4, [ QtCore >= 4.0.0 ])
306 QT4_PREFIX="`$PKG_CONFIG --variable=prefix QtCore`/bin"
308 AC_CHECK_FILE( "$QT4_PREFIX/moc-qt4", [ MOC_QT4=$QT4_PREFIX/moc-qt4 ], [
309 AC_CHECK_FILE("$QT4_PREFIX/moc", [ MOC_QT4=$QT4_PREFIX/moc ], [
310 AC_MSG_ERROR([Couldn't find QT4 moc])])])
313 AM_CONDITIONAL(HAVE_QT4, test "x$HAVE_QT4" = "xyes")
319 AS_HELP_STRING([--disable-gtk],[Disable use of GTK+]),
320 [case "${enableval}" in
323 *) AC_MSG_ERROR(bad value ${enableval} for --enable-gtk) ;;
327 if test "x$HAVE_GTK" = "xyes" ; then
329 PKG_CHECK_MODULES(GTK20, [ gtk+-2.0 >= 2.4.0 ])
330 AC_SUBST(GTK20_CFLAGS)
333 # Check for GLADE 2.0
334 PKG_CHECK_MODULES(GLADE20, [ libglade-2.0 >= 2.4.0 ])
335 AC_SUBST(GLADE20_CFLAGS)
336 AC_SUBST(GLADE20_LIBS)
338 AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes")
344 AS_HELP_STRING([--disable-dbus],[Disable use of D-BUS]),
345 [case "${enableval}" in
346 yes) HAVE_DBUS=yes ;;
348 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dbus) ;;
352 AC_ARG_WITH(dbus-sys, AS_HELP_STRING([--with-dbus-sys=<dir>], [where D-BUS system.d directory is]))
353 AC_ARG_WITH(dbus-system-socket, AS_HELP_STRING([--with-dbus-system-address=<address>], [where the dbus system socket is, you probably want to put unix:path= at the start]))
355 DBUS_VERSION="Disabled"
356 DBUS_SYS_DIR="Disabled"
357 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="Disabled"
358 if test "x$HAVE_DBUS" = "xyes" ; then
359 AC_DEFINE(HAVE_DBUS, 1, [Whether we have D-BUS or not])
361 DBUS_VERSION=`$PKG_CONFIG dbus-1 --modversion`
362 PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 0.34 ])
363 DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_API_SUBJECT_TO_CHANGE"
364 AC_SUBST(DBUS_CFLAGS)
367 if ! test -z "$with_dbus_sys" ; then
368 DBUS_SYS_DIR="$with_dbus_sys"
370 DBUS_SYS_DIR="${sysconfdir}/dbus-1/system.d"
372 AC_SUBST(DBUS_SYS_DIR)
374 if ! test -z "$with_dbus_system_address" ; then
375 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="$with_dbus_system_address"
377 # This is ugly, but D-BUS doesn't export this address for us
378 # so we have to guess, pretty much all setups i've seen have
379 # it in /var/lib/dbus or /var/run/dbus, and its defaulted to
380 # /var/run upstream so we will try guess first then default
383 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="unix:path=/var/run/dbus/system_bus_socket"
384 TRY_SOCKETS="/var/lib/dbus/system_bus_socket /var/run/dbus/system_bus_socket ${localstatedir}/run/dbus/system_bus_socket ${prefix}/var/run/dbus/system_bus_socket"
385 for sock in $TRY_SOCKETS; do
386 if test -S $sock; then
387 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="unix:path=$sock"
391 AC_SUBST(DBUS_SYSTEM_BUS_DEFAULT_ADDRESS)
394 AM_CONDITIONAL(HAVE_DBUS, test "x$HAVE_DBUS" = "xyes")
400 AS_HELP_STRING([--disable-expat],[Disable use of Expat]),
401 [case "${enableval}" in
402 yes) HAVE_EXPAT=yes ;;
404 *) AC_MSG_ERROR(bad value ${enableval} for --enable-expat) ;;
408 if test "x$HAVE_EXPAT" = "xyes" ; then
409 AC_CHECK_LIB(expat, XML_ParserCreate, [ AC_CHECK_HEADERS(expat.h, have_expat=true, have_expat=false) ], have_expat=false)
411 if ! $have_expat ; then
412 AC_MSG_ERROR([*** libexpat not found ***])
415 AM_CONDITIONAL(HAVE_EXPAT, test "x$HAVE_EXPAT" = "xyes")
421 AS_HELP_STRING([--disable-gdbm],[Disable use of GDBM]),
422 [case "${enableval}" in
423 yes) HAVE_GDBM=yes ;;
425 *) AC_MSG_ERROR(bad value ${enableval} for --enable-gdbm) ;;
429 if test "x$HAVE_GDBM" = "xyes" ; then
430 AC_CHECK_LIB(gdbm, gdbm_open, [ AC_CHECK_HEADERS(gdbm.h, have_gdbm=true, have_gdbm=false) ], have_gdbm=false)
432 if ! $have_gdbm ; then
433 AC_MSG_ERROR([*** libgdbm not found ***])
435 AC_DEFINE([HAVE_GDBM],[],[Support for GDBM])
437 AM_CONDITIONAL(HAVE_GDBM, test "x$HAVE_GDBM" = "xyes")
442 AC_ARG_ENABLE(libdaemon,
443 AS_HELP_STRING([--disable-libdaemon],[Disable use of libdaemon]),
444 [case "${enableval}" in
445 yes) HAVE_LIBDAEMON=yes ;;
446 no) HAVE_LIBDAEMON=no ;;
447 *) AC_MSG_ERROR(bad value ${enableval} for --enable-libdaemon) ;;
449 [HAVE_LIBDAEMON=yes])
451 if test "x$HAVE_LIBDAEMON" = "xyes" ; then
452 PKG_CHECK_MODULES(LIBDAEMON, [ libdaemon >= 0.5 ])
453 AC_SUBST(LIBDAEMON_CFLAGS)
454 AC_SUBST(LIBDAEMON_LIBS)
456 AM_CONDITIONAL(HAVE_LIBDAEMON, test "x$HAVE_LIBDAEMON" = "xyes")
461 AC_ARG_ENABLE(python,
462 AS_HELP_STRING([--disable-python], [Disable scripts that depends on python]),
463 [case "${enableval}" in
464 yes) HAVE_PYTHON=yes ;;
465 no) HAVE_PYTHON=no ;;
466 *) AC_MSG_ERROR([bad value ${enableval} for --enable-python]) ;;
467 esac],[HAVE_PYTHON=yes])
472 if test "x$HAVE_PYTHON" = "xyes" ; then
473 AM_PATH_PYTHON([2.4])
476 AS_HELP_STRING([--disable-pygtk],[Disable use of GTK in Python]),
477 [case "${enableval}" in
478 yes) HAVE_PYGTK=yes ;;
480 *) AC_MSG_ERROR(bad value ${enableval} for --enable-pygtk) ;;
484 if test "x$HAVE_PYGTK" = "xyes" ; then
485 AM_CHECK_PYMOD(gtk,,,[AC_MSG_ERROR(Could not find Python module gtk)])
489 if test "x$HAVE_DBUS" = "xyes" ; then
490 AC_ARG_ENABLE(python-dbus,
491 AS_HELP_STRING([--disable-python-dbus],[Disable use of D-BUS in Python]),
492 [case "${enableval}" in
493 yes) HAVE_PYTHON_DBUS=yes ;;
494 no) HAVE_PYTHON_DBUS=no ;;
495 *) AC_MSG_ERROR(bad value ${enableval} for --enable-python-dbus) ;;
497 [HAVE_PYTHON_DBUS=yes])
499 if test "x$HAVE_PYTHON_DBUS" = "xyes"; then
500 AM_CHECK_PYMOD(dbus,,,[AC_MSG_ERROR(Could not find Python module dbus)])
503 AM_CHECK_PYMOD(socket,,,[AC_MSG_ERROR(Could not find Python module socket)])
504 AM_CHECK_PYMOD(gdbm,,,[AC_MSG_ERROR(Could not find Python module gdbm)])
507 AM_CONDITIONAL(HAVE_PYTHON, [test "x$HAVE_PYTHON" = "xyes" ])
508 AM_CONDITIONAL(HAVE_PYGTK, test "x$HAVE_PYGTK" = "xyes")
509 AM_CONDITIONAL(HAVE_PYTHON_DBUS, test "x$HAVE_PYTHON_DBUS" = "xyes")
512 # Check for mono stuff
515 if test "x$HAVE_DBUS" = "xyes" ; then
517 AS_HELP_STRING([--disable-mono],[Disable mono bindings]),
518 [case "${enableval}" in
519 yes) HAVE_MONO=yes ;;
521 *) AC_MSG_ERROR(bad value ${enableval} for --enable-mono) ;;
525 if test "x$HAVE_MONO" = "xyes" ; then
526 AC_PATH_PROG(MCS, mcs)
527 if test "x$MCS" = "x" ; then
528 AC_MSG_ERROR([Can not find "mcs" in your PATH])
531 AC_PATH_PROG(GACUTIL, gacutil)
532 if test "x$GACUTIL" = "x" ; then
533 AC_MSG_ERROR([Can not find "gacutil" in your PATH])
540 AM_CONDITIONAL(HAVE_MONO, test "x$HAVE_MONO" = "xyes")
543 # Check for monodoc stuff
546 AC_ARG_ENABLE(monodoc,
547 AS_HELP_STRING([--disable-monodoc],[Disable documentation for mono bindings]),
548 [case "${enableval}" in
549 yes) HAVE_MONODOC=yes ;;
550 no) HAVE_MONODOC=no ;;
551 *) AC_MSG_ERROR(bad value ${enableval} for --enable-monodoc) ;;
555 if test "x$HAVE_MONODOC" = "xyes" ; then
556 PKG_CHECK_MODULES(MONODOC, [monodoc >= 1.1.8])
557 MONODOC_DIR=`$PKG_CONFIG --variable=sourcesdir monodoc`
559 AC_PATH_PROG(MONODOCER, monodocer)
560 AC_PATH_PROG(MDASSEMBLER, mdassembler)
562 AC_SUBST(MONODOC_DIR)
564 AC_SUBST(MDASSEMBLER)
566 AM_CONDITIONAL(HAVE_MONODOC, test "x$HAVE_MONODOC" = "xyes")
569 # Defining Avahi User and Group.
571 AC_ARG_WITH(avahi_user, AS_HELP_STRING([--with-avahi-user=<user>],[User for running the Avahi daemon (avahi)]))
572 if test -z "$with_avahi_user" ; then
575 AVAHI_USER=$with_avahi_user
578 AC_DEFINE_UNQUOTED(AVAHI_USER,"$AVAHI_USER", [User for running the Avahi daemon])
580 AC_ARG_WITH(avahi_group,AS_HELP_STRING([--with-avahi-group=<group>],[Group for Avahi (avahi)]))
581 if test -z "$with_avahi_group" ; then
584 AVAHI_GROUP=$with_avahi_group
586 AC_SUBST(AVAHI_GROUP)
587 AC_DEFINE_UNQUOTED(AVAHI_GROUP,"$AVAHI_GROUP", [Group for Avahi])
592 avahi_runtime_dir="${localstatedir}/run"
593 avahi_socket="${avahi_runtime_dir}/avahi-daemon/socket"
594 AC_SUBST(avahi_runtime_dir)
595 AC_SUBST(avahi_socket)
598 # Avahi interfaces dir
600 if test "x$HAVE_PYTHON_DBUS" = "xyes" -o "x$HAVE_GTK" = "xyes"; then
601 interfacesdir="${datadir}/${PACKAGE}/interfaces/"
602 AC_SUBST(interfacesdir)
616 DX_INIT_DOXYGEN(avahi, doxygen.cfg, doxygen)
619 # Build and Install man pages
621 AC_ARG_ENABLE(manpages,
622 AS_HELP_STRING([--disable-manpages],[Disable building and installation of man pages]),
623 [case "${enableval}" in
626 *) AC_MSG_ERROR([bad value ${enableval} for --disable-manpages]) ;;
627 esac],[manpages=yes])
629 if test x$manpages = xyes ; then
631 # XMLTOMAN manpage generation
633 AC_ARG_ENABLE(xmltoman,
634 AS_HELP_STRING([--disable-xmltoman],[Disable rebuilding of man pages with xmltoman]),
635 [case "${enableval}" in
638 *) AC_MSG_ERROR([bad value ${enableval} for --disable-xmltoman]) ;;
639 esac],[xmltoman=yes])
641 if test x$xmltoman = xyes ; then
642 AC_CHECK_PROG(have_xmltoman, xmltoman, yes, no)
645 if test x$have_xmltoman = xno -o x$xmltoman = xno; then
646 if ! test -e man/avahi-daemon.8 ; then
647 AC_MSG_ERROR([*** xmltoman was not found or was disabled, it is required to build the manpages as they have not been pre-built, install xmltoman, pass --disable-manpages or dont pass --disable-xmltoman])
650 AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***])
654 AM_CONDITIONAL([USE_XMLTOMAN], [test "x$xmltoman" = xyes])
655 AM_CONDITIONAL([BUILD_MANPAGES], [test "x$manpages" = xyes])
658 # Conditionally compile test and example programs
661 AS_HELP_STRING([--enable-tests],[Enable building of tests and examples]),
662 [case "${enableval}" in
663 yes) ENABLE_TESTS=yes ;;
664 no) ENABLE_TESTS=no ;;
665 *) AC_MSG_ERROR(bad value ${enableval} for --enable-tests) ;;
669 AM_CONDITIONAL([ENABLE_TESTS], [test "x$ENABLE_TESTS" = "xyes"])
672 # Optionally enable libdns_sd compatibility support
674 AC_ARG_ENABLE(compat-libdns_sd,
675 AS_HELP_STRING([--enable-compat-libdns_sd],[Enable compatibility layer for libdns_sd]),
676 [case "${enableval}" in
677 yes) ENABLE_COMPAT_LIBDNS_SD=yes ;;
678 no) ENABLE_COMPAT_LIBDNS_SD=no ;;
679 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-libdns_sd) ;;
681 [ENABLE_COMPAT_LIBDNS_SD=no])
683 AM_CONDITIONAL([ENABLE_COMPAT_LIBDNS_SD], [test "x$ENABLE_COMPAT_LIBDNS_SD" = "xyes"])
686 # Optionally enable HOWL compatibility support
688 AC_ARG_ENABLE(compat-howl,
689 AS_HELP_STRING([--enable-compat-howl],[Enable compatibility layer for HOWL]),
690 [case "${enableval}" in
691 yes) ENABLE_COMPAT_HOWL=yes ;;
692 no) ENABLE_COMPAT_HOWL=no ;;
693 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-howl) ;;
695 [ENABLE_COMPAT_HOWL=no])
697 AM_CONDITIONAL([ENABLE_COMPAT_HOWL], [test "x$ENABLE_COMPAT_HOWL" = "xyes"])
700 # ==========================================================================
703 avahi-common/Makefile
707 avahi-daemon/Makefile
708 avahi-daemon/avahi-dbus.conf
709 avahi-discover-standalone/Makefile
710 avahi-client/Makefile
712 initscript/debian/Makefile
713 initscript/gentoo/Makefile
714 initscript/archlinux/Makefile
715 initscript/suse/Makefile
716 initscript/fedora/Makefile
717 initscript/darwin/Makefile
718 initscript/freebsd/Makefile
719 avahi-dnsconfd/Makefile
721 avahi-python/Makefile
722 avahi-python/avahi/Makefile
727 service-type-database/Makefile
729 avahi-compat-libdns_sd/Makefile
730 avahi-compat-howl/Makefile
731 avahi-compat-howl/samples/Makefile
735 # ==========================================================================
737 ---{ $PACKAGE_NAME $VERSION }---
740 sysconfdir: ${sysconfdir}
741 localstatedir: ${localstatedir}
742 avahi socket: ${avahi_socket}
743 dbus-1 system.d dir: ${DBUS_SYS_DIR}
744 dbus-1 version: ${DBUS_VERSION}
745 dbus-1 system socket ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}
748 Enable GLIB: ${HAVE_GLIB}
749 Enable GTK: ${HAVE_GTK}
750 Enable D-BUS: ${HAVE_DBUS}
751 Enable Expat: ${HAVE_EXPAT}
752 Enable GDBM: ${HAVE_GDBM}
753 Enable libdaemon: ${HAVE_LIBDAEMON}
754 Enable Python: ${HAVE_PYTHON}
755 Enable pygtk: ${HAVE_PYGTK}
756 Enable python-dbus: ${HAVE_PYTHON_DBUS}
757 Enable QT3: ${HAVE_QT3}
758 Enable QT4: ${HAVE_QT4}
759 Enable Mono: ${HAVE_MONO}
760 Enable Monodoc: ${HAVE_MONODOC}
761 Distribution/OS: ${with_distro}
762 User for Avahi: ${AVAHI_USER}
763 Group for Avahi: ${AVAHI_GROUP}
764 Enable chroot(): ${enable_chroot}
767 BUILD_DAEMON="no (You need libdaemon and expat!)"
769 if test "x$HAVE_EXPAT" = "xyes" -a "x$HAVE_LIBDAEMON" = "xyes" ; then
773 BUILD_PYTHON="no (You need python, pygtk and python-dbus!)"
775 if test "x$BUILD_DAEMON" = "xyes" -a "x$HAVE_DBUS" = "xyes" -a "x$HAVE_PYTHON" = "xyes" -a "x$HAVE_PYTHON_DBUS" = "xyes" -a "x$HAVE_PYGTK" = "xyes" ; then
779 BUILD_CLIENT="no (You need avahi-daemon and dbus!)"
781 if test "x$BUILD_DAEMON" = "xyes" -a "x$HAVE_DBUS" = "xyes" ; then
785 if test "x$ENABLE_COMPAT_LIBDNS_SD" = "xyes" -a "x$BUILD_CLIENT" != "xyes" ; then
786 ENABLE_COMPAT_LIBDNS_SD="no (You need libavahi-client!)"
788 if test "x$ENABLE_COMPAT_HOWL" = "xyes" -a "x$BUILD_CLIENT" != "xyes" ; then
789 ENABLE_COMPAT_HOWL="no (You need libavahi-client!)"
794 Building libavahi-core yes
795 Building avahi-daemon: ${BUILD_DAEMON}
796 Building avahi-dnsconfd: ${BUILD_DAEMON}
797 Building libavahi-client: ${BUILD_CLIENT}
798 Building avahi-utils: ${BUILD_CLIENT}
799 Building avahi-python: ${BUILD_PYTHON}
800 Building libavahi-glib: ${HAVE_GLIB}
801 Building avahi-discover-standalone: ${HAVE_GTK}
802 Building libavahi-qt3: ${HAVE_QT3}
803 Building libavahi-qt4: ${HAVE_QT4}
804 Building avahi-sharp: ${HAVE_MONO}
805 Building avahi-compat-libdns_sd: ${ENABLE_COMPAT_LIBDNS_SD}
806 Building avahi-compat-howl: ${ENABLE_COMPAT_HOWL}
807 Building tests: ${ENABLE_TESTS}