]> git.meshlink.io Git - catta/blob - configure.ac
autoconf love:
[catta] / configure.ac
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 # $Id$
5
6 # This file is part of avahi.
7 #
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.
12 #
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.
17 #
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
21 # USA.
22
23 AC_PREREQ(2.57)
24 AC_INIT([avahi],[0.6.13],[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])
28
29 AC_SUBST(PACKAGE_URL, [http://avahi.org/])
30
31 AC_SUBST(LIBAVAHI_COMMON_VERSION_INFO, [7:2:4])
32 AC_SUBST(LIBAVAHI_CORE_VERSION_INFO, [4:4:0])
33 AC_SUBST(LIBAVAHI_CLIENT_VERSION_INFO, [5:0:2])
34 AC_SUBST(LIBAVAHI_GLIB_VERSION_INFO, [1:1: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])
40
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}"
44 fi
45
46 # Checks for programs.
47 AC_PROG_CC
48 AC_PROG_CXX
49 AC_GNU_SOURCE
50 AC_PROG_CPP
51 AC_PROG_INSTALL
52 AC_PROG_LN_S
53 AC_PROG_MAKE_SET
54 AC_PROG_GCC_TRADITIONAL
55
56 # libtool stuff
57 AC_PROG_LIBTOOL
58
59 ACX_PTHREAD(,AC_MSG_ERROR([Missing POSIX Threads support]))
60
61 #
62 # Check for netlink.h
63 #
64 AC_CHECK_HEADER(linux/netlink.h, 
65 HAVE_NETLINK=yes
66 AC_DEFINE([HAVE_NETLINK],[],[Support for Linux netlink])
67 , [], [
68 #include <sys/socket.h>
69 #include <asm/types.h>
70 ])
71
72 AM_CONDITIONAL(HAVE_NETLINK, [ test x"$HAVE_NETLINK" = xyes ])
73
74 #
75 # Check for net/route.h
76 #
77 AC_CHECK_HEADER(net/route.h, 
78 HAVE_PF_ROUTE=yes
79 AC_DEFINE([HAVE_PF_ROUTE],[],[Support for PF_ROUTE])
80 , [], [
81 #include <sys/types.h>
82 #include <sys/socket.h>
83 ])
84
85 AM_CONDITIONAL(HAVE_PF_ROUTE, [ test x"$HAVE_PF_ROUTE" = xyes ])
86
87 #
88 # Check for sys/filio.h; needed for FIONREAD on Solaris
89 #
90 AC_CHECK_HEADER(sys/filio.h, 
91 HAVE_SYS_FILIO_H=yes
92 AC_DEFINE([HAVE_SYS_FILIO_H],[],[Support for sys/filio.h])
93 , [], [
94 ])
95
96 AM_CONDITIONAL(HAVE_SYS_FILIO_H, [ test x"$HAVE_SYS_FILIO_H" = xyes ])
97
98 #
99 # Check for sys/sysctl.h; not present on Solaris
100 #
101 AC_CHECK_HEADER(sys/sysctl.h, 
102 HAVE_SYS_SYSCTL=yes
103 AC_DEFINE([HAVE_SYS_SYSCTL_H],[],[Support for sys/sysctl.h])
104 , [], [
105 #include <sys/types.h>
106 #include <sys/socket.h>
107 ])
108
109 AM_CONDITIONAL(HAVE_SYS_SYSCTL_H, [ test x"$HAVE_SYS_SYSCTL_H" = xyes ])
110
111 #
112 # Check for struct ip_mreqn
113 #
114 AC_MSG_CHECKING(for struct ip_mreqn)
115 AC_TRY_COMPILE([#include <netinet/in.h>], [
116         struct ip_mreqn mreq;
117         mreq.imr_address.s_addr = 0;
118 ], [
119         # Yes, we have it...
120         AC_MSG_RESULT(yes)
121         AC_DEFINE([HAVE_STRUCT_IP_MREQN],[],[Support for struct ip_mreqn])
122 ], [
123         # We'll just have to try and use struct ip_mreq
124         AC_MSG_RESULT(no)
125         AC_MSG_CHECKING(for struct ip_mreq)
126         AC_TRY_COMPILE([#include <netinet/in.h>], [
127                 struct ip_mreq mreq;
128                 mreq.imr_interface.s_addr = 0;
129         ], [
130                 # Yes, we have it...
131                 AC_MSG_RESULT(yes)
132                 AC_DEFINE([HAVE_STRUCT_IP_MREQ],[],[Support for struct ip_mreq])
133         ], [
134                 # No multicast support
135                         AC_MSG_RESULT(no)
136         ])
137 ])
138
139 #
140 # Detecting the linux distribution for specific things like init scripts.
141 #
142 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]))
143 if test "z$with_distro" = "z"; then
144     AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
145     AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
146     AC_CHECK_FILE(/etc/arch-release,with_distro="archlinux")
147     AC_CHECK_FILE(/etc/debian_version,with_distro="debian")
148     AC_CHECK_FILE(/etc/redhat-release,with_distro="fedora")
149     AC_CHECK_FILE(/etc/mandriva-release,with_distro="mandriva")
150     AC_CHECK_FILE(/etc/slackware-version,with_distro="slackware")
151     if test "z$with_distro" = "z"; then
152         with_distro=`uname -s`
153     fi
154 fi
155 with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]' `
156
157 case $with_distro in
158     debian|gentoo|archlinux|suse|fedora|mandriva|darwin|freebsd|slackware|none)
159      ;;
160     netbsd)
161      AC_MSG_WARN([Your distribution (${with_distro}) is supported but no init script exist yet! (patches welcome)])
162      ;;
163     linux)
164      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.])
165      ;;
166     *)
167      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])
168      ;;
169 esac
170
171 AM_CONDITIONAL(TARGET_SUSE, test x"$with_distro" = xsuse)
172 AM_CONDITIONAL(TARGET_GENTOO, test x"$with_distro" = xgentoo)
173 AM_CONDITIONAL(TARGET_DEBIAN, test x"$with_distro" = xdebian)
174 AM_CONDITIONAL(TARGET_ARCHLINUX, test x"$with_distro" = xarchlinux)
175 AM_CONDITIONAL(TARGET_FEDORA, test x"$with_distro" = xfedora)
176 AM_CONDITIONAL(TARGET_MANDRIVA, test x"$with_distro" = xmandriva)
177 AM_CONDITIONAL(TARGET_DARWIN, test x"$with_distro" = xdarwin)
178 AM_CONDITIONAL(TARGET_NETBSD, test x"$with_distro" = xnetbsd)
179 AM_CONDITIONAL(TARGET_FREEBSD, test x"$with_distro" = xfreebsd)
180 AM_CONDITIONAL(TARGET_SLACKWARE, test x"$with_distro" = xslackware)
181
182 test_gcc_flag() {
183     AC_LANG_CONFTEST([int main() {}])
184     $CC -c conftest.c $CFLAGS $@ > /dev/null 2> /dev/null
185     ret=$?
186     rm -f conftest.o
187     return $ret
188 }
189
190 # If using GCC specify some additional parameters
191 if test "x$GCC" = "xyes" ; then
192
193     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"
194
195     if test "x$HAVE_NETLINK" = "xyes" ; then
196         # Test whether rtnetlink.h can be included when compiled with -std=c99
197         # some distributions (e.g. archlinux) have broken headers that dont
198         # define __u64 with -std=c99
199         AC_MSG_CHECKING([checking whether rtnetlink.h can be included with -std=c99])
200         OLDCFLAGS="$CFLAGS"
201         CFLAGS="-std=c99"
202         AC_TRY_COMPILE([#include <linux/rtnetlink.h>], [],
203             use_stdc99=yes, use_stdc99=no)
204
205         if test x"$use_stdc99" = xyes; then
206             DESIRED_FLAGS="-std=c99 $DESIRED_FLAGS"
207             AC_MSG_RESULT([yes])
208         else
209             AC_MSG_RESULT([no])
210         fi
211
212         CFLAGS="$OLDCFLAGS"
213     else
214         DESIRED_FLAGS="-std=c99 $DESIRED_FLAGS"
215     fi
216
217     for flag in $DESIRED_FLAGS ; do
218         AC_MSG_CHECKING([whether $CC accepts $flag])
219         if test_gcc_flag $flag ; then 
220            CFLAGS="$CFLAGS $flag"
221            AC_MSG_RESULT([yes])
222         else
223            AC_MSG_RESULT([no])
224         fi
225     done 
226 fi
227
228 # Checks for header files.
229 AC_HEADER_STDC
230 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])
231 AC_HEADER_STDBOOL
232
233 # Checks for typedefs, structures, and compiler characteristics.
234 AC_C_CONST
235 AC_TYPE_SIZE_T
236 AC_HEADER_TIME
237 AC_HEADER_SYS_WAIT
238
239 # Checks for library functions.
240 AC_FUNC_MEMCMP
241 AC_FUNC_SELECT_ARGTYPES
242 AC_FUNC_MALLOC
243 AC_FUNC_REALLOC
244 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])
245
246 AC_FUNC_CHOWN
247 AC_FUNC_STAT
248 AC_TYPE_MODE_T
249 AC_TYPE_PID_T
250
251 AC_CHECK_DECLS(environ)
252
253 enable_chroot=yes
254 AC_CHECK_HEADERS([sys/capability.h],,enable_chroot=no)
255 AC_CHECK_HEADERS([sys/prctl.h],,enable_chroot=no)
256 AC_CHECK_FUNCS([chroot],,enable_chroot=no)
257
258 AM_CONDITIONAL(ENABLE_CHROOT, test "x$enable_chroot" = "xyes")
259
260 if test "x$enable_chroot" = "xyes" ; then
261    AC_DEFINE([ENABLE_CHROOT], 1, [Enable chroot() usage])
262 fi
263
264 AC_CHECK_LIB(dl, dlopen, [ AC_CHECK_HEADERS(dlfcn.h, HAVE_DLOPEN=yes, HAVE_DLOPEN=no) ], HAVE_DLOPEN=no)
265 if test "x$HAVE_DLOPEN" = "xyes" ; then
266     AC_DEFINE([HAVE_DLOPEN],1,[Have dlopen()])
267 fi
268 AM_CONDITIONAL(HAVE_DLOPEN, test "x$HAVE_DLOPEN" = "xyes")
269
270 # Check for pkg-config manually first, as if its not installed the
271 # PKG_PROG_PKG_CONFIG macro won't be defined.
272 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
273
274 if test x"$have_pkg_config" = "xno"; then
275     AC_MSG_ERROR(pkg-config is required to install this program)
276 fi
277
278 PKG_PROG_PKG_CONFIG
279
280 #
281 # Check for GLIB 2.0
282 #
283 AC_ARG_ENABLE(glib,
284         AS_HELP_STRING([--disable-glib],[Disable use of GLib]),
285         [case "${enableval}" in
286                 yes) HAVE_GLIB=yes ;;
287                 no)  HAVE_GLIB=no ;;
288                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-glib) ;;
289         esac],
290         [HAVE_GLIB=yes])
291
292 if test "x$HAVE_GLIB" = "xyes" ; then
293         PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ])
294         AC_SUBST(GLIB20_CFLAGS)
295         AC_SUBST(GLIB20_LIBS)
296 fi
297 AM_CONDITIONAL(HAVE_GLIB, test "x$HAVE_GLIB" = "xyes")
298
299 #
300 # Check for Qt 3
301 #
302 AC_ARG_ENABLE(qt3,
303         AS_HELP_STRING([--disable-qt3],[Disable building of Qt3 mainloop integration]),
304         [case "${enableval}" in
305                 yes) HAVE_QT3=yes ;;
306                 no)  HAVE_QT3=no ;;
307                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-qt3) ;;
308         esac],
309         [HAVE_QT3=yes])
310
311 if test "x$HAVE_QT3" = "xyes" ; then
312         PKG_CHECK_MODULES( QT3, [ qt-mt >= 3.0.0 ])
313         AC_SUBST(QT3_CFLAGS)
314         AC_SUBST(QT3_LIBS)
315             QT3_PREFIX="`$PKG_CONFIG --variable=prefix qt-mt`/bin"
316         MOC_QT3="no"
317             AC_CHECK_FILE( "$QT3_PREFIX/moc-qt3", [ MOC_QT3=$QT3_PREFIX/moc-qt3 ], [
318                     AC_CHECK_FILE("$QT3_PREFIX/moc", [ MOC_QT3=$QT3_PREFIX/moc ], [ 
319                 AC_MSG_ERROR([Couldn't find QT3 moc])])])
320         AC_SUBST(MOC_QT3)
321 fi
322 AM_CONDITIONAL(HAVE_QT3, test "x$HAVE_QT3" = "xyes")
323
324 #
325 # Check for Qt 4
326 #
327 AC_ARG_ENABLE(qt4,
328         AS_HELP_STRING([--disable-qt4],[Disable building of Qt4Core mainloop integration]),
329         [case "${enableval}" in
330                 yes) HAVE_QT4=yes ;;
331                 no)  HAVE_QT4=no ;;
332                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-qt4) ;;
333         esac],
334         [HAVE_QT4=yes])
335
336 if test "x$HAVE_QT4" = "xyes" ; then
337         PKG_CHECK_MODULES( QT4, [ QtCore >= 4.0.0 ])
338         AC_SUBST(QT4_CFLAGS)
339         AC_SUBST(QT4_LIBS)
340             QT4_PREFIX="`$PKG_CONFIG --variable=prefix QtCore`/bin"
341         MOC_QT4="no"
342             AC_CHECK_FILE( "$QT4_PREFIX/moc-qt4", [ MOC_QT4=$QT4_PREFIX/moc-qt4 ], [
343                AC_CHECK_FILE("$QT4_PREFIX/moc", [ MOC_QT4=$QT4_PREFIX/moc ], [ 
344                AC_MSG_ERROR([Couldn't find QT4 moc])])])
345         AC_SUBST(MOC_QT4)
346 fi
347 AM_CONDITIONAL(HAVE_QT4, test "x$HAVE_QT4" = "xyes")
348
349 #
350 # Check for GTK+
351 #
352 AC_ARG_ENABLE(gtk,
353         AS_HELP_STRING([--disable-gtk],[Disable use of GTK+]),
354         [case "${enableval}" in
355                 yes) HAVE_GTK=yes ;;
356                 no)  HAVE_GTK=no ;;
357                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-gtk) ;;
358         esac],
359         [HAVE_GTK=yes])
360
361 if test "x$HAVE_GTK" = "xyes" ; then
362         # Check for GTK 2.0
363         PKG_CHECK_MODULES(GTK20, [ gtk+-2.0 >= 2.4.0 ])
364         AC_SUBST(GTK20_CFLAGS)
365         AC_SUBST(GTK20_LIBS)
366         
367         # Check for GLADE 2.0
368         PKG_CHECK_MODULES(GLADE20, [ libglade-2.0 >= 2.4.0 ])
369         AC_SUBST(GLADE20_CFLAGS)
370         AC_SUBST(GLADE20_LIBS)
371 fi
372 AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes")
373
374 #
375 # D-Bus
376 #
377 AC_ARG_ENABLE(dbus,
378         AS_HELP_STRING([--disable-dbus],[Disable use of D-Bus]),
379         [case "${enableval}" in
380                 yes) HAVE_DBUS=yes ;;
381                 no)  HAVE_DBUS=no ;;
382                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dbus) ;;
383         esac],
384         [HAVE_DBUS=yes]) 
385
386 AC_ARG_WITH(dbus-sys, AS_HELP_STRING([--with-dbus-sys=<dir>], [Path to D-Bus system.d directory]))
387 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]))
388
389 DBUS_VERSION="Disabled"
390 DBUS_SYS_DIR="Disabled"
391 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="Disabled"
392 if test "x$HAVE_DBUS" = "xyes" ; then
393     PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 0.34 ])
394
395     AC_DEFINE(HAVE_DBUS, 1, [Whether we have D-Bus or not])
396
397     DBUS_VERSION=`$PKG_CONFIG dbus-1 --modversion`
398     DBUS_VERSION_MAJOR=`echo $DBUS_VERSION | awk -F. '{print $1}'`
399     DBUS_VERSION_MINOR=`echo $DBUS_VERSION | awk -F. '{print $2}'`
400     DBUS_VERSION_MICRO=`echo $DBUS_VERSION | awk -F. '{print $3}'`
401     if test "z$DBUS_VERSION_MAJOR" = "z"; then
402         DBUS_VERSION_MAJOR="0"
403     fi
404     if test "z$DBUS_VERSION_MINOR" = "z"; then
405         DBUS_VERSION_MINOR="0"
406     fi
407     if test "z$DBUS_VERSION_MICRO" = "z"; then
408         DBUS_VERSION_MICRO="0"
409     fi
410
411     if test "z$DBUS_VERSION_MAJOR" = "z0" -a "z$DBUS_VERSION_MINOR" = "z0" -a "z$DBUS_VERSION_MICRO" = "z0"; then
412         echo "Error: Couldn't determine the version of your D-Bus package."
413         echo "  This is probably an error in this script, please report it"
414         echo "  along with the following information:"
415         echo "      Base D-Buss version ='$DBUS_VERSION'"
416         echo "      DBUS_VERSION_MAJOR='$DBUS_VERSION_MAJOR'"
417         echo "      DBUS_VERSION_MINOR='$DBUS_VERSION_MINOR'"
418         echo "      DBUS_VERSION_MICRO='$DBUS_VERSION_MICRO'"
419         exit 1
420     else
421         echo "Your D-Bus version is $DBUS_VERSION_MAJOR,$DBUS_VERSION_MINOR,$DBUS_VERSION_MICRO."
422         DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_VERSION_MAJOR=$DBUS_VERSION_MAJOR"
423         DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_VERSION_MINOR=$DBUS_VERSION_MINOR"
424         DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_VERSION_MICRO=$DBUS_VERSION_MICRO"
425     fi
426
427     DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_API_SUBJECT_TO_CHANGE"
428     AC_SUBST(DBUS_CFLAGS)
429     AC_SUBST(DBUS_LIBS)
430
431     if ! test -z "$with_dbus_sys" ; then
432         DBUS_SYS_DIR="$with_dbus_sys"
433     else
434         DBUS_SYS_DIR="${sysconfdir}/dbus-1/system.d"
435     fi
436     AC_SUBST(DBUS_SYS_DIR)
437
438     if ! test -z "$with_dbus_system_address" ; then
439         DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="$with_dbus_system_address"
440     else
441         # This is ugly, but D-Bus doesn't export this address for us
442         # so we have to guess, pretty much all setups i've seen have 
443         # it in /var/lib/dbus or /var/run/dbus, and its defaulted to
444         # /var/run upstream so we will try guess first then default
445         # to /var/run/dbus.
446
447         DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="unix:path=/var/run/dbus/system_bus_socket"
448         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"
449         for sock in $TRY_SOCKETS; do
450             if test -S $sock; then
451                 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="unix:path=$sock"
452             fi
453         done
454     fi
455     AC_SUBST(DBUS_SYSTEM_BUS_DEFAULT_ADDRESS)
456     
457     SAVED_LIBS="$LIBS"
458     LIBS="$LIBS $DBUS_LIBS"
459     AC_CHECK_FUNCS([dbus_connection_close dbus_bus_get_private])
460     LIBS="$SAVED_LIBS"
461 fi
462 AM_CONDITIONAL(HAVE_DBUS, test "x$HAVE_DBUS" = "xyes")
463
464 #
465 # Expat
466 #
467 AC_ARG_ENABLE(expat,
468         AS_HELP_STRING([--disable-expat],[Disable use of Expat]),
469         [case "${enableval}" in
470                 yes) HAVE_EXPAT=yes ;;
471                 no)  HAVE_EXPAT=no ;;
472                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-expat) ;;
473         esac],
474         [HAVE_EXPAT=yes]) 
475
476 if test "x$HAVE_EXPAT" = "xyes" ; then
477     AC_CHECK_LIB(expat, XML_ParserCreate, [ AC_CHECK_HEADERS(expat.h, have_expat=true, have_expat=false) ], have_expat=false)
478
479     if ! $have_expat ; then
480         AC_MSG_ERROR([*** libexpat not found ***])
481     fi
482 fi
483 AM_CONDITIONAL(HAVE_EXPAT, test "x$HAVE_EXPAT" = "xyes")
484
485 #
486 # GDBM
487 #
488 #
489 # Check for dbm
490 #
491 AC_ARG_ENABLE(dbm,
492         AS_HELP_STRING([--enable-dbm],[Enable use of DBM]),
493         [case "${enableval}" in
494                 yes) HAVE_DBM=yes ;;
495                 no)  HAVE_DBM=no ;;
496                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dbm) ;;
497         esac],
498         [HAVE_DBM=no]) 
499
500 AC_ARG_ENABLE(gdbm,
501         AS_HELP_STRING([--disable-gdbm],[Disable use of GDBM]),
502         [case "${enableval}" in
503                 yes) HAVE_GDBM=yes ;;
504                 no)  HAVE_GDBM=no ;;
505                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gdbm) ;;
506         esac],
507         [HAVE_GDBM=yes]) 
508
509 if test "x$HAVE_GDBM" = "xyes" ; then
510     if test "x$HAVE_DBM" = "xyes" ; then
511         AC_MSG_ERROR([*** --enable-gdbm and --enable-dbm both specified ***])
512     fi
513     AC_CHECK_LIB(gdbm, gdbm_open, [ AC_CHECK_HEADERS(gdbm.h, have_gdbm=true, have_gdbm=false) ], have_gdbm=false)
514
515     if ! $have_gdbm ; then
516         AC_MSG_ERROR([*** libgdbm not found ***])
517     fi
518     AC_DEFINE([HAVE_GDBM],[],[Support for GDBM])
519 else
520     if test "x$HAVE_DBM" = "xyes" ; then
521         AC_CHECK_HEADERS(ndbm.h, have_dbm=true, have_dbm=false)
522
523         if ! $have_dbm ; then
524             AC_MSG_ERROR([*** dbm not found ***])
525         fi
526         AC_DEFINE([HAVE_DBM],[],[Support for DBM])
527     fi
528 fi
529 AM_CONDITIONAL(HAVE_GDBM, test "x$HAVE_GDBM" = "xyes")
530 AM_CONDITIONAL(HAVE_DBM, test "x$HAVE_DBM" = "xyes")
531
532 #
533 # libdaemon
534 #
535 AC_ARG_ENABLE(libdaemon,
536         AS_HELP_STRING([--disable-libdaemon],[Disable use of libdaemon]),
537         [case "${enableval}" in
538                 yes) HAVE_LIBDAEMON=yes ;;
539                 no)  HAVE_LIBDAEMON=no ;;
540                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-libdaemon) ;;
541         esac],
542         [HAVE_LIBDAEMON=yes]) 
543
544 if test "x$HAVE_LIBDAEMON" = "xyes" ; then
545     PKG_CHECK_MODULES(LIBDAEMON, [ libdaemon >= 0.5 ])
546     AC_SUBST(LIBDAEMON_CFLAGS)
547     AC_SUBST(LIBDAEMON_LIBS)
548 fi
549 AM_CONDITIONAL(HAVE_LIBDAEMON, test "x$HAVE_LIBDAEMON" = "xyes")
550
551 #
552 # Python stuff
553 #
554 AC_ARG_ENABLE(python,
555     AS_HELP_STRING([--disable-python], [Disable scripts that depends on python]),
556     [case "${enableval}" in
557           yes) HAVE_PYTHON=yes ;;
558           no)  HAVE_PYTHON=no ;;
559           *) AC_MSG_ERROR([bad value ${enableval} for --enable-python]) ;;
560     esac],[HAVE_PYTHON=yes])
561
562 HAVE_PYTHON_DBUS=no
563 HAVE_PYGTK=no
564
565 if test "x$HAVE_PYTHON" = "xyes" ; then
566     AM_PATH_PYTHON([2.4])
567
568     AC_ARG_ENABLE(pygtk,
569         AS_HELP_STRING([--disable-pygtk],[Disable use of GTK in Python]),
570         [case "${enableval}" in
571                 yes) HAVE_PYGTK=yes ;;
572                 no)  HAVE_PYGTK=no ;;
573                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-pygtk) ;;
574         esac],
575         [HAVE_PYGTK=yes])
576     
577     if test "x$HAVE_PYGTK" = "xyes" ; then
578         AM_CHECK_PYMOD(gtk,,,[AC_MSG_ERROR(Could not find Python module gtk)])
579     fi
580
581
582     if test "x$HAVE_DBUS" = "xyes" ; then
583         AC_ARG_ENABLE(python-dbus,
584             AS_HELP_STRING([--disable-python-dbus],[Disable use of D-Bus in Python]),
585             [case "${enableval}" in
586                    yes) HAVE_PYTHON_DBUS=yes ;;
587                    no)  HAVE_PYTHON_DBUS=no ;;
588                    *) AC_MSG_ERROR(bad value ${enableval} for --enable-python-dbus) ;;
589             esac],
590             [HAVE_PYTHON_DBUS=yes])
591     
592         if test "x$HAVE_PYTHON_DBUS" = "xyes"; then
593             AM_CHECK_PYMOD(dbus,,,[AC_MSG_ERROR(Could not find Python module dbus)])
594         fi
595
596         AM_CHECK_PYMOD(socket,,,[AC_MSG_ERROR(Could not find Python module socket)])
597         if test "x$HAVE_GDBM" = "xyes"; then
598             AM_CHECK_PYMOD(gdbm,,,[AC_MSG_ERROR(Could not find Python module gdbm)])
599         fi
600         if test "x$HAVE_DBM" = "xyes"; then
601             AM_CHECK_PYMOD(dbm,,,[AC_MSG_ERROR(Could not find Python module dbm)])
602         fi
603     fi
604 fi
605 AM_CONDITIONAL(HAVE_PYTHON, [test "x$HAVE_PYTHON" = "xyes" ])
606 AM_CONDITIONAL(HAVE_PYGTK, test "x$HAVE_PYGTK" = "xyes")
607 AM_CONDITIONAL(HAVE_PYTHON_DBUS, test "x$HAVE_PYTHON_DBUS" = "xyes")
608
609 #
610 # Check for mono stuff
611 #
612 HAVE_MONO=no
613 if test "x$HAVE_DBUS" = "xyes" ; then
614     AC_ARG_ENABLE(mono,
615             AS_HELP_STRING([--disable-mono],[Disable mono bindings]),
616             [case "${enableval}" in
617                     yes) HAVE_MONO=yes ;;
618                     no)  HAVE_MONO=no ;;
619                     *) AC_MSG_ERROR(bad value ${enableval} for --enable-mono) ;;
620             esac],
621             [HAVE_MONO=yes])
622
623     if test "x$HAVE_MONO" = "xyes" ; then
624         AC_PATH_PROG(MCS, mcs)
625         if test "x$MCS" = "x" ; then
626             AC_MSG_ERROR([Can not find "mcs" - The Mono C-Sharp Compiler) in your PATH])
627         fi
628
629         AC_PATH_PROG(GACUTIL, gacutil)
630         if test "x$GACUTIL" = "x" ; then
631             AC_MSG_ERROR([Can not find "gacutil" in your PATH])
632         fi
633
634         AC_SUBST(MCS)
635         AC_SUBST(GACUTIL)
636     fi
637 fi
638 AM_CONDITIONAL(HAVE_MONO, test "x$HAVE_MONO" = "xyes")
639
640 #
641 # Check for monodoc stuff
642 #
643 HAVE_MONODOC=no
644 AC_ARG_ENABLE(monodoc,
645         AS_HELP_STRING([--disable-monodoc],[Disable documentation for mono bindings]),
646         [case "${enableval}" in
647                 yes) HAVE_MONODOC=yes ;;
648                 no)  HAVE_MONODOC=no ;;
649                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-monodoc) ;;
650         esac],
651         [HAVE_MONODOC=yes])
652
653 if test "x$HAVE_MONO" = "xyes" && test "x$HAVE_MONODOC" = "xyes" ; then
654         PKG_CHECK_MODULES(MONODOC, [monodoc >= 1.1.8])
655         MONODOC_DIR=`$PKG_CONFIG --variable=sourcesdir monodoc`        
656
657         AC_PATH_PROG(MONODOCER, monodocer)
658         AC_PATH_PROG(MDASSEMBLER, mdassembler)
659
660         AC_SUBST(MONODOC_DIR)
661         AC_SUBST(MONODOCER)
662         AC_SUBST(MDASSEMBLER)
663 fi
664 AM_CONDITIONAL(HAVE_MONODOC, test "x$HAVE_MONODOC" = "xyes")
665
666 #
667 # Build autoipd?
668 #
669 AC_ARG_ENABLE(autoipd,
670         AS_HELP_STRING([--disable-autoipd],[Disable building of avahi-autoipd]),
671         [case "${enableval}" in
672                 yes) ENABLE_AUTOIPD=yes ;;
673                 no)  ENABLE_AUTOIPD=no ;;
674                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-autoipd) ;;
675         esac],
676         [ENABLE_AUTOIPD=yes])
677
678 AM_CONDITIONAL(ENABLE_AUTOIPD, test "x$ENABLE_AUTOIPD" = "xyes")
679
680 #
681 # Defining users and groups
682 #
683 AC_ARG_WITH(avahi_user, AS_HELP_STRING([--with-avahi-user=<user>],[User for running avahi-daemon (avahi)]))
684 if test -z "$with_avahi_user" ; then
685     AVAHI_USER=avahi
686 else
687     AVAHI_USER=$with_avahi_user
688 fi
689 AC_SUBST(AVAHI_USER)
690 AC_DEFINE_UNQUOTED(AVAHI_USER,"$AVAHI_USER", [User for running the Avahi daemon])
691
692 AC_ARG_WITH(avahi_group,AS_HELP_STRING([--with-avahi-group=<group>],[Group for running avahi-daemon (avahi)]))
693 if test -z "$with_avahi_group" ; then
694     AVAHI_GROUP=avahi
695 else
696     AVAHI_GROUP=$with_avahi_group
697 fi
698 AC_SUBST(AVAHI_GROUP)
699 AC_DEFINE_UNQUOTED(AVAHI_GROUP,"$AVAHI_GROUP", [Group for Avahi])
700
701 AC_ARG_WITH(avahi_priv_access_group,AS_HELP_STRING([--with-avahi-priv-access-group=<group>],[Priviliged access group for Avahi clients (netdev)]))
702 if test -z "$with_priv_access_group" ; then
703     AVAHI_PRIV_ACCESS_GROUP=netdev
704 else
705     AVAHI_PRIV_ACCESS_GROUP=$with_priv_access_group
706 fi
707 AC_SUBST(AVAHI_PRIV_ACCESS_GROUP)
708 AC_DEFINE_UNQUOTED(AVAHI_PRIV_ACCESS_GROUP,"$AVAHI_PRIV_ACCESS_GROUP", [Privileged access group for Avahi clients])
709
710 AC_ARG_WITH(autoipd_user, AS_HELP_STRING([--with-autipd-user=<user>],[User for running the avahi-autoipd daemon (avahi-autoipd)]))
711 if test -z "$with_autoipd_user" ; then
712     AVAHI_AUTOIPD_USER=avahi-autoipd
713 else
714     AVAHI_AUTOIPD_USER=$with_autoipd_user
715 fi
716 AC_SUBST(AVAHI_AUTOIPD_USER)
717 AC_DEFINE_UNQUOTED(AVAHI_AUTOIPD_USER,"$AVAHI_AUTOIPD_USER", [User for running the avahi-autoipd daemon])
718
719 AC_ARG_WITH(autoipd_group,AS_HELP_STRING([--with-autoipd-group=<group>],[Group for running the avahi-autoipd daemon (avahi-autoipd)]))
720 if test -z "$with_autoipd_group" ; then
721     AVAHI_AUTOIPD_GROUP=avahi-autoipd
722 else
723     AVAHI_AUTOIPD_GROUP=$with_autoipd_group
724 fi
725 AC_SUBST(AVAHI_AUTOIPD_GROUP)
726 AC_DEFINE_UNQUOTED(AVAHI_AUTOIPD_GROUP,"$AVAHI_AUTOIPD_GROUP", [Group for running the avahi-autoipd daemon])
727
728 #
729 # Avahi runtime dir
730 #
731 avahi_runtime_dir="${localstatedir}/run"
732 avahi_socket="${avahi_runtime_dir}/avahi-daemon/socket"
733 AC_SUBST(avahi_runtime_dir)
734 AC_SUBST(avahi_socket)
735
736 #
737 # Avahi interfaces dir
738 #
739 if test "x$HAVE_PYTHON_DBUS" = "xyes" -o "x$HAVE_GTK" = "xyes"; then
740         interfacesdir="${datadir}/${PACKAGE}/interfaces/"
741         AC_SUBST(interfacesdir)
742 fi
743
744 #
745 # Doxygen
746 #
747 DX_HTML_FEATURE(ON)
748 DX_CHM_FEATURE(OFF)
749 DX_CHI_FEATURE(OFF)
750 DX_MAN_FEATURE(OFF)
751 DX_RTF_FEATURE(OFF)
752 DX_XML_FEATURE(OFF)
753 DX_PDF_FEATURE(OFF)
754 DX_PS_FEATURE(OFF)
755 DX_INIT_DOXYGEN(avahi, doxygen.cfg, doxygen)
756
757 AC_ARG_ENABLE(core-docs,
758         AS_HELP_STRING([--enable-core-docs],[Enable building of documentation for avahi-core]),
759 [case "${enableval}" in
760   yes) ENABLE_CORE_DOCS=yes ;;
761   no)  ENABLE_CORE_DOCS=no ;;
762   *) AC_MSG_ERROR([bad value ${enableval} for --enable-core-docs]) ;;
763 esac],[ENABLE_CORE_DOCS=no])
764
765 AM_CONDITIONAL([ENABLE_CORE_DOCS], [test "x$ENABLE_CORE_DOCS" = xyes])
766
767 #
768 # Build and Install man pages
769 #
770 AC_ARG_ENABLE(manpages,
771         AS_HELP_STRING([--disable-manpages],[Disable building and installation of man pages]),
772 [case "${enableval}" in
773   yes) manpages=yes ;;
774   no)  manpages=no ;;
775   *) AC_MSG_ERROR([bad value ${enableval} for --disable-manpages]) ;;
776 esac],[manpages=yes])
777
778 if test x$manpages = xyes ; then
779     #
780     # XMLTOMAN manpage generation
781     #
782     AC_ARG_ENABLE(xmltoman,
783     AS_HELP_STRING([--disable-xmltoman],[Disable rebuilding of man pages with xmltoman]),
784     [case "${enableval}" in
785       yes) xmltoman=yes ;;
786       no)  xmltoman=no ;;
787       *) AC_MSG_ERROR([bad value ${enableval} for --disable-xmltoman]) ;;
788     esac],[xmltoman=yes])
789     
790     if test x$xmltoman = xyes ; then
791         AC_CHECK_PROG(have_xmltoman, xmltoman, yes, no)
792     fi
793
794     if test x$have_xmltoman = xno -o x$xmltoman = xno; then
795         if ! test -e man/avahi-daemon.8 ; then
796             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])
797             exit 1
798         fi
799         AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***])
800         xmltoman=no
801     fi
802 fi
803 AM_CONDITIONAL([USE_XMLTOMAN], [test "x$xmltoman" = xyes])
804 AM_CONDITIONAL([BUILD_MANPAGES], [test "x$manpages" = xyes])
805
806 #
807 # Conditionally compile test and example programs
808 #
809 AC_ARG_ENABLE(tests,
810         AS_HELP_STRING([--enable-tests],[Enable building of tests and examples]),
811         [case "${enableval}" in
812                 yes) ENABLE_TESTS=yes ;;
813                 no)  ENABLE_TESTS=no ;;
814                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-tests) ;;
815         esac],
816         [ENABLE_TESTS=no])
817
818 AM_CONDITIONAL([ENABLE_TESTS], [test "x$ENABLE_TESTS" = "xyes"])
819
820 #
821 # Optionally enable libdns_sd compatibility support
822 #
823 AC_ARG_ENABLE(compat-libdns_sd,
824         AS_HELP_STRING([--enable-compat-libdns_sd],[Enable compatibility layer for libdns_sd]),
825         [case "${enableval}" in
826                 yes) ENABLE_COMPAT_LIBDNS_SD=yes ;;
827                 no)  ENABLE_COMPAT_LIBDNS_SD=no ;;
828                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-libdns_sd) ;;
829         esac],
830         [ENABLE_COMPAT_LIBDNS_SD=no])
831
832 AM_CONDITIONAL([ENABLE_COMPAT_LIBDNS_SD], [test "x$ENABLE_COMPAT_LIBDNS_SD" = "xyes"])
833
834 #
835 # Optionally enable HOWL compatibility support
836 #
837 AC_ARG_ENABLE(compat-howl,
838         AS_HELP_STRING([--enable-compat-howl],[Enable compatibility layer for HOWL]),
839         [case "${enableval}" in
840                 yes) ENABLE_COMPAT_HOWL=yes ;;
841                 no)  ENABLE_COMPAT_HOWL=no ;;
842                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-howl) ;;
843         esac],
844         [ENABLE_COMPAT_HOWL=no])
845
846 AM_CONDITIONAL([ENABLE_COMPAT_HOWL], [test "x$ENABLE_COMPAT_HOWL" = "xyes"])
847
848
849 # ==========================================================================
850 AC_CONFIG_FILES([
851 Makefile 
852 avahi-common/Makefile 
853 avahi-core/Makefile 
854 avahi-glib/Makefile 
855 avahi-qt/Makefile
856 avahi-daemon/Makefile 
857 avahi-daemon/avahi-dbus.conf
858 avahi-discover-standalone/Makefile 
859 avahi-client/Makefile 
860 initscript/Makefile 
861 initscript/debian/Makefile
862 initscript/gentoo/Makefile
863 initscript/archlinux/Makefile
864 initscript/suse/Makefile
865 initscript/fedora/Makefile
866 initscript/mandriva/Makefile
867 initscript/darwin/Makefile
868 initscript/freebsd/Makefile
869 initscript/slackware/Makefile
870 avahi-dnsconfd/Makefile
871 avahi-utils/Makefile
872 avahi-python/Makefile
873 avahi-python/avahi/Makefile
874 examples/Makefile
875 common/Makefile
876 man/Makefile
877 tests/Makefile
878 service-type-database/Makefile
879 avahi-sharp/Makefile
880 avahi-compat-libdns_sd/Makefile
881 avahi-compat-howl/Makefile
882 avahi-compat-howl/samples/Makefile
883 avahi-autoipd/Makefile
884 ])
885 AC_OUTPUT
886
887 # ==========================================================================
888 echo "
889  ---{ $PACKAGE_NAME $VERSION }---
890
891     prefix:                                    ${prefix}
892     sysconfdir:                                ${sysconfdir}
893     localstatedir:                             ${localstatedir}
894     avahi socket:                              ${avahi_socket}
895     dbus-1 system.d dir:                       ${DBUS_SYS_DIR}
896     dbus-1 version:                            ${DBUS_VERSION}
897     dbus-1 system socket:                      ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}
898     C Compiler:                                ${CC}
899     CFLAGS:                                    ${CFLAGS}
900     Enable GLIB:                               ${HAVE_GLIB}
901     Enable GTK:                                ${HAVE_GTK}
902     Enable D-Bus:                              ${HAVE_DBUS}
903     Enable Expat:                              ${HAVE_EXPAT}
904     Enable GDBM:                               ${HAVE_GDBM}
905     Enable DBM:                                ${HAVE_DBM}
906     Enable libdaemon:                          ${HAVE_LIBDAEMON}
907     Enable Python:                             ${HAVE_PYTHON}
908     Enable pygtk:                              ${HAVE_PYGTK}
909     Enable python-dbus:                        ${HAVE_PYTHON_DBUS}
910     Enable QT3:                                ${HAVE_QT3}
911     Enable QT4:                                ${HAVE_QT4}
912     Enable Mono:                               ${HAVE_MONO}
913     Enable Monodoc:                            ${HAVE_MONODOC}
914     Distribution/OS:                           ${with_distro}
915     User for avahi-daemon:                     ${AVAHI_USER}
916     Group for avahi-daemon:                    ${AVAHI_GROUP}
917     Priviliged access group for Avahi clients: ${AVAHI_PRIV_ACCESS_GROUP}
918     User for avahi-autopid:                    ${AVAHI_AUTOIPD_USER}
919     Group for avahi-autoipd:                   ${AVAHI_AUTOIPD_GROUP}
920     Enable chroot():                           ${enable_chroot}
921 "
922
923 BUILD_DAEMON="no   (You need libdaemon and expat!)"
924
925 if test "x$HAVE_EXPAT" = "xyes" -a "x$HAVE_LIBDAEMON" = "xyes" ; then
926     BUILD_DAEMON=yes
927 fi
928
929 BUILD_PYTHON="no   (You need python, pygtk and python-dbus!)"
930
931 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
932     BUILD_PYTHON=yes
933 fi
934
935 BUILD_CLIENT="no   (You need avahi-daemon and D-Bus!)"
936
937 if test "x$BUILD_DAEMON" = "xyes" -a "x$HAVE_DBUS" = "xyes" ; then
938     BUILD_CLIENT=yes
939 fi
940
941 if test "x$ENABLE_COMPAT_LIBDNS_SD" = "xyes" -a "x$BUILD_CLIENT" != "xyes" ; then
942    ENABLE_COMPAT_LIBDNS_SD="no   (You need libavahi-client!)"
943 fi
944 if test "x$ENABLE_COMPAT_HOWL" = "xyes" -a "x$BUILD_CLIENT" != "xyes" ; then
945    ENABLE_COMPAT_HOWL="no   (You need libavahi-client!)"
946 fi
947
948
949 echo "\
950     Building libavahi-core              yes
951     Building avahi-daemon:              ${BUILD_DAEMON}
952     Building avahi-dnsconfd:            ${BUILD_DAEMON}
953     Building libavahi-client:           ${BUILD_CLIENT}
954     Building avahi-utils:               ${BUILD_CLIENT}
955     Building avahi-python:              ${BUILD_PYTHON}
956     Building libavahi-glib:             ${HAVE_GLIB}
957     Building avahi-discover-standalone: ${HAVE_GTK}
958     Building libavahi-qt3:              ${HAVE_QT3}
959     Building libavahi-qt4:              ${HAVE_QT4}
960     Building avahi-sharp:               ${HAVE_MONO}
961     Building avahi-compat-libdns_sd:    ${ENABLE_COMPAT_LIBDNS_SD}
962     Building avahi-compat-howl:         ${ENABLE_COMPAT_HOWL}
963     Building tests:                     ${ENABLE_TESTS}
964     Building avahi-core documentation:  ${ENABLE_CORE_DOCS}
965     Building avahi-autoipd:             ${ENABLE_AUTOIPD}
966 "