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.7],[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://avahi.org/])
31 AC_SUBST(LIBAVAHI_COMMON_VERSION_INFO, [5:0:2])
32 AC_SUBST(LIBAVAHI_CORE_VERSION_INFO, [3:4:0])
33 AC_SUBST(LIBAVAHI_CLIENT_VERSION_INFO, [4:1:1])
34 AC_SUBST(LIBAVAHI_GLIB_VERSION_INFO, [1:0:0])
35 AC_SUBST(LIBAVAHI_QT3_VERSION_INFO, [1:1:0])
36 AC_SUBST(LIBAVAHI_QT4_VERSION_INFO, [1:1: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, mandriva, darwin, netbsd, freebsd, slackware 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 AC_CHECK_FILE(/etc/mandriva-release,with_distro="mandriva")
126 AC_CHECK_FILE(/etc/slackware-version,with_distro="slackware")
127 if test "z$with_distro" = "z"; then
128 with_distro=`uname -s`
131 with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]' `
134 debian|gentoo|archlinux|suse|fedora|mandriva|darwin|freebsd|slackware|none)
137 AC_MSG_WARN([Your distribution (${with_distro}) is supported but no init script exist yet! (patches welcome)])
140 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.])
143 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])
147 AM_CONDITIONAL(TARGET_SUSE, test x"$with_distro" = xsuse)
148 AM_CONDITIONAL(TARGET_GENTOO, test x"$with_distro" = xgentoo)
149 AM_CONDITIONAL(TARGET_DEBIAN, test x"$with_distro" = xdebian)
150 AM_CONDITIONAL(TARGET_ARCHLINUX, test x"$with_distro" = xarchlinux)
151 AM_CONDITIONAL(TARGET_FEDORA, test x"$with_distro" = xfedora)
152 AM_CONDITIONAL(TARGET_MANDRIVA, test x"$with_distro" = xmandriva)
153 AM_CONDITIONAL(TARGET_DARWIN, test x"$with_distro" = xdarwin)
154 AM_CONDITIONAL(TARGET_NETBSD, test x"$with_distro" = xnetbsd)
155 AM_CONDITIONAL(TARGET_FREEBSD, test x"$with_distro" = xfreebsd)
156 AM_CONDITIONAL(TARGET_SLACKWARE, test x"$with_distro" = xslackware)
159 AC_LANG_CONFTEST([int main() {}])
160 $CC -c conftest.c $CFLAGS $@ > /dev/null 2> /dev/null
166 # If using GCC specify some additional parameters
167 if test "x$GCC" = "xyes" ; then
169 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"
171 if test "x$HAVE_NETLINK" = "xyes" ; then
172 # Test whether rtnetlink.h can be included when compiled with -std=c99
173 # some distributions (e.g. archlinux) have broken headers that dont
174 # define __u64 with -std=c99
175 AC_MSG_CHECKING([checking whether rtnetlink.h can be included with -std=c99])
178 AC_TRY_COMPILE([#include <linux/rtnetlink.h>], [],
179 use_stdc99=yes, use_stdc99=no)
181 if test x"$use_stdc99" = xyes; then
182 DESIRED_FLAGS="-std=c99 $DESIRED_FLAGS"
190 DESIRED_FLAGS="-std=c99 $DESIRED_FLAGS"
193 for flag in $DESIRED_FLAGS ; do
194 AC_MSG_CHECKING([whether $CC accepts $flag])
195 if test_gcc_flag $flag ; then
196 CFLAGS="$CFLAGS $flag"
204 # Checks for header files.
206 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])
209 # Checks for typedefs, structures, and compiler characteristics.
215 # Checks for library functions.
217 AC_FUNC_SELECT_ARGTYPES
220 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])
227 AC_CHECK_DECLS(environ)
230 AC_CHECK_HEADERS([sys/capability.h],,enable_chroot=no)
231 AC_CHECK_HEADERS([sys/prctl.h],,enable_chroot=no)
232 AC_CHECK_FUNCS([chroot],,enable_chroot=no)
234 AM_CONDITIONAL(ENABLE_CHROOT, test "x$enable_chroot" = "xyes")
236 if test "x$enable_chroot" = "xyes" ; then
237 AC_DEFINE([ENABLE_CHROOT], 1, [Enable chroot() usage])
240 AC_CHECK_LIB(dl, dlopen, [ AC_CHECK_HEADERS(dlfcn.h, HAVE_DLOPEN=yes, HAVE_DLOPEN=no) ], HAVE_DLOPEN=no)
241 if test "x$HAVE_DLOPEN" = "xyes" ; then
242 AC_DEFINE([HAVE_DLOPEN],1,[Have dlopen()])
244 AM_CONDITIONAL(HAVE_DLOPEN, test "x$HAVE_DLOPEN" = "xyes")
246 # Check for pkg-config manually first, as if its not installed the
247 # PKG_PROG_PKG_CONFIG macro won't be defined.
248 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
250 if test x"$have_pkg_config" = "xno"; then
251 AC_MSG_ERROR(pkg-config is required to install this program)
260 AS_HELP_STRING([--disable-glib],[Disable use of GLib]),
261 [case "${enableval}" in
262 yes) HAVE_GLIB=yes ;;
264 *) AC_MSG_ERROR(bad value ${enableval} for --enable-glib) ;;
268 if test "x$HAVE_GLIB" = "xyes" ; then
269 PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ])
270 AC_SUBST(GLIB20_CFLAGS)
271 AC_SUBST(GLIB20_LIBS)
273 AM_CONDITIONAL(HAVE_GLIB, test "x$HAVE_GLIB" = "xyes")
279 AS_HELP_STRING([--disable-qt3],[Disable building of Qt3 mainloop integration]),
280 [case "${enableval}" in
283 *) AC_MSG_ERROR(bad value ${enableval} for --enable-qt3) ;;
287 if test "x$HAVE_QT3" = "xyes" ; then
288 PKG_CHECK_MODULES( QT3, [ qt-mt >= 3.0.0 ])
291 QT3_PREFIX="`$PKG_CONFIG --variable=prefix qt-mt`/bin"
293 AC_CHECK_FILE( "$QT3_PREFIX/moc-qt3", [ MOC_QT3=$QT3_PREFIX/moc-qt3 ], [
294 AC_CHECK_FILE("$QT3_PREFIX/moc", [ MOC_QT3=$QT3_PREFIX/moc ], [
295 AC_MSG_ERROR([Couldn't find QT3 moc])])])
298 AM_CONDITIONAL(HAVE_QT3, test "x$HAVE_QT3" = "xyes")
304 AS_HELP_STRING([--disable-qt4],[Disable building of Qt4Core mainloop integration]),
305 [case "${enableval}" in
308 *) AC_MSG_ERROR(bad value ${enableval} for --enable-qt4) ;;
312 if test "x$HAVE_QT4" = "xyes" ; then
313 PKG_CHECK_MODULES( QT4, [ QtCore >= 4.0.0 ])
316 QT4_PREFIX="`$PKG_CONFIG --variable=prefix QtCore`/bin"
318 AC_CHECK_FILE( "$QT4_PREFIX/moc-qt4", [ MOC_QT4=$QT4_PREFIX/moc-qt4 ], [
319 AC_CHECK_FILE("$QT4_PREFIX/moc", [ MOC_QT4=$QT4_PREFIX/moc ], [
320 AC_MSG_ERROR([Couldn't find QT4 moc])])])
323 AM_CONDITIONAL(HAVE_QT4, test "x$HAVE_QT4" = "xyes")
329 AS_HELP_STRING([--disable-gtk],[Disable use of GTK+]),
330 [case "${enableval}" in
333 *) AC_MSG_ERROR(bad value ${enableval} for --enable-gtk) ;;
337 if test "x$HAVE_GTK" = "xyes" ; then
339 PKG_CHECK_MODULES(GTK20, [ gtk+-2.0 >= 2.4.0 ])
340 AC_SUBST(GTK20_CFLAGS)
343 # Check for GLADE 2.0
344 PKG_CHECK_MODULES(GLADE20, [ libglade-2.0 >= 2.4.0 ])
345 AC_SUBST(GLADE20_CFLAGS)
346 AC_SUBST(GLADE20_LIBS)
348 AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes")
354 AS_HELP_STRING([--disable-dbus],[Disable use of D-BUS]),
355 [case "${enableval}" in
356 yes) HAVE_DBUS=yes ;;
358 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dbus) ;;
362 AC_ARG_WITH(dbus-sys, AS_HELP_STRING([--with-dbus-sys=<dir>], [where D-BUS system.d directory is]))
363 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]))
365 DBUS_VERSION="Disabled"
366 DBUS_SYS_DIR="Disabled"
367 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="Disabled"
368 if test "x$HAVE_DBUS" = "xyes" ; then
369 PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 0.34 ])
371 AC_DEFINE(HAVE_DBUS, 1, [Whether we have D-BUS or not])
373 DBUS_VERSION=`$PKG_CONFIG dbus-1 --modversion`
374 DBUS_VERSION_MAJOR=`echo $DBUS_VERSION | awk -F. '{print $1}'`
375 DBUS_VERSION_MINOR=`echo $DBUS_VERSION | awk -F. '{print $2}'`
376 DBUS_VERSION_MICRO=`echo $DBUS_VERSION | awk -F. '{print $3}'`
377 if test "z$DBUS_VERSION_MAJOR" = "z"; then
378 DBUS_VERSION_MAJOR="0"
380 if test "z$DBUS_VERSION_MINOR" = "z"; then
381 DBUS_VERSION_MINOR="0"
383 if test "z$DBUS_VERSION_MICRO" = "z"; then
384 DBUS_VERSION_MICRO="0"
387 if test "z$DBUS_VERSION_MAJOR" = "z0" -a "z$DBUS_VERSION_MINOR" = "z0" -a "z$DBUS_VERSION_MICRO" = "z0"; then
388 echo "Error: Couldn't determine the version of your DBUS package."
389 echo " This is probably an error in this script, please report it"
390 echo " along with the following information:"
391 echo " Base DBUS version ='$DBUS_VERSION'"
392 echo " DBUS_VERSION_MAJOR='$DBUS_VERSION_MAJOR'"
393 echo " DBUS_VERSION_MINOR='$DBUS_VERSION_MINOR'"
394 echo " DBUS_VERSION_MICRO='$DBUS_VERSION_MICRO'"
397 echo "Your dbus version is $DBUS_VERSION_MAJOR,$DBUS_VERSION_MINOR,$DBUS_VERSION_MICRO."
398 DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_VERSION_MAJOR=$DBUS_VERSION_MAJOR"
399 DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_VERSION_MINOR=$DBUS_VERSION_MINOR"
400 DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_VERSION_MICRO=$DBUS_VERSION_MICRO"
403 DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_API_SUBJECT_TO_CHANGE"
404 AC_SUBST(DBUS_CFLAGS)
407 if ! test -z "$with_dbus_sys" ; then
408 DBUS_SYS_DIR="$with_dbus_sys"
410 DBUS_SYS_DIR="${sysconfdir}/dbus-1/system.d"
412 AC_SUBST(DBUS_SYS_DIR)
414 if ! test -z "$with_dbus_system_address" ; then
415 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="$with_dbus_system_address"
417 # This is ugly, but D-BUS doesn't export this address for us
418 # so we have to guess, pretty much all setups i've seen have
419 # it in /var/lib/dbus or /var/run/dbus, and its defaulted to
420 # /var/run upstream so we will try guess first then default
423 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="unix:path=/var/run/dbus/system_bus_socket"
424 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"
425 for sock in $TRY_SOCKETS; do
426 if test -S $sock; then
427 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="unix:path=$sock"
431 AC_SUBST(DBUS_SYSTEM_BUS_DEFAULT_ADDRESS)
434 AM_CONDITIONAL(HAVE_DBUS, test "x$HAVE_DBUS" = "xyes")
440 AS_HELP_STRING([--disable-expat],[Disable use of Expat]),
441 [case "${enableval}" in
442 yes) HAVE_EXPAT=yes ;;
444 *) AC_MSG_ERROR(bad value ${enableval} for --enable-expat) ;;
448 if test "x$HAVE_EXPAT" = "xyes" ; then
449 AC_CHECK_LIB(expat, XML_ParserCreate, [ AC_CHECK_HEADERS(expat.h, have_expat=true, have_expat=false) ], have_expat=false)
451 if ! $have_expat ; then
452 AC_MSG_ERROR([*** libexpat not found ***])
455 AM_CONDITIONAL(HAVE_EXPAT, test "x$HAVE_EXPAT" = "xyes")
461 AS_HELP_STRING([--disable-gdbm],[Disable use of GDBM]),
462 [case "${enableval}" in
463 yes) HAVE_GDBM=yes ;;
465 *) AC_MSG_ERROR(bad value ${enableval} for --enable-gdbm) ;;
469 if test "x$HAVE_GDBM" = "xyes" ; then
470 AC_CHECK_LIB(gdbm, gdbm_open, [ AC_CHECK_HEADERS(gdbm.h, have_gdbm=true, have_gdbm=false) ], have_gdbm=false)
472 if ! $have_gdbm ; then
473 AC_MSG_ERROR([*** libgdbm not found ***])
475 AC_DEFINE([HAVE_GDBM],[],[Support for GDBM])
477 AM_CONDITIONAL(HAVE_GDBM, test "x$HAVE_GDBM" = "xyes")
482 AC_ARG_ENABLE(libdaemon,
483 AS_HELP_STRING([--disable-libdaemon],[Disable use of libdaemon]),
484 [case "${enableval}" in
485 yes) HAVE_LIBDAEMON=yes ;;
486 no) HAVE_LIBDAEMON=no ;;
487 *) AC_MSG_ERROR(bad value ${enableval} for --enable-libdaemon) ;;
489 [HAVE_LIBDAEMON=yes])
491 if test "x$HAVE_LIBDAEMON" = "xyes" ; then
492 PKG_CHECK_MODULES(LIBDAEMON, [ libdaemon >= 0.5 ])
493 AC_SUBST(LIBDAEMON_CFLAGS)
494 AC_SUBST(LIBDAEMON_LIBS)
496 AM_CONDITIONAL(HAVE_LIBDAEMON, test "x$HAVE_LIBDAEMON" = "xyes")
501 AC_ARG_ENABLE(python,
502 AS_HELP_STRING([--disable-python], [Disable scripts that depends on python]),
503 [case "${enableval}" in
504 yes) HAVE_PYTHON=yes ;;
505 no) HAVE_PYTHON=no ;;
506 *) AC_MSG_ERROR([bad value ${enableval} for --enable-python]) ;;
507 esac],[HAVE_PYTHON=yes])
512 if test "x$HAVE_PYTHON" = "xyes" ; then
513 AM_PATH_PYTHON([2.4])
516 AS_HELP_STRING([--disable-pygtk],[Disable use of GTK in Python]),
517 [case "${enableval}" in
518 yes) HAVE_PYGTK=yes ;;
520 *) AC_MSG_ERROR(bad value ${enableval} for --enable-pygtk) ;;
524 if test "x$HAVE_PYGTK" = "xyes" ; then
525 AM_CHECK_PYMOD(gtk,,,[AC_MSG_ERROR(Could not find Python module gtk)])
529 if test "x$HAVE_DBUS" = "xyes" ; then
530 AC_ARG_ENABLE(python-dbus,
531 AS_HELP_STRING([--disable-python-dbus],[Disable use of D-BUS in Python]),
532 [case "${enableval}" in
533 yes) HAVE_PYTHON_DBUS=yes ;;
534 no) HAVE_PYTHON_DBUS=no ;;
535 *) AC_MSG_ERROR(bad value ${enableval} for --enable-python-dbus) ;;
537 [HAVE_PYTHON_DBUS=yes])
539 if test "x$HAVE_PYTHON_DBUS" = "xyes"; then
540 AM_CHECK_PYMOD(dbus,,,[AC_MSG_ERROR(Could not find Python module dbus)])
543 AM_CHECK_PYMOD(socket,,,[AC_MSG_ERROR(Could not find Python module socket)])
544 AM_CHECK_PYMOD(gdbm,,,[AC_MSG_ERROR(Could not find Python module gdbm)])
547 AM_CONDITIONAL(HAVE_PYTHON, [test "x$HAVE_PYTHON" = "xyes" ])
548 AM_CONDITIONAL(HAVE_PYGTK, test "x$HAVE_PYGTK" = "xyes")
549 AM_CONDITIONAL(HAVE_PYTHON_DBUS, test "x$HAVE_PYTHON_DBUS" = "xyes")
552 # Check for mono stuff
555 if test "x$HAVE_DBUS" = "xyes" ; then
557 AS_HELP_STRING([--disable-mono],[Disable mono bindings]),
558 [case "${enableval}" in
559 yes) HAVE_MONO=yes ;;
561 *) AC_MSG_ERROR(bad value ${enableval} for --enable-mono) ;;
565 if test "x$HAVE_MONO" = "xyes" ; then
566 AC_PATH_PROG(MCS, mcs)
567 if test "x$MCS" = "x" ; then
568 AC_MSG_ERROR([Can not find "mcs" in your PATH])
571 AC_PATH_PROG(GACUTIL, gacutil)
572 if test "x$GACUTIL" = "x" ; then
573 AC_MSG_ERROR([Can not find "gacutil" in your PATH])
580 AM_CONDITIONAL(HAVE_MONO, test "x$HAVE_MONO" = "xyes")
583 # Check for monodoc stuff
586 AC_ARG_ENABLE(monodoc,
587 AS_HELP_STRING([--disable-monodoc],[Disable documentation for mono bindings]),
588 [case "${enableval}" in
589 yes) HAVE_MONODOC=yes ;;
590 no) HAVE_MONODOC=no ;;
591 *) AC_MSG_ERROR(bad value ${enableval} for --enable-monodoc) ;;
595 if test "x$HAVE_MONO" = "xyes" && test "x$HAVE_MONODOC" = "xyes" ; then
596 PKG_CHECK_MODULES(MONODOC, [monodoc >= 1.1.8])
597 MONODOC_DIR=`$PKG_CONFIG --variable=sourcesdir monodoc`
599 AC_PATH_PROG(MONODOCER, monodocer)
600 AC_PATH_PROG(MDASSEMBLER, mdassembler)
602 AC_SUBST(MONODOC_DIR)
604 AC_SUBST(MDASSEMBLER)
606 AM_CONDITIONAL(HAVE_MONODOC, test "x$HAVE_MONODOC" = "xyes")
609 # Defining Avahi User and Group.
611 AC_ARG_WITH(avahi_user, AS_HELP_STRING([--with-avahi-user=<user>],[User for running the Avahi daemon (avahi)]))
612 if test -z "$with_avahi_user" ; then
615 AVAHI_USER=$with_avahi_user
618 AC_DEFINE_UNQUOTED(AVAHI_USER,"$AVAHI_USER", [User for running the Avahi daemon])
620 AC_ARG_WITH(avahi_group,AS_HELP_STRING([--with-avahi-group=<group>],[Group for Avahi (avahi)]))
621 if test -z "$with_avahi_group" ; then
624 AVAHI_GROUP=$with_avahi_group
626 AC_SUBST(AVAHI_GROUP)
627 AC_DEFINE_UNQUOTED(AVAHI_GROUP,"$AVAHI_GROUP", [Group for Avahi])
632 avahi_runtime_dir="${localstatedir}/run"
633 avahi_socket="${avahi_runtime_dir}/avahi-daemon/socket"
634 AC_SUBST(avahi_runtime_dir)
635 AC_SUBST(avahi_socket)
638 # Avahi interfaces dir
640 if test "x$HAVE_PYTHON_DBUS" = "xyes" -o "x$HAVE_GTK" = "xyes"; then
641 interfacesdir="${datadir}/${PACKAGE}/interfaces/"
642 AC_SUBST(interfacesdir)
656 DX_INIT_DOXYGEN(avahi, doxygen.cfg, doxygen)
659 # Build and Install man pages
661 AC_ARG_ENABLE(manpages,
662 AS_HELP_STRING([--disable-manpages],[Disable building and installation of man pages]),
663 [case "${enableval}" in
666 *) AC_MSG_ERROR([bad value ${enableval} for --disable-manpages]) ;;
667 esac],[manpages=yes])
669 if test x$manpages = xyes ; then
671 # XMLTOMAN manpage generation
673 AC_ARG_ENABLE(xmltoman,
674 AS_HELP_STRING([--disable-xmltoman],[Disable rebuilding of man pages with xmltoman]),
675 [case "${enableval}" in
678 *) AC_MSG_ERROR([bad value ${enableval} for --disable-xmltoman]) ;;
679 esac],[xmltoman=yes])
681 if test x$xmltoman = xyes ; then
682 AC_CHECK_PROG(have_xmltoman, xmltoman, yes, no)
685 if test x$have_xmltoman = xno -o x$xmltoman = xno; then
686 if ! test -e man/avahi-daemon.8 ; then
687 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])
690 AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***])
694 AM_CONDITIONAL([USE_XMLTOMAN], [test "x$xmltoman" = xyes])
695 AM_CONDITIONAL([BUILD_MANPAGES], [test "x$manpages" = xyes])
698 # Conditionally compile test and example programs
701 AS_HELP_STRING([--enable-tests],[Enable building of tests and examples]),
702 [case "${enableval}" in
703 yes) ENABLE_TESTS=yes ;;
704 no) ENABLE_TESTS=no ;;
705 *) AC_MSG_ERROR(bad value ${enableval} for --enable-tests) ;;
709 AM_CONDITIONAL([ENABLE_TESTS], [test "x$ENABLE_TESTS" = "xyes"])
712 # Optionally enable libdns_sd compatibility support
714 AC_ARG_ENABLE(compat-libdns_sd,
715 AS_HELP_STRING([--enable-compat-libdns_sd],[Enable compatibility layer for libdns_sd]),
716 [case "${enableval}" in
717 yes) ENABLE_COMPAT_LIBDNS_SD=yes ;;
718 no) ENABLE_COMPAT_LIBDNS_SD=no ;;
719 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-libdns_sd) ;;
721 [ENABLE_COMPAT_LIBDNS_SD=no])
723 AM_CONDITIONAL([ENABLE_COMPAT_LIBDNS_SD], [test "x$ENABLE_COMPAT_LIBDNS_SD" = "xyes"])
726 # Optionally enable HOWL compatibility support
728 AC_ARG_ENABLE(compat-howl,
729 AS_HELP_STRING([--enable-compat-howl],[Enable compatibility layer for HOWL]),
730 [case "${enableval}" in
731 yes) ENABLE_COMPAT_HOWL=yes ;;
732 no) ENABLE_COMPAT_HOWL=no ;;
733 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-howl) ;;
735 [ENABLE_COMPAT_HOWL=no])
737 AM_CONDITIONAL([ENABLE_COMPAT_HOWL], [test "x$ENABLE_COMPAT_HOWL" = "xyes"])
740 # ==========================================================================
743 avahi-common/Makefile
747 avahi-daemon/Makefile
748 avahi-daemon/avahi-dbus.conf
749 avahi-discover-standalone/Makefile
750 avahi-client/Makefile
752 initscript/debian/Makefile
753 initscript/gentoo/Makefile
754 initscript/archlinux/Makefile
755 initscript/suse/Makefile
756 initscript/fedora/Makefile
757 initscript/mandriva/Makefile
758 initscript/darwin/Makefile
759 initscript/freebsd/Makefile
760 initscript/slackware/Makefile
761 avahi-dnsconfd/Makefile
763 avahi-python/Makefile
764 avahi-python/avahi/Makefile
769 service-type-database/Makefile
771 avahi-compat-libdns_sd/Makefile
772 avahi-compat-howl/Makefile
773 avahi-compat-howl/samples/Makefile
777 # ==========================================================================
779 ---{ $PACKAGE_NAME $VERSION }---
782 sysconfdir: ${sysconfdir}
783 localstatedir: ${localstatedir}
784 avahi socket: ${avahi_socket}
785 dbus-1 system.d dir: ${DBUS_SYS_DIR}
786 dbus-1 version: ${DBUS_VERSION}
787 dbus-1 system socket ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}
790 Enable GLIB: ${HAVE_GLIB}
791 Enable GTK: ${HAVE_GTK}
792 Enable D-BUS: ${HAVE_DBUS}
793 Enable Expat: ${HAVE_EXPAT}
794 Enable GDBM: ${HAVE_GDBM}
795 Enable libdaemon: ${HAVE_LIBDAEMON}
796 Enable Python: ${HAVE_PYTHON}
797 Enable pygtk: ${HAVE_PYGTK}
798 Enable python-dbus: ${HAVE_PYTHON_DBUS}
799 Enable QT3: ${HAVE_QT3}
800 Enable QT4: ${HAVE_QT4}
801 Enable Mono: ${HAVE_MONO}
802 Enable Monodoc: ${HAVE_MONODOC}
803 Distribution/OS: ${with_distro}
804 User for Avahi: ${AVAHI_USER}
805 Group for Avahi: ${AVAHI_GROUP}
806 Enable chroot(): ${enable_chroot}
809 BUILD_DAEMON="no (You need libdaemon and expat!)"
811 if test "x$HAVE_EXPAT" = "xyes" -a "x$HAVE_LIBDAEMON" = "xyes" ; then
815 BUILD_PYTHON="no (You need python, pygtk and python-dbus!)"
817 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
821 BUILD_CLIENT="no (You need avahi-daemon and dbus!)"
823 if test "x$BUILD_DAEMON" = "xyes" -a "x$HAVE_DBUS" = "xyes" ; then
827 if test "x$ENABLE_COMPAT_LIBDNS_SD" = "xyes" -a "x$BUILD_CLIENT" != "xyes" ; then
828 ENABLE_COMPAT_LIBDNS_SD="no (You need libavahi-client!)"
830 if test "x$ENABLE_COMPAT_HOWL" = "xyes" -a "x$BUILD_CLIENT" != "xyes" ; then
831 ENABLE_COMPAT_HOWL="no (You need libavahi-client!)"
836 Building libavahi-core yes
837 Building avahi-daemon: ${BUILD_DAEMON}
838 Building avahi-dnsconfd: ${BUILD_DAEMON}
839 Building libavahi-client: ${BUILD_CLIENT}
840 Building avahi-utils: ${BUILD_CLIENT}
841 Building avahi-python: ${BUILD_PYTHON}
842 Building libavahi-glib: ${HAVE_GLIB}
843 Building avahi-discover-standalone: ${HAVE_GTK}
844 Building libavahi-qt3: ${HAVE_QT3}
845 Building libavahi-qt4: ${HAVE_QT4}
846 Building avahi-sharp: ${HAVE_MONO}
847 Building avahi-compat-libdns_sd: ${ENABLE_COMPAT_LIBDNS_SD}
848 Building avahi-compat-howl: ${ENABLE_COMPAT_HOWL}
849 Building tests: ${ENABLE_TESTS}