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.23],[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, [8:0:5])
32 AC_SUBST(LIBAVAHI_CORE_VERSION_INFO, [5:5:0])
33 AC_SUBST(LIBAVAHI_CLIENT_VERSION_INFO, [5:4:2])
34 AC_SUBST(LIBAVAHI_GLIB_VERSION_INFO, [1:1:0])
35 AC_SUBST(LIBAVAHI_GOBJECT_VERSION_INFO, [0:1:0])
36 AC_SUBST(LIBAVAHI_QT3_VERSION_INFO, [1:2:0])
37 AC_SUBST(LIBAVAHI_QT4_VERSION_INFO, [1:2:0])
38 AC_SUBST(LIBAVAHI_UI_VERSION_INFO, [1:0:1])
40 # Do not touch these, since they we took this version-info from upstream HOWL/Bonjour
41 AC_SUBST(LIBAVAHI_COMPAT_LIBDNS_SD_VERSION_INFO, [1:0:0])
42 AC_SUBST(LIBAVAHI_COMPAT_HOWL_VERSION_INFO, [0:0:0])
43 AC_SUBST(HOWL_COMPAT_VERSION, [0.9.8])
45 if type -p stow > /dev/null && test -d /usr/local/stow ; then
46 AC_MSG_NOTICE([*** Found /usr/local/stow: default install prefix set to /usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION} ***])
47 ac_default_prefix="/usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION}"
50 # Checks for programs.
58 AC_PROG_GCC_TRADITIONAL
63 AC_ARG_ENABLE([stack-protector],
64 [AS_HELP_STRING([--disable-stack-protector],
65 [Disable GCC's/libc's stack-smashing protection])],
66 [case "${enableval}" in
67 yes) enable_ssp=yes ;;
69 *) AC_MSG_ERROR([invalid value ${enableval} for --disable-stack-protector]) ;;
73 if test x"$enable_ssp" = x"yes" && test x"$GCC" != x"yes"; then
74 AC_MSG_NOTICE([Disabling stack-smashing protection because compiler is not GCC])
78 if test x"$enable_ssp" = x"yes"; then
79 # Check for broken ssp in libc: http://www.avahi.org/ticket/105
80 # libc's brokenness will get in the way regardless of whether -lssp is
81 # provided, but provide it anyway (otherwise non-libc ssp would wrongly
84 # Get -lssp if it exists
87 AC_MSG_CHECKING([whether stack-smashing protection is available])
88 ssp_old_cflags="$CFLAGS"
89 ssp_old_ldflags="$LDFLAGS"
90 CFLAGS="$CFLAGS -Werror -fstack-protector-all -fPIC"
91 LDFLAGS="$LDFLAGS -Wl,-z,defs"
92 cat confdefs.h > conftest.c
93 cat >>conftest.c <<_ACEOF
94 void test_broken_ssp(c)
97 char arr[[123]], *p; /* beware of possible double-braces if copying this */
98 for (p = arr; *c; ++p) {
106 if $CC -c $CFLAGS $CPPFLAGS -o conftest.o conftest.c >/dev/null 2>&1; then
108 AC_MSG_CHECKING([whether stack-smashing protection is buggy])
109 if $CC -o conftest.so $LDFLAGS -shared conftest.o $LIBS >/dev/null 2>&1; then
119 rm -f conftest.c conftest.o conftest.so
121 CFLAGS="$ssp_old_cflags"
122 LDFLAGS="$ssp_old_ldflags"
125 if test x"$enable_ssp" = x"yes"; then
126 # Do this the long way so we don't call GCC_STACK_PROTECT_LIB twice
130 GCC_STACK_PROTECT_CXX
132 # XXX: Update the enable_ssp value now for output later?
138 AC_CACHE_CHECK([whether the C++ compiler works], [avahi_cv_sys_cxx_works], [
140 AC_COMPILE_IFELSE([int main() { return 0; }], [avahi_cv_sys_cxx_works=yes],
141 [avahi_cv_sys_cxx_works=no])
144 [ if [ "x$avahi_cv_sys_cxx_works" = "xno" ]; then ]
145 AC_MSG_FAILURE([The C++ compiler does not work])
148 ACX_PTHREAD(,AC_MSG_ERROR([Missing POSIX Threads support]))
151 # Check for netlink.h
153 AC_CHECK_HEADER(linux/netlink.h,
155 AC_DEFINE([HAVE_NETLINK],[],[Support for Linux netlink])
157 #include <sys/socket.h>
158 #include <asm/types.h>
161 AM_CONDITIONAL(HAVE_NETLINK, [ test x"$HAVE_NETLINK" = xyes ])
164 # Check for net/route.h
166 AC_CHECK_HEADER(net/route.h,
168 AC_DEFINE([HAVE_PF_ROUTE],[],[Support for PF_ROUTE])
170 #include <sys/types.h>
171 #include <sys/socket.h>
174 AM_CONDITIONAL(HAVE_PF_ROUTE, [ test x"$HAVE_PF_ROUTE" = xyes ])
177 # Check for sys/filio.h; needed for FIONREAD on Solaris
179 AC_CHECK_HEADER(sys/filio.h,
181 AC_DEFINE([HAVE_SYS_FILIO_H],[],[Support for sys/filio.h])
185 AM_CONDITIONAL(HAVE_SYS_FILIO_H, [ test x"$HAVE_SYS_FILIO_H" = xyes ])
188 # Check for sys/sysctl.h; not present on Solaris
190 AC_CHECK_HEADER(sys/sysctl.h,
192 AC_DEFINE([HAVE_SYS_SYSCTL_H],[],[Support for sys/sysctl.h])
194 #include <sys/types.h>
195 #include <sys/socket.h>
196 #include <sys/param.h>
199 AM_CONDITIONAL(HAVE_SYS_SYSCTL_H, [ test x"$HAVE_SYS_SYSCTL_H" = xyes ])
202 # Check for lifconf struct; only present on Solaris
204 AC_MSG_CHECKING(for struct lifconf)
205 AC_CACHE_VAL(avahi_cv_has_struct_lifconf,
207 [#include <sys/socket.h>
209 ],[sizeof (struct lifconf);],
210 avahi_cv_has_struct_lifconf=yes,avahi_cv_has_struct_lifconf=no)])
211 AC_MSG_RESULT($avahi_cv_has_struct_lifconf)
212 if test $avahi_cv_has_struct_lifconf = yes; then
213 AC_DEFINE(HAVE_STRUCT_LIFCONF,1,[Define if there is a struct lifconf.])
217 # Check for struct ip_mreqn
219 AC_MSG_CHECKING(for struct ip_mreqn)
220 AC_TRY_COMPILE([#include <netinet/in.h>], [
221 struct ip_mreqn mreq;
222 mreq.imr_address.s_addr = 0;
226 AC_DEFINE([HAVE_STRUCT_IP_MREQN],[],[Support for struct ip_mreqn])
228 # We'll just have to try and use struct ip_mreq
230 AC_MSG_CHECKING(for struct ip_mreq)
231 AC_TRY_COMPILE([#include <netinet/in.h>], [
233 mreq.imr_interface.s_addr = 0;
237 AC_DEFINE([HAVE_STRUCT_IP_MREQ],[],[Support for struct ip_mreq])
239 # No multicast support
245 # Detecting the linux distribution for specific things like init scripts.
247 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]))
248 if test "z$with_distro" = "z"; then
249 if test "$cross_compiling" = yes; then
250 AC_MSG_WARN([Target distribution cannot be reliably detected when cross-compiling. You should specify it with --with-distro (see $0 --help for recognized distros)])
252 AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
253 AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
254 AC_CHECK_FILE(/etc/arch-release,with_distro="archlinux")
255 AC_CHECK_FILE(/etc/debian_version,with_distro="debian")
256 AC_CHECK_FILE(/etc/redhat-release,with_distro="fedora")
257 AC_CHECK_FILE(/etc/mandriva-release,with_distro="mandriva")
258 AC_CHECK_FILE(/etc/slackware-version,with_distro="slackware")
260 if test "z$with_distro" = "z"; then
261 with_distro=`uname -s`
264 with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]' `
267 debian|gentoo|archlinux|suse|fedora|mandriva|darwin|freebsd|slackware|none)
270 AC_MSG_WARN([Your distribution (${with_distro}) is supported but no init script exist yet! (patches welcome)])
273 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.])
276 AC_MSG_ERROR([Your distribution (${with_distro}) is not yet supported, init scripts and D-Bus configuration will not be installed! (patches welcome), you can specify --with-distro=none to skip this check])
280 AM_CONDITIONAL(TARGET_SUSE, test x"$with_distro" = xsuse)
281 AM_CONDITIONAL(TARGET_GENTOO, test x"$with_distro" = xgentoo)
282 AM_CONDITIONAL(TARGET_DEBIAN, test x"$with_distro" = xdebian)
283 AM_CONDITIONAL(TARGET_ARCHLINUX, test x"$with_distro" = xarchlinux)
284 AM_CONDITIONAL(TARGET_FEDORA, test x"$with_distro" = xfedora)
285 AM_CONDITIONAL(TARGET_MANDRIVA, test x"$with_distro" = xmandriva)
286 AM_CONDITIONAL(TARGET_DARWIN, test x"$with_distro" = xdarwin)
287 AM_CONDITIONAL(TARGET_NETBSD, test x"$with_distro" = xnetbsd)
288 AM_CONDITIONAL(TARGET_FREEBSD, test x"$with_distro" = xfreebsd)
289 AM_CONDITIONAL(TARGET_SLACKWARE, test x"$with_distro" = xslackware)
292 AC_LANG_CONFTEST([int main() {}])
293 $CC -c conftest.c $CFLAGS $@ > /dev/null 2> /dev/null
299 # If using GCC specify some additional parameters
300 if test "x$GCC" = "xyes" ; then
302 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 -fPIC"
304 if test "x$HAVE_NETLINK" = "xyes" ; then
305 # Test whether rtnetlink.h can be included when compiled with -std=c99
306 # some distributions (e.g. archlinux) have broken headers that dont
307 # define __u64 with -std=c99
308 AC_MSG_CHECKING([checking whether rtnetlink.h can be included with -std=c99])
311 AC_TRY_COMPILE([#include <linux/rtnetlink.h>], [],
312 use_stdc99=yes, use_stdc99=no)
314 if test x"$use_stdc99" = xyes; then
315 DESIRED_FLAGS="-std=c99 $DESIRED_FLAGS"
323 DESIRED_FLAGS="-std=c99 $DESIRED_FLAGS"
326 for flag in $DESIRED_FLAGS ; do
327 AC_MSG_CHECKING([whether $CC accepts $flag])
328 if test_gcc_flag $flag ; then
329 CFLAGS="$CFLAGS $flag"
337 # Checks for header files.
339 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])
342 # Checks for typedefs, structures, and compiler characteristics.
349 AC_SEARCH_LIBS([inet_ntop],[nsl])
350 AC_SEARCH_LIBS([recv],[socket])
351 AC_CHECK_DECL([CMSG_SPACE],,CFLAGS="$CFLAGS -D_XOPEN_SOURCE=500 -D__EXTENSIONS__")
353 # Checks for library functions.
355 AC_FUNC_SELECT_ARGTYPES
356 # avahi_malloc actually returns NULL for avahi_malloc(0), so it does not matter
357 # whether libc's malloc does too. (Same for realloc.)
360 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])
367 AC_CHECK_DECLS(environ)
369 # check if gcc's -fvisibility is supported
370 CHECK_VISIBILITY_HIDDEN
373 AC_CHECK_HEADERS([sys/capability.h],,enable_chroot=no)
374 AC_CHECK_HEADERS([sys/prctl.h],,enable_chroot=no)
375 AC_CHECK_FUNCS([chroot],,enable_chroot=no)
377 AM_CONDITIONAL(ENABLE_CHROOT, test "x$enable_chroot" = "xyes")
379 if test "x$enable_chroot" = "xyes" ; then
380 AC_DEFINE([ENABLE_CHROOT], 1, [Enable chroot() usage])
383 AC_CHECK_LIB(dl, dlopen, [ AC_CHECK_HEADERS(dlfcn.h, HAVE_DLOPEN=yes, HAVE_DLOPEN=no) ], HAVE_DLOPEN=no)
384 if test "x$HAVE_DLOPEN" = "xyes" ; then
385 AC_DEFINE([HAVE_DLOPEN],1,[Have dlopen()])
387 AM_CONDITIONAL(HAVE_DLOPEN, test "x$HAVE_DLOPEN" = "xyes")
390 AC_CHECK_HEADERS([linux/inotify.h], [have_inotify=yes])
391 AC_CHECK_HEADERS([sys/inotify.h], [have_inotify=yes])
393 AM_CONDITIONAL(HAVE_INOTIFY, test "x$have_inotify" = "xyes")
395 if test "x$have_inotify" = "xyes" ; then
396 AC_DEFINE([HAVE_INOTIFY], 1, [Enable Linux inotify() usage])
400 AC_CHECK_FUNCS([kqueue],,have_kqueue=no)
402 AM_CONDITIONAL(HAVE_KQUEUE, test "x$have_kqueue" = "xyes")
404 if test "x$have_kqueue" = "xyes" ; then
405 AC_DEFINE([HAVE_KQUEUE], 1, [Enable BSD kqueue() usage])
408 AM_GNU_GETTEXT([external])
410 IT_PROG_INTLTOOL([0.35.0])
411 GETTEXT_PACKAGE=avahi
412 AC_SUBST([GETTEXT_PACKAGE])
413 AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[Gettext package])
416 avahilocaledir='${prefix}/${DATADIRNAME}/locale'
417 AC_SUBST(avahilocaledir)
420 # Check for pkg-config manually first, as if its not installed the
421 # PKG_PROG_PKG_CONFIG macro won't be defined.
422 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
424 if test x"$have_pkg_config" = "xno"; then
425 AC_MSG_ERROR(pkg-config is required to install this program)
434 AS_HELP_STRING([--disable-glib],[Disable use of GLib]),
435 [case "${enableval}" in
436 yes) HAVE_GLIB=yes ;;
438 *) AC_MSG_ERROR(bad value ${enableval} for --enable-glib) ;;
442 if test "x$HAVE_GLIB" = "xyes" ; then
443 PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ])
444 AC_SUBST(GLIB20_CFLAGS)
445 AC_SUBST(GLIB20_LIBS)
447 AM_CONDITIONAL(HAVE_GLIB, test "x$HAVE_GLIB" = "xyes")
450 # Check for GLIB's gobject 2.0
452 AC_ARG_ENABLE(gobject,
453 AS_HELP_STRING([--disable-gobject],[Disable use of GLib GObject]),
454 [case "${enableval}" in
455 yes) HAVE_GOBJECT=yes ;;
456 no) HAVE_GOBJECT=no ;;
457 *) AC_MSG_ERROR(bad value ${enableval} for --enable-gobject) ;;
461 if test "x$HAVE_GOBJECT" = "xyes" ; then
462 PKG_CHECK_MODULES(GOBJECT, [ glib-2.0 >= 2.4.0 gobject-2.0 ])
463 AC_SUBST(GOBJECT_CFLAGS)
464 AC_SUBST(GOBJECT_LIBS)
466 AM_CONDITIONAL(HAVE_GOBJECT, test "x$HAVE_GOBJECT" = "xyes")
472 AS_HELP_STRING([--disable-qt3],[Disable building of Qt3 mainloop integration]),
473 [case "${enableval}" in
476 *) AC_MSG_ERROR(bad value ${enableval} for --enable-qt3) ;;
480 if test "x$HAVE_QT3" = "xyes" ; then
481 PKG_CHECK_MODULES( QT3, [ qt-mt >= 3.0.0 ])
484 QT3_PREFIX="`$PKG_CONFIG --variable=prefix qt-mt`/bin"
485 AC_PATH_PROGS(MOC_QT3, [moc-qt3 moc], no, [$QT3_PREFIX])
486 if test "$MOC_QT3" = no; then
487 AC_MSG_ERROR([Could not find QT3 moc])
491 AM_CONDITIONAL(HAVE_QT3, test "x$HAVE_QT3" = "xyes")
497 AS_HELP_STRING([--disable-qt4],[Disable building of Qt4Core mainloop integration]),
498 [case "${enableval}" in
501 *) AC_MSG_ERROR(bad value ${enableval} for --enable-qt4) ;;
505 if test "x$HAVE_QT4" = "xyes" ; then
506 PKG_CHECK_MODULES( QT4, [ QtCore >= 4.0.0 ])
509 QT4_PREFIX="`$PKG_CONFIG --variable=prefix QtCore`/bin"
510 AC_PATH_PROGS(MOC_QT4, [moc-qt4 moc], no, [$QT4_PREFIX])
511 if test "$MOC_QT4" = no; then
512 AC_MSG_ERROR([Could not find QT4 moc])
516 AM_CONDITIONAL(HAVE_QT4, test "x$HAVE_QT4" = "xyes")
522 AS_HELP_STRING([--disable-gtk],[Disable use of GTK+]),
523 [case "${enableval}" in
526 *) AC_MSG_ERROR(bad value ${enableval} for --enable-gtk) ;;
530 if test "x$HAVE_GTK" = "xyes" ; then
532 PKG_CHECK_MODULES(GTK20, [ gtk+-2.0 >= 2.4.0 ])
533 AC_SUBST(GTK20_CFLAGS)
536 # Check for GLADE 2.0
537 PKG_CHECK_MODULES(GLADE20, [ libglade-2.0 >= 2.4.0 ])
538 AC_SUBST(GLADE20_CFLAGS)
539 AC_SUBST(GLADE20_LIBS)
541 AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes")
547 AS_HELP_STRING([--disable-dbus],[Disable use of D-Bus]),
548 [case "${enableval}" in
549 yes) HAVE_DBUS=yes ;;
551 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dbus) ;;
555 AC_ARG_WITH(dbus-sys, AS_HELP_STRING([--with-dbus-sys=<dir>], [Path to D-Bus system.d directory]))
556 AC_ARG_WITH(dbus-system-socket, AS_HELP_STRING([--with-dbus-system-address=<address>], [Path to the D-Bus system socket, you probably want to put unix:path= at the start. Only needed for very old D-Bus releases]))
558 DBUS_VERSION="Disabled"
559 DBUS_SYS_DIR="Disabled"
560 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="Disabled"
561 if test "x$HAVE_DBUS" = "xyes" ; then
562 PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 0.34 ])
564 AC_DEFINE(HAVE_DBUS, 1, [Whether we have D-Bus or not])
566 DBUS_VERSION=`$PKG_CONFIG dbus-1 --modversion`
567 DBUS_VERSION_MAJOR=`echo $DBUS_VERSION | awk -F. '{print $1}'`
568 DBUS_VERSION_MINOR=`echo $DBUS_VERSION | awk -F. '{print $2}'`
569 DBUS_VERSION_MICRO=`echo $DBUS_VERSION | awk -F. '{print $3}'`
570 if test "z$DBUS_VERSION_MAJOR" = "z"; then
571 DBUS_VERSION_MAJOR="0"
573 if test "z$DBUS_VERSION_MINOR" = "z"; then
574 DBUS_VERSION_MINOR="0"
576 if test "z$DBUS_VERSION_MICRO" = "z"; then
577 DBUS_VERSION_MICRO="0"
580 if test "z$DBUS_VERSION_MAJOR" = "z0" -a "z$DBUS_VERSION_MINOR" = "z0" -a "z$DBUS_VERSION_MICRO" = "z0"; then
581 echo "Error: Couldn't determine the version of your D-Bus package."
582 echo " This is probably an error in this script, please report it"
583 echo " along with the following information:"
584 echo " Base D-Buss version ='$DBUS_VERSION'"
585 echo " DBUS_VERSION_MAJOR='$DBUS_VERSION_MAJOR'"
586 echo " DBUS_VERSION_MINOR='$DBUS_VERSION_MINOR'"
587 echo " DBUS_VERSION_MICRO='$DBUS_VERSION_MICRO'"
590 echo "Your D-Bus version is $DBUS_VERSION_MAJOR,$DBUS_VERSION_MINOR,$DBUS_VERSION_MICRO."
591 DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_VERSION_MAJOR=$DBUS_VERSION_MAJOR"
592 DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_VERSION_MINOR=$DBUS_VERSION_MINOR"
593 DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_VERSION_MICRO=$DBUS_VERSION_MICRO"
596 DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_API_SUBJECT_TO_CHANGE"
597 AC_SUBST(DBUS_CFLAGS)
600 if ! test -z "$with_dbus_sys" ; then
601 DBUS_SYS_DIR="$with_dbus_sys"
603 DBUS_SYS_DIR="${sysconfdir}/dbus-1/system.d"
605 AC_SUBST(DBUS_SYS_DIR)
607 if ! test -z "$with_dbus_system_address" ; then
608 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="$with_dbus_system_address"
610 # This is ugly, but D-Bus doesn't export this address for us
611 # so we have to guess, pretty much all setups i've seen have
612 # it in /var/lib/dbus or /var/run/dbus, and its defaulted to
613 # /var/run upstream so we will try guess first then default
616 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="unix:path=/var/run/dbus/system_bus_socket"
617 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"
618 for sock in $TRY_SOCKETS; do
619 if test -S $sock; then
620 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="unix:path=$sock"
624 AC_SUBST(DBUS_SYSTEM_BUS_DEFAULT_ADDRESS)
627 LIBS="$LIBS $DBUS_LIBS"
628 AC_CHECK_FUNCS([dbus_connection_close dbus_bus_get_private])
631 AM_CONDITIONAL(HAVE_DBUS, test "x$HAVE_DBUS" = "xyes")
636 AC_ARG_WITH(xml, AS_HELP_STRING([--with-xml=[expat/bsdxml/none]],[XML library to use]))
641 AC_CHECK_LIB(expat, XML_ParserCreate, [ AC_CHECK_HEADERS(expat.h, have_expat=true, have_expat=false) ], have_expat=false)
642 AC_CHECK_LIB(bsdxml, XML_ParserCreate, [ AC_CHECK_HEADERS(bsdxml.h, have_bsdxml=true, have_bsdxml=false) ], have_bsdxml=false)
644 if test "x$with_xml" = "xnone"; then
646 elif test "x$with_xml" = "xexpat"; then
648 if ! $have_expat ; then
649 AC_MSG_ERROR([*** libexpat requested, but not found ***])
651 elif test "x$with_xml" = "xbsdxml"; then
653 if ! $have_bsdxml ; then
654 AC_MSG_ERROR([*** libbsdxml requested, but not found ***])
656 elif test "x$with_xml" != "x"; then
657 AC_MSG_ERROR([*** unknown with-xml option ***])
659 if $have_expat ; then
661 elif $have_bsdxml ; then
664 AC_MSG_ERROR([*** neither libexpat not libbsdxml could be found ***])
670 XML_CFLAGS=-DUSE_EXPAT_H
675 XML_CFLAGS=-DUSE_BSDXML_H
681 if $use_expat || $use_bsdxml; then
685 AM_CONDITIONAL(HAVE_XML, test "x$HAVE_XML" = "xyes")
694 AS_HELP_STRING([--enable-dbm],[Enable use of DBM]),
695 [case "${enableval}" in
698 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dbm) ;;
703 AS_HELP_STRING([--disable-gdbm],[Disable use of GDBM]),
704 [case "${enableval}" in
705 yes) HAVE_GDBM=yes ;;
707 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gdbm) ;;
711 if test "x$HAVE_GDBM" = "xyes" ; then
712 if test "x$HAVE_DBM" = "xyes" ; then
713 AC_MSG_ERROR([*** --enable-gdbm and --enable-dbm both specified ***])
715 AC_CHECK_LIB(gdbm, gdbm_open, [ AC_CHECK_HEADERS(gdbm.h, have_gdbm=true, have_gdbm=false) ], have_gdbm=false)
717 if ! $have_gdbm ; then
718 AC_MSG_ERROR([*** libgdbm not found ***])
720 AC_DEFINE([HAVE_GDBM],[],[Support for GDBM])
722 if test "x$HAVE_DBM" = "xyes" ; then
723 AC_CHECK_HEADERS(ndbm.h, have_dbm=true, have_dbm=false)
725 if ! $have_dbm ; then
726 AC_MSG_ERROR([*** dbm not found ***])
728 AC_DEFINE([HAVE_DBM],[],[Support for DBM])
731 AM_CONDITIONAL(HAVE_GDBM, test "x$HAVE_GDBM" = "xyes")
732 AM_CONDITIONAL(HAVE_DBM, test "x$HAVE_DBM" = "xyes")
737 AC_ARG_ENABLE(libdaemon,
738 AS_HELP_STRING([--disable-libdaemon],[Disable use of libdaemon]),
739 [case "${enableval}" in
740 yes) HAVE_LIBDAEMON=yes ;;
741 no) HAVE_LIBDAEMON=no ;;
742 *) AC_MSG_ERROR(bad value ${enableval} for --enable-libdaemon) ;;
744 [HAVE_LIBDAEMON=yes])
746 if test "x$HAVE_LIBDAEMON" = "xyes" ; then
747 PKG_CHECK_MODULES(LIBDAEMON, [ libdaemon >= 0.11 ])
748 AC_SUBST(LIBDAEMON_CFLAGS)
749 AC_SUBST(LIBDAEMON_LIBS)
751 AM_CONDITIONAL(HAVE_LIBDAEMON, test "x$HAVE_LIBDAEMON" = "xyes")
756 AC_ARG_ENABLE(python,
757 AS_HELP_STRING([--disable-python], [Disable scripts that depends on python]),
758 [case "${enableval}" in
759 yes) HAVE_PYTHON=yes ;;
760 no) HAVE_PYTHON=no ;;
761 *) AC_MSG_ERROR([bad value ${enableval} for --enable-python]) ;;
762 esac],[HAVE_PYTHON=yes])
767 if test "x$HAVE_PYTHON" = "xyes" ; then
768 AM_PATH_PYTHON([2.4])
771 AS_HELP_STRING([--disable-pygtk],[Disable use of GTK in Python]),
772 [case "${enableval}" in
773 yes) HAVE_PYGTK=yes ;;
775 *) AC_MSG_ERROR(bad value ${enableval} for --enable-pygtk) ;;
779 if test "x$HAVE_PYGTK" = "xyes" ; then
780 AM_CHECK_PYMOD(gtk,,,[AC_MSG_ERROR(Could not find Python module gtk)])
784 if test "x$HAVE_DBUS" = "xyes" ; then
785 AC_ARG_ENABLE(python-dbus,
786 AS_HELP_STRING([--disable-python-dbus],[Disable use of D-Bus in Python]),
787 [case "${enableval}" in
788 yes) HAVE_PYTHON_DBUS=yes ;;
789 no) HAVE_PYTHON_DBUS=no ;;
790 *) AC_MSG_ERROR(bad value ${enableval} for --enable-python-dbus) ;;
792 [HAVE_PYTHON_DBUS=yes])
794 if test "x$HAVE_PYTHON_DBUS" = "xyes"; then
795 AM_CHECK_PYMOD(dbus,,,[AC_MSG_ERROR(Could not find Python module dbus)])
798 AM_CHECK_PYMOD(socket,,,[AC_MSG_ERROR(Could not find Python module socket)])
799 if test "x$HAVE_GDBM" = "xyes"; then
800 AM_CHECK_PYMOD(gdbm,,,[AC_MSG_ERROR(Could not find Python module gdbm)])
802 if test "x$HAVE_DBM" = "xyes"; then
803 AM_CHECK_PYMOD(dbm,,,[AC_MSG_ERROR(Could not find Python module dbm)])
807 AM_CONDITIONAL(HAVE_PYTHON, [test "x$HAVE_PYTHON" = "xyes" ])
808 AM_CONDITIONAL(HAVE_PYGTK, test "x$HAVE_PYGTK" = "xyes")
809 AM_CONDITIONAL(HAVE_PYTHON_DBUS, test "x$HAVE_PYTHON_DBUS" = "xyes")
812 # Check for mono stuff
815 if test "x$HAVE_DBUS" = "xyes" ; then
817 AS_HELP_STRING([--disable-mono],[Disable mono bindings]),
818 [case "${enableval}" in
819 yes) HAVE_MONO=yes ;;
821 *) AC_MSG_ERROR(bad value ${enableval} for --enable-mono) ;;
825 if test "x$HAVE_MONO" = "xyes" ; then
826 AC_PATH_PROG(MCS, mcs)
827 if test "x$MCS" = "x" ; then
828 AC_MSG_ERROR([Can not find "mcs" - The Mono C-Sharp Compiler) in your PATH])
831 AC_PATH_PROG(GACUTIL, gacutil)
832 if test "x$GACUTIL" = "x" ; then
833 AC_MSG_ERROR([Can not find "gacutil" in your PATH])
840 AM_CONDITIONAL(HAVE_MONO, test "x$HAVE_MONO" = "xyes")
843 # Check for monodoc stuff
846 AC_ARG_ENABLE(monodoc,
847 AS_HELP_STRING([--disable-monodoc],[Disable documentation for mono bindings]),
848 [case "${enableval}" in
849 yes) HAVE_MONODOC=yes ;;
850 no) HAVE_MONODOC=no ;;
851 *) AC_MSG_ERROR(bad value ${enableval} for --enable-monodoc) ;;
855 if test "x$HAVE_MONO" = "xyes" && test "x$HAVE_MONODOC" = "xyes" ; then
856 PKG_CHECK_MODULES(MONODOC, [monodoc >= 1.1.8])
857 MONODOC_DIR=`$PKG_CONFIG --variable=sourcesdir monodoc`
859 AC_PATH_PROG(MONODOCER, monodocer)
860 AC_PATH_PROG(MDASSEMBLER, mdassembler)
862 AC_SUBST(MONODOC_DIR)
864 AC_SUBST(MDASSEMBLER)
866 AM_CONDITIONAL(HAVE_MONODOC, test "x$HAVE_MONODOC" = "xyes")
871 AC_ARG_ENABLE(autoipd,
872 AS_HELP_STRING([--disable-autoipd],[Disable building of avahi-autoipd]),
873 [case "${enableval}" in
874 yes) ENABLE_AUTOIPD=yes ;;
875 no) ENABLE_AUTOIPD=no ;;
876 *) AC_MSG_ERROR(bad value ${enableval} for --disable-autoipd) ;;
878 [ENABLE_AUTOIPD=yes])
880 AM_CONDITIONAL(ENABLE_AUTOIPD, test "x$ENABLE_AUTOIPD" = "xyes")
883 # Defining users and groups
885 AC_ARG_WITH(avahi_user, AS_HELP_STRING([--with-avahi-user=<user>],[User for running avahi-daemon (avahi)]))
886 if test -z "$with_avahi_user" ; then
889 AVAHI_USER=$with_avahi_user
892 AC_DEFINE_UNQUOTED(AVAHI_USER,"$AVAHI_USER", [User for running the Avahi daemon])
894 AC_ARG_WITH(avahi_group,AS_HELP_STRING([--with-avahi-group=<group>],[Group for running avahi-daemon (avahi)]))
895 if test -z "$with_avahi_group" ; then
898 AVAHI_GROUP=$with_avahi_group
900 AC_SUBST(AVAHI_GROUP)
901 AC_DEFINE_UNQUOTED(AVAHI_GROUP,"$AVAHI_GROUP", [Group for Avahi])
903 AC_ARG_WITH(avahi_priv_access_group,AS_HELP_STRING([--with-avahi-priv-access-group=<group>],[Priviliged access group for Avahi clients (netdev)]))
904 if test -z "$with_avahi_priv_access_group" ; then
905 AVAHI_PRIV_ACCESS_GROUP=netdev
907 AVAHI_PRIV_ACCESS_GROUP=$with_avahi_priv_access_group
909 AC_SUBST(AVAHI_PRIV_ACCESS_GROUP)
910 AC_DEFINE_UNQUOTED(AVAHI_PRIV_ACCESS_GROUP,"$AVAHI_PRIV_ACCESS_GROUP", [Privileged access group for Avahi clients])
912 AC_ARG_WITH(autoipd_user, AS_HELP_STRING([--with-autoipd-user=<user>],[User for running the avahi-autoipd daemon (avahi-autoipd)]))
913 if test -z "$with_autoipd_user" ; then
914 AVAHI_AUTOIPD_USER=avahi-autoipd
916 AVAHI_AUTOIPD_USER=$with_autoipd_user
918 AC_SUBST(AVAHI_AUTOIPD_USER)
919 AC_DEFINE_UNQUOTED(AVAHI_AUTOIPD_USER,"$AVAHI_AUTOIPD_USER", [User for running the avahi-autoipd daemon])
921 AC_ARG_WITH(autoipd_group,AS_HELP_STRING([--with-autoipd-group=<group>],[Group for running the avahi-autoipd daemon (avahi-autoipd)]))
922 if test -z "$with_autoipd_group" ; then
923 AVAHI_AUTOIPD_GROUP=avahi-autoipd
925 AVAHI_AUTOIPD_GROUP=$with_autoipd_group
927 AC_SUBST(AVAHI_AUTOIPD_GROUP)
928 AC_DEFINE_UNQUOTED(AVAHI_AUTOIPD_GROUP,"$AVAHI_AUTOIPD_GROUP", [Group for running the avahi-autoipd daemon])
933 avahi_runtime_dir="${localstatedir}/run"
934 avahi_socket="${avahi_runtime_dir}/avahi-daemon/socket"
935 AC_SUBST(avahi_runtime_dir)
936 AC_SUBST(avahi_socket)
939 # Avahi interfaces dir
941 if test "x$HAVE_PYTHON_DBUS" = "xyes" -o "x$HAVE_GTK" = "xyes"; then
942 interfacesdir="${datadir}/${PACKAGE}/interfaces/"
943 AC_SUBST(interfacesdir)
957 DX_INIT_DOXYGEN(avahi, doxygen.cfg, doxygen)
959 AC_ARG_ENABLE(core-docs,
960 AS_HELP_STRING([--enable-core-docs],[Enable building of documentation for avahi-core]),
961 [case "${enableval}" in
962 yes) ENABLE_CORE_DOCS=yes ;;
963 no) ENABLE_CORE_DOCS=no ;;
964 *) AC_MSG_ERROR([bad value ${enableval} for --enable-core-docs]) ;;
965 esac],[ENABLE_CORE_DOCS=no])
967 AM_CONDITIONAL([ENABLE_CORE_DOCS], [test "x$ENABLE_CORE_DOCS" = xyes])
970 # Build and Install man pages
972 AC_ARG_ENABLE(manpages,
973 AS_HELP_STRING([--disable-manpages],[Disable building and installation of man pages]),
974 [case "${enableval}" in
977 *) AC_MSG_ERROR([bad value ${enableval} for --disable-manpages]) ;;
978 esac],[manpages=yes])
980 if test x$manpages = xyes ; then
982 # XMLTOMAN manpage generation
984 AC_ARG_ENABLE(xmltoman,
985 AS_HELP_STRING([--disable-xmltoman],[Disable rebuilding of man pages with xmltoman]),
986 [case "${enableval}" in
989 *) AC_MSG_ERROR([bad value ${enableval} for --disable-xmltoman]) ;;
990 esac],[xmltoman=yes])
992 if test x$xmltoman = xyes ; then
993 AC_CHECK_PROG(have_xmltoman, xmltoman, yes, no)
996 if test x$have_xmltoman = xno -o x$xmltoman = xno; then
997 if ! test -e man/avahi-daemon.8 ; then
998 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])
1001 AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***])
1005 AM_CONDITIONAL([USE_XMLTOMAN], [test "x$xmltoman" = xyes])
1006 AM_CONDITIONAL([BUILD_MANPAGES], [test "x$manpages" = xyes])
1009 # Conditionally compile test and example programs
1011 AC_ARG_ENABLE(tests,
1012 AS_HELP_STRING([--enable-tests],[Enable building of tests and examples]),
1013 [case "${enableval}" in
1014 yes) ENABLE_TESTS=yes ;;
1015 no) ENABLE_TESTS=no ;;
1016 *) AC_MSG_ERROR(bad value ${enableval} for --enable-tests) ;;
1020 AM_CONDITIONAL([ENABLE_TESTS], [test "x$ENABLE_TESTS" = "xyes"])
1023 # Optionally enable libdns_sd compatibility support
1025 AC_ARG_ENABLE(compat-libdns_sd,
1026 AS_HELP_STRING([--enable-compat-libdns_sd],[Enable compatibility layer for libdns_sd]),
1027 [case "${enableval}" in
1028 yes) ENABLE_COMPAT_LIBDNS_SD=yes ;;
1029 no) ENABLE_COMPAT_LIBDNS_SD=no ;;
1030 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-libdns_sd) ;;
1032 [ENABLE_COMPAT_LIBDNS_SD=no])
1034 AM_CONDITIONAL([ENABLE_COMPAT_LIBDNS_SD], [test "x$ENABLE_COMPAT_LIBDNS_SD" = "xyes"])
1037 # Optionally enable HOWL compatibility support
1039 AC_ARG_ENABLE(compat-howl,
1040 AS_HELP_STRING([--enable-compat-howl],[Enable compatibility layer for HOWL]),
1041 [case "${enableval}" in
1042 yes) ENABLE_COMPAT_HOWL=yes ;;
1043 no) ENABLE_COMPAT_HOWL=no ;;
1044 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-howl) ;;
1046 [ENABLE_COMPAT_HOWL=no])
1048 AM_CONDITIONAL([ENABLE_COMPAT_HOWL], [test "x$ENABLE_COMPAT_HOWL" = "xyes"])
1051 # ==========================================================================
1054 avahi-common/Makefile
1057 avahi-gobject/Makefile
1059 avahi-daemon/Makefile
1060 avahi-daemon/avahi-dbus.conf
1061 avahi-discover-standalone/Makefile
1062 avahi-client/Makefile
1064 initscript/debian/Makefile
1065 initscript/gentoo/Makefile
1066 initscript/archlinux/Makefile
1067 initscript/suse/Makefile
1068 initscript/fedora/Makefile
1069 initscript/mandriva/Makefile
1070 initscript/darwin/Makefile
1071 initscript/freebsd/Makefile
1072 initscript/slackware/Makefile
1073 avahi-dnsconfd/Makefile
1074 avahi-utils/Makefile
1075 avahi-python/Makefile
1076 avahi-python/avahi/Makefile
1077 avahi-python/avahi-discover/Makefile
1082 service-type-database/Makefile
1083 avahi-sharp/Makefile
1084 avahi-ui-sharp/Makefile
1085 avahi-compat-libdns_sd/Makefile
1086 avahi-compat-howl/Makefile
1087 avahi-compat-howl/samples/Makefile
1088 avahi-autoipd/Makefile
1094 # ==========================================================================
1096 ---{ $PACKAGE_NAME $VERSION }---
1099 sysconfdir: ${sysconfdir}
1100 localstatedir: ${localstatedir}
1101 avahi socket: ${avahi_socket}
1102 dbus-1 system.d dir: ${DBUS_SYS_DIR}
1103 dbus-1 version: ${DBUS_VERSION}
1104 dbus-1 system socket: ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}
1107 Enable GLIB: ${HAVE_GLIB}
1108 Enable GLIB GObject: ${HAVE_GOBJECT}
1109 Enable GTK: ${HAVE_GTK}
1110 Enable D-Bus: ${HAVE_DBUS}
1111 With XML: ${with_xml}
1112 Enable GDBM: ${HAVE_GDBM}
1113 Enable DBM: ${HAVE_DBM}
1114 Enable libdaemon: ${HAVE_LIBDAEMON}
1115 Enable Python: ${HAVE_PYTHON}
1116 Enable pygtk: ${HAVE_PYGTK}
1117 Enable python-dbus: ${HAVE_PYTHON_DBUS}
1118 Enable QT3: ${HAVE_QT3}
1119 Enable QT4: ${HAVE_QT4}
1120 Enable Mono: ${HAVE_MONO}
1121 Enable Monodoc: ${HAVE_MONODOC}
1122 Distribution/OS: ${with_distro}
1123 User for avahi-daemon: ${AVAHI_USER}
1124 Group for avahi-daemon: ${AVAHI_GROUP}
1125 Priviliged access group for Avahi clients: ${AVAHI_PRIV_ACCESS_GROUP}
1126 User for avahi-autoipd: ${AVAHI_AUTOIPD_USER}
1127 Group for avahi-autoipd: ${AVAHI_AUTOIPD_GROUP}
1128 Enable chroot(): ${enable_chroot}
1129 Enable Linux inotify: ${have_inotify}
1130 Enable stack-smashing protection: ${enable_ssp}
1133 BUILD_DAEMON="no (You need libdaemon and expat/bsdxml!)"
1135 if test "x$HAVE_XML" = "xyes" -a "x$HAVE_LIBDAEMON" = "xyes" ; then
1139 BUILD_PYTHON="no (You need python, pygtk and python-dbus!)"
1141 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
1145 BUILD_CLIENT="no (You need avahi-daemon and D-Bus!)"
1147 if test "x$BUILD_DAEMON" = "xyes" -a "x$HAVE_DBUS" = "xyes" ; then
1151 if test "x$ENABLE_COMPAT_LIBDNS_SD" = "xyes" -a "x$BUILD_CLIENT" != "xyes" ; then
1152 ENABLE_COMPAT_LIBDNS_SD="no (You need libavahi-client!)"
1154 if test "x$ENABLE_COMPAT_HOWL" = "xyes" -a "x$BUILD_CLIENT" != "xyes" ; then
1155 ENABLE_COMPAT_HOWL="no (You need libavahi-client!)"
1157 if test "x$ENABLE_AUTOIPD" = "xyes" -a "x$HAVE_LIBDAEMON" != "xyes" ; then
1158 ENABLE_AUTOIPD="no (You need libdaemon!)"
1162 if test "x$HAVE_GTK" = "xyes" -a "x$BUILD_CLIENT" = "xyes" ; then
1167 if test "x$BUILD_CLIENT" = "xyes" -a "x$HAVE_GOBJECT" = "xyes" ; then
1172 Building libavahi-core yes
1173 Building avahi-daemon: ${BUILD_DAEMON}
1174 Building avahi-dnsconfd: ${BUILD_DAEMON}
1175 Building libavahi-client: ${BUILD_CLIENT}
1176 Building avahi-utils: ${BUILD_CLIENT}
1177 Building avahi-python: ${BUILD_PYTHON}
1178 Building libavahi-glib: ${HAVE_GLIB}
1179 Building libavahi-gobject: ${BUILD_GOBJECT}
1180 Building avahi-discover-standalone: ${HAVE_GTK}
1181 Building libavahi-qt3: ${HAVE_QT3}
1182 Building libavahi-qt4: ${HAVE_QT4}
1183 Building avahi-sharp: ${HAVE_MONO}
1184 Building avahi-compat-libdns_sd: ${ENABLE_COMPAT_LIBDNS_SD}
1185 Building avahi-compat-howl: ${ENABLE_COMPAT_HOWL}
1186 Building tests: ${ENABLE_TESTS}
1187 Building avahi-core documentation: ${ENABLE_CORE_DOCS}
1188 Building avahi-autoipd: ${ENABLE_AUTOIPD}
1189 Building libavahi-ui: ${BUILD_UI}