]> git.meshlink.io Git - catta/blob - configure.ac
fix configure.ac
[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],[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://www.freedesktop.org/Software/Avahi])
30
31 AC_SUBST(LIBAVAHI_COMMON_VERSION_INFO, [2:0:2])
32 AC_SUBST(LIBAVAHI_CORE_VERSION_INFO, [2:0:1])
33 AC_SUBST(LIBAVAHI_CLIENT_VERSION_INFO, [2:0:1])
34 AC_SUBST(LIBAVAHI_GLIB_VERSION_INFO, [0:1:0])
35 AC_SUBST(LIBAVAHI_QT3_VERSION_INFO, [0:0:0])
36 AC_SUBST(LIBAVAHI_QT4_VERSION_INFO, [0:0:0])
37 AC_SUBST(LIBAVAHI_COMPAT_LIBDNS_SD_VERSION_INFO, [1:0:0])
38 AC_SUBST(LIBAVAHI_COMPAT_HOWL_VERSION_INFO, [0:0:0])
39 AC_SUBST(HOWL_COMPAT_VERSION, [0.9.8])
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 struct ip_mreqn
89 #
90 AC_MSG_CHECKING(for struct ip_mreqn)
91 AC_TRY_COMPILE([#include <netinet/in.h>], [
92         struct ip_mreqn mreq;
93         mreq.imr_address.s_addr = 0;
94 ], [
95         # Yes, we have it...
96         AC_MSG_RESULT(yes)
97         AC_DEFINE([HAVE_STRUCT_IP_MREQN],[],[Support for struct ip_mreqn])
98 ], [
99         # We'll just have to try and use struct ip_mreq
100         AC_MSG_RESULT(no)
101         AC_MSG_CHECKING(for struct ip_mreq)
102         AC_TRY_COMPILE([#include <netinet/in.h>], [
103                 struct ip_mreq mreq;
104                 mreq.imr_interface.s_addr = 0;
105         ], [
106                 # Yes, we have it...
107                 AC_MSG_RESULT(yes)
108                 AC_DEFINE([HAVE_STRUCT_IP_MREQ],[],[Support for struct ip_mreq])
109         ], [
110                 # No multicast support
111                         AC_MSG_RESULT(no)
112         ])
113 ])
114
115 #
116 # Detecting the linux distribution for specific things like init scripts.
117 #
118 AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO],[Specify the Linux distribution to target: One of debian, gentoo, archlinux 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 fi
126 with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]' `
127
128 if test "z$with_distro" = "z"; then
129     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.])
130     exit 1
131 else
132 case $with_distro in
133     debian|gentoo|archlinux|suse|fedora|none)
134      ;;
135     *)
136      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])
137      ;;
138 esac
139 fi
140
141 AM_CONDITIONAL(TARGET_SUSE, test x"$with_distro" = xsuse)
142 AM_CONDITIONAL(TARGET_GENTOO, test x"$with_distro" = xgentoo)
143 AM_CONDITIONAL(TARGET_DEBIAN, test x"$with_distro" = xdebian)
144 AM_CONDITIONAL(TARGET_ARCHLINUX, test x"$with_distro" = xarchlinux)
145 AM_CONDITIONAL(TARGET_FEDORA, test x"$with_distro" = xfedora)
146
147 test_gcc_flag() {
148     AC_LANG_CONFTEST([int main() {}])
149     $CC -c conftest.c $CFLAGS $@ > /dev/null 2> /dev/null
150     ret=$?
151     rm -f conftest.o
152     return $ret
153 }
154
155 # If using GCC specify some additional parameters
156 if test "x$GCC" = "xyes" ; then
157
158     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"
159
160     if test "x$HAVE_NETLINK" = "xyes" ; then
161         # Test whether rtnetlink.h can be included when compiled with -std=c99
162         # some distributions (e.g. archlinux) have broken headers that dont
163         # define __u64 with -std=c99
164         AC_MSG_CHECKING([checking whether rtnetlink.h can be included with -std=c99])
165         OLDCFLAGS="$CFLAGS"
166         CFLAGS="-std=c99"
167         AC_TRY_COMPILE([#include <linux/rtnetlink.h>], [],
168             use_stdc99=yes, use_stdc99=no)
169
170         if test x"$use_stdc99" = xyes; then
171             DESIRED_FLAGS="-std=c99 $DESIRED_FLAGS"
172             AC_MSG_RESULT([yes])
173         else
174             AC_MSG_RESULT([no])
175         fi
176
177         CFLAGS="$OLDCFLAGS"
178     else
179         DESIRED_FLAGS="-std=c99 $DESIRED_FLAGS"
180     fi
181
182     for flag in $DESIRED_FLAGS ; do
183         AC_MSG_CHECKING([whether $CC accepts $flag])
184         if test_gcc_flag $flag ; then 
185            CFLAGS="$CFLAGS $flag"
186            AC_MSG_RESULT([yes])
187         else
188            AC_MSG_RESULT([no])
189         fi
190     done 
191 fi
192
193 # Checks for header files.
194 AC_HEADER_STDC
195 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])
196 AC_HEADER_STDBOOL
197
198 # Checks for typedefs, structures, and compiler characteristics.
199 AC_C_CONST
200 AC_TYPE_SIZE_T
201 AC_HEADER_TIME
202 AC_HEADER_SYS_WAIT
203
204 # Checks for library functions.
205 AC_FUNC_MEMCMP
206 AC_FUNC_SELECT_ARGTYPES
207 AC_FUNC_MALLOC
208 AC_FUNC_REALLOC
209 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])
210
211 AC_FUNC_CHOWN
212 AC_FUNC_STAT
213 AC_TYPE_MODE_T
214 AC_TYPE_PID_T
215
216 AC_CHECK_DECLS(environ)
217
218 # Check for pkg-config manually first, as if its not installed the
219 # PKG_PROG_PKG_CONFIG macro won't be defined.
220 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
221
222 if test x"$have_pkg_config" = "xno"; then
223     AC_MSG_ERROR(pkg-config is required to install this program)
224 fi
225
226 PKG_PROG_PKG_CONFIG
227
228 #
229 # Check for GLIB 2.0
230 #
231 AC_ARG_ENABLE(glib,
232         AS_HELP_STRING([--disable-glib],[Disable use of GLib]),
233         [case "${enableval}" in
234                 yes) HAVE_GLIB=yes ;;
235                 no)  HAVE_GLIB=no ;;
236                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-glib) ;;
237         esac],
238         [HAVE_GLIB=yes])
239
240 if test "x$HAVE_GLIB" = "xyes" ; then
241         PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ])
242         AC_SUBST(GLIB20_CFLAGS)
243         AC_SUBST(GLIB20_LIBS)
244 fi
245 AM_CONDITIONAL(HAVE_GLIB, test "x$HAVE_GLIB" = "xyes")
246
247 #
248 # Check for Qt 3
249 #
250 AC_ARG_ENABLE(qt3,
251         AS_HELP_STRING([--disable-qt3],[Disable building of Qt3 mainloop integration]),
252         [case "${enableval}" in
253                 yes) HAVE_QT3=yes ;;
254                 no)  HAVE_QT3=no ;;
255                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-qt3) ;;
256         esac],
257         [HAVE_QT3=yes])
258
259 if test "x$HAVE_QT3" = "xyes" ; then
260         PKG_CHECK_MODULES( QT3, [ qt-mt >= 3.0.0 ])
261         AC_SUBST(QT3_CFLAGS)
262         AC_SUBST(QT3_LIBS)
263             QT3_PREFIX="`$PKG_CONFIG --variable=prefix qt-mt`/bin"
264         MOC_QT3="no"
265             AC_CHECK_FILE( "$QT3_PREFIX/moc-qt3", [ MOC_QT3=$QT3_PREFIX/moc-qt3 ], [
266                     AC_CHECK_FILE("$QT3_PREFIX/moc", [ MOC_QT3=$QT3_PREFIX/moc ], [ 
267                 AC_MSG_ERROR([Couldn't find QT3 moc])])])
268         AC_SUBST(MOC_QT3)
269 fi
270 AM_CONDITIONAL(HAVE_QT3, test "x$HAVE_QT3" = "xyes")
271
272 #
273 # Check for Qt 4
274 #
275 AC_ARG_ENABLE(qt4,
276         AS_HELP_STRING([--disable-qt4],[Disable building of Qt4Core mainloop integration]),
277         [case "${enableval}" in
278                 yes) HAVE_QT4=yes ;;
279                 no)  HAVE_QT4=no ;;
280                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-qt4) ;;
281         esac],
282         [HAVE_QT4=yes])
283
284 if test "x$HAVE_QT4" = "xyes" ; then
285         PKG_CHECK_MODULES( QT4, [ QtCore >= 4.0.0 ])
286         AC_SUBST(QT4_CFLAGS)
287         AC_SUBST(QT4_LIBS)
288             QT4_PREFIX="`$PKG_CONFIG --variable=prefix QtCore`/bin"
289         MOC_QT4="no"
290             AC_CHECK_FILE( "$QT4_PREFIX/moc-qt4", [ MOC_QT4=$QT4_PREFIX/moc-qt4 ], [
291                AC_CHECK_FILE("$QT4_PREFIX/moc", [ MOC_QT4=$QT4_PREFIX/moc ], [ 
292                AC_MSG_ERROR([Couldn't find QT4 moc])])])
293         AC_SUBST(MOC_QT4)
294 fi
295 AM_CONDITIONAL(HAVE_QT4, test "x$HAVE_QT4" = "xyes")
296
297 #
298 # Check for GTK+
299 #
300 AC_ARG_ENABLE(gtk,
301         AS_HELP_STRING([--disable-gtk],[Disable use of GTK+]),
302         [case "${enableval}" in
303                 yes) HAVE_GTK=yes ;;
304                 no)  HAVE_GTK=no ;;
305                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-gtk) ;;
306         esac],
307         [HAVE_GTK=yes])
308
309 if test "x$HAVE_GTK" = "xyes" ; then
310         # Check for GTK 2.0
311         PKG_CHECK_MODULES(GTK20, [ gtk+-2.0 >= 2.4.0 ])
312         AC_SUBST(GTK20_CFLAGS)
313         AC_SUBST(GTK20_LIBS)
314         
315         # Check for GLADE 2.0
316         PKG_CHECK_MODULES(GLADE20, [ libglade-2.0 >= 2.4.0 ])
317         AC_SUBST(GLADE20_CFLAGS)
318         AC_SUBST(GLADE20_LIBS)
319 fi
320 AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes")
321
322 #
323 # D-BUS
324 #
325 AC_ARG_ENABLE(dbus,
326         AS_HELP_STRING([--disable-dbus],[Disable use of D-BUS]),
327         [case "${enableval}" in
328                 yes) HAVE_DBUS=yes ;;
329                 no)  HAVE_DBUS=no ;;
330                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dbus) ;;
331         esac],
332         [HAVE_DBUS=yes]) 
333
334 AC_ARG_WITH(dbus-sys, AS_HELP_STRING([--with-dbus-sys=<dir>], [where D-BUS system.d directory is]))
335 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]))
336
337 if test "x$HAVE_DBUS" = "xyes" ; then
338     AC_DEFINE(HAVE_DBUS, 1, [Whether we have D-BUS or not])
339
340     PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 0.34 ])
341     DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_API_SUBJECT_TO_CHANGE"
342     AC_SUBST(DBUS_CFLAGS)
343     AC_SUBST(DBUS_LIBS)
344
345     if ! test -z "$with_dbus_sys" ; then
346         DBUS_SYS_DIR="$with_dbus_sys"
347     else
348         DBUS_SYS_DIR="${sysconfdir}/dbus-1/system.d"
349     fi
350     AC_SUBST(DBUS_SYS_DIR)
351
352     if ! test -z "$with_dbus_system_address" ; then
353         DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="$with_dbus_system_address"
354     else
355         # This is ugly, but D-BUS doesn't export this address for us
356         # so we have to guess, pretty much all setups i've seen have 
357         # it in /var/lib/dbus or /var/run/dbus, and its defaulted to
358         # /var/run upstream so we will try guess first then default
359         # to /var/run/dbus
360
361         DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="unix:path=/var/run/dbus/system_bus_socket"
362         TRY_SOCKETS="/var/lib/dbus/system_bus_socket /var/run/dbus/system_bus_socket"
363         for sock in $TRY_SOCKETS; do
364             if test -S $sock; then
365                 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="unix:path=$sock"
366             fi
367         done
368     fi
369     AC_SUBST(DBUS_SYSTEM_BUS_DEFAULT_ADDRESS)
370     
371 fi
372 AM_CONDITIONAL(HAVE_DBUS, test "x$HAVE_DBUS" = "xyes")
373
374 #
375 # Expat
376 #
377 AC_ARG_ENABLE(expat,
378         AS_HELP_STRING([--disable-expat],[Disable use of Expat]),
379         [case "${enableval}" in
380                 yes) HAVE_EXPAT=yes ;;
381                 no)  HAVE_EXPAT=no ;;
382                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-expat) ;;
383         esac],
384         [HAVE_EXPAT=yes]) 
385
386 if test "x$HAVE_EXPAT" = "xyes" ; then
387     AC_CHECK_LIB(expat, XML_ParserCreate, [ AC_CHECK_HEADERS(expat.h, have_expat=true, have_expat=false) ], have_expat=false)
388
389     if ! $have_expat ; then
390         AC_MSG_ERROR([*** libexpat not found ***])
391     fi
392 fi
393 AM_CONDITIONAL(HAVE_EXPAT, test "x$HAVE_EXPAT" = "xyes")
394
395 #
396 # GDBM
397 #
398 AC_ARG_ENABLE(gdbm,
399         AS_HELP_STRING([--disable-gdbm],[Disable use of GDBM]),
400         [case "${enableval}" in
401                 yes) HAVE_GDBM=yes ;;
402                 no)  HAVE_GDBM=no ;;
403                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-gdbm) ;;
404         esac],
405         [HAVE_GDBM=yes]) 
406
407 if test "x$HAVE_GDBM" = "xyes" ; then
408     AC_CHECK_LIB(gdbm, gdbm_open, [ AC_CHECK_HEADERS(gdbm.h, have_gdbm=true, have_gdbm=false) ], have_gdbm=false)
409
410     if ! $have_gdbm ; then
411         AC_MSG_ERROR([*** libgdbm not found ***])
412     fi
413     AC_DEFINE([HAVE_GDBM],[],[Support for GDBM])
414 fi
415 AM_CONDITIONAL(HAVE_GDBM, test "x$HAVE_GDBM" = "xyes")
416
417 #
418 # libdaemon
419 #
420 AC_ARG_ENABLE(libdaemon,
421         AS_HELP_STRING([--disable-libdaemon],[Disable use of libdaemon]),
422         [case "${enableval}" in
423                 yes) HAVE_LIBDAEMON=yes ;;
424                 no)  HAVE_LIBDAEMON=no ;;
425                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-libdaemon) ;;
426         esac],
427         [HAVE_LIBDAEMON=yes]) 
428
429 if test "x$HAVE_LIBDAEMON" = "xyes" ; then
430     PKG_CHECK_MODULES(LIBDAEMON, [ libdaemon >= 0.5 ])
431     AC_SUBST(LIBDAEMON_CFLAGS)
432     AC_SUBST(LIBDAEMON_LIBS)
433 fi
434 AM_CONDITIONAL(HAVE_LIBDAEMON, test "x$HAVE_LIBDAEMON" = "xyes")
435
436 #
437 # Python stuff
438 #
439 AC_ARG_ENABLE(python,
440     AS_HELP_STRING([--disable-python], [Disable scripts that depends on python]),
441     [case "${enableval}" in
442           yes) HAVE_PYTHON=yes ;;
443           no)  HAVE_PYTHON=no ;;
444           *) AC_MSG_ERROR([bad value ${enableval} for --enable-python]) ;;
445     esac],[HAVE_PYTHON=yes])
446
447 HAVE_PYTHON_DBUS=no
448 HAVE_PYGTK=no
449
450 if test "x$HAVE_PYTHON" = "xyes" ; then
451     AM_PATH_PYTHON([2.4])
452
453     AC_ARG_ENABLE(pygtk,
454         AS_HELP_STRING([--disable-pygtk],[Disable use of GTK in Python]),
455         [case "${enableval}" in
456                 yes) HAVE_PYGTK=yes ;;
457                 no)  HAVE_PYGTK=no ;;
458                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-pygtk) ;;
459         esac],
460         [HAVE_PYGTK=yes])
461     
462     if test "x$HAVE_PYGTK" = "xyes" ; then
463         AM_CHECK_PYMOD(gtk,,,[AC_MSG_ERROR(Could not find Python module gtk)])
464     fi
465
466
467     AC_ARG_ENABLE(python-dbus,
468         AS_HELP_STRING([--disable-python-dbus],[Disable use of D-BUS in Python]),
469         [case "${enableval}" in
470                 yes) HAVE_PYTHON_DBUS=yes ;;
471                 no)  HAVE_PYTHON_DBUS=no ;;
472                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-python-dbus) ;;
473         esac],
474         [HAVE_PYTHON_DBUS=yes])
475     
476     if test "x$HAVE_PYTHON_DBUS" = "xyes"; then
477         AM_CHECK_PYMOD(dbus,,,[AC_MSG_ERROR(Could not find Python module dbus)])
478     fi
479
480     AM_CHECK_PYMOD(socket,,,[AC_MSG_ERROR(Could not find Python module socket)])
481     AM_CHECK_PYMOD(gdbm,,,[AC_MSG_ERROR(Could not find Python module gdbm)])
482 fi
483 AM_CONDITIONAL(HAVE_PYTHON, [test "x$HAVE_PYTHON" = "xyes" ])
484 AM_CONDITIONAL(HAVE_PYGTK, test "x$HAVE_PYGTK" = "xyes")
485 AM_CONDITIONAL(HAVE_PYTHON_DBUS, test "x$HAVE_PYTHON_DBUS" = "xyes")
486
487 #
488 # Check for mono stuff
489 #
490 AC_ARG_ENABLE(mono,
491         AS_HELP_STRING([--disable-mono],[Disable mono bindings]),
492         [case "${enableval}" in
493                 yes) HAVE_MONO=yes ;;
494                 no)  HAVE_MONO=no ;;
495                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-mono) ;;
496         esac],
497         [HAVE_MONO=yes])
498
499 AC_ARG_ENABLE(monodoc,
500         AS_HELP_STRING([--disable-monodoc],[Disable documentation for mono bindings]),
501         [case "${enableval}" in
502                 yes) HAVE_MONODOC=yes ;;
503                 no)  HAVE_MONODOC=no ;;
504                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-monodoc) ;;
505         esac],
506         [HAVE_MONODOC=yes])
507
508 if test "x$HAVE_MONO" = "xyes" ; then
509         AC_PATH_PROG(MCS, mcs)
510         if test "x$MCS" = "x" ; then
511                AC_MSG_ERROR([Can not find "mcs" in your PATH])
512         fi
513
514         AC_PATH_PROG(GACUTIL, gacutil)
515         if test "x$GACUTIL" = "x" ; then
516                 AC_MSG_ERROR([Can not find "gacutil" in your PATH])
517         fi
518
519         AC_SUBST(MCS)
520         AC_SUBST(GACUTIL)
521 fi
522 AM_CONDITIONAL(HAVE_MONO, test "x$HAVE_MONO" = "xyes")
523
524 #
525 # Check for monodoc stuff
526 #
527 if test "x$HAVE_MONODOC" = "xyes" ; then
528         PKG_CHECK_MODULES(MONODOC, [monodoc >= 1.1.8])
529         MONODOC_DIR=`$PKG_CONFIG --variable=sourcesdir monodoc`        
530
531         AC_PATH_PROG(MONODOCER, monodocer)
532         AC_PATH_PROG(MDASSEMBLER, mdassembler)
533
534         AC_SUBST(MONODOC_DIR)
535         AC_SUBST(MONODOCER)
536         AC_SUBST(MDASSEMBLER)
537 fi
538 AM_CONDITIONAL(HAVE_MONODOC, test "x$HAVE_MONODOC" = "xyes")
539
540 #
541 # Defining Avahi User and Group.
542 #
543 AC_ARG_WITH(avahi_user, AS_HELP_STRING([--with-avahi-user=<user>],[User for running the Avahi daemon (avahi)]))
544 if test -z "$with_avahi_user" ; then
545     AVAHI_USER=avahi
546 else
547     AVAHI_USER=$with_avahi_user
548 fi
549 AC_SUBST(AVAHI_USER)
550 AC_DEFINE_UNQUOTED(AVAHI_USER,"$AVAHI_USER", [User for running the Avahi daemon])
551
552 AC_ARG_WITH(avahi_group,AS_HELP_STRING([--with-avahi-group=<group>],[Group for Avahi (avahi)]))
553 if test -z "$with_avahi_group" ; then
554     AVAHI_GROUP=avahi
555 else
556     AVAHI_GROUP=$with_avahi_group
557 fi
558 AC_SUBST(AVAHI_GROUP)
559 AC_DEFINE_UNQUOTED(AVAHI_GROUP,"$AVAHI_GROUP", [Group for Avahi])
560
561 #
562 # Avahi runtime dir
563 #
564 avahi_runtime_dir="${localstatedir}/run"
565 avahi_socket="${avahi_runtime_dir}/avahi-daemon/socket"
566 AC_SUBST(avahi_runtime_dir)
567 AC_SUBST(avahi_socket)
568
569 #
570 # Avahi interfaces dir
571 #
572 if test "x$HAVE_PYTHON_DBUS" = "xyes" -o "x$HAVE_GTK" = "xyes"; then
573         interfacesdir="${datadir}/${PACKAGE}/interfaces/"
574         AC_SUBST(interfacesdir)
575 fi
576
577 #
578 # Doxygen
579 #
580 DX_HTML_FEATURE(ON)
581 DX_CHM_FEATURE(OFF)
582 DX_CHI_FEATURE(OFF)
583 DX_MAN_FEATURE(OFF)
584 DX_RTF_FEATURE(OFF)
585 DX_XML_FEATURE(OFF)
586 DX_PDF_FEATURE(OFF)
587 DX_PS_FEATURE(OFF)
588 DX_INIT_DOXYGEN(avahi, doxygen.cfg, doxygen)
589
590 #
591 # Build and Install man pages
592 #
593 AC_ARG_ENABLE(manpages,
594         AS_HELP_STRING([--disable-manpages],[Disable building and installation of man pages]),
595 [case "${enableval}" in
596   yes) manpages=yes ;;
597   no)  manpages=no ;;
598   *) AC_MSG_ERROR([bad value ${enableval} for --disable-manpages]) ;;
599 esac],[manpages=yes])
600
601 if test x$manpages = xyes ; then
602     #
603     # XMLTOMAN manpage generation
604     #
605     AC_ARG_ENABLE(xmltoman,
606     AS_HELP_STRING([--disable-xmltoman],[Disable rebuilding of man pages with xmltoman]),
607     [case "${enableval}" in
608       yes) xmltoman=yes ;;
609       no)  xmltoman=no ;;
610       *) AC_MSG_ERROR([bad value ${enableval} for --disable-xmltoman]) ;;
611     esac],[xmltoman=yes])
612     
613     if test x$xmltoman = xyes ; then
614         AC_CHECK_PROG(have_xmltoman, xmltoman, yes, no)
615     fi
616
617     if test x$have_xmltoman = xno -o x$xmltoman = xno; then
618         if ! test -e man/avahi-daemon.8 ; then
619             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])
620             exit 1
621         fi
622         AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***])
623         xmltoman=no
624     fi
625 fi
626 AM_CONDITIONAL([USE_XMLTOMAN], [test "x$xmltoman" = xyes])
627 AM_CONDITIONAL([BUILD_MANPAGES], [test "x$manpages" = xyes])
628
629 #
630 # Conditionally compile test and example programs
631 #
632 AC_ARG_ENABLE(tests,
633         AS_HELP_STRING([--enable-tests],[Enable building of tests and examples]),
634         [case "${enableval}" in
635                 yes) ENABLE_TESTS=yes ;;
636                 no)  ENABLE_TESTS=no ;;
637                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-tests) ;;
638         esac],
639         [ENABLE_TESTS=no])
640
641 AM_CONDITIONAL([ENABLE_TESTS], [test "x$ENABLE_TESTS" = "xyes"])
642
643 #
644 # Optionally enable libdns_sd compatibility support
645 #
646 AC_ARG_ENABLE(compat-libdns_sd,
647         AS_HELP_STRING([--enable-compat-libdns_sd],[Enable compatibility layer for libdns_sd]),
648         [case "${enableval}" in
649                 yes) ENABLE_COMPAT_LIBDNS_SD=yes ;;
650                 no)  ENABLE_COMPAT_LIBDNS_SD=no ;;
651                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-libdns_sd) ;;
652         esac],
653         [ENABLE_COMPAT_LIBDNS_SD=no])
654
655 AM_CONDITIONAL([ENABLE_COMPAT_LIBDNS_SD], [test "x$ENABLE_COMPAT_LIBDNS_SD" = "xyes"])
656
657 #
658 # Optionally enable HOWL compatibility support
659 #
660 AC_ARG_ENABLE(compat-howl,
661         AS_HELP_STRING([--enable-compat-howl],[Enable compatibility layer for HOWL]),
662         [case "${enableval}" in
663                 yes) ENABLE_COMPAT_HOWL=yes ;;
664                 no)  ENABLE_COMPAT_HOWL=no ;;
665                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-howl) ;;
666         esac],
667         [ENABLE_COMPAT_HOWL=no])
668
669 AM_CONDITIONAL([ENABLE_COMPAT_HOWL], [test "x$ENABLE_COMPAT_HOWL" = "xyes"])
670
671
672 # ==========================================================================
673 AC_CONFIG_FILES([
674 Makefile 
675 avahi-common/Makefile 
676 avahi-core/Makefile 
677 avahi-glib/Makefile 
678 avahi-qt/Makefile
679 avahi-daemon/Makefile 
680 avahi-daemon/avahi-dbus.conf
681 avahi-discover-standalone/Makefile 
682 avahi-client/Makefile 
683 initscript/Makefile 
684 initscript/debian/Makefile
685 initscript/gentoo/Makefile
686 initscript/archlinux/Makefile
687 initscript/suse/Makefile
688 initscript/fedora/Makefile
689 avahi-dnsconfd/Makefile
690 avahi-utils/Makefile
691 avahi-utils/avahi/Makefile
692 examples/Makefile
693 common/Makefile
694 man/Makefile
695 tests/Makefile
696 service-type-database/Makefile
697 avahi-sharp/Makefile
698 avahi-compat-libdns_sd/Makefile
699 avahi-compat-howl/Makefile
700 avahi-compat-howl/samples/Makefile
701 ])
702 AC_OUTPUT
703
704 # ==========================================================================
705 echo "
706  ---{ $PACKAGE_NAME $VERSION }---
707
708     prefix:                 ${prefix}
709     sysconfdir:             ${sysconfdir}
710     localstatedir:          ${localstatedir}
711     avahi socket:           ${avahi_socket}
712     dbus-1 system.d dir:    ${DBUS_SYS_DIR}
713     dbus-1 version:         `pkg-config dbus-1 --modversion`
714     dbus-1 system socket    ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}
715     compiler:               ${CC}
716     cflags:                 ${CFLAGS}
717     Enable GLIB:            ${HAVE_GLIB}
718     Enable GTK:             ${HAVE_GTK}
719     Enable D-BUS:           ${HAVE_DBUS}
720     Enable Expat:           ${HAVE_EXPAT}
721     Enable GDBM:            ${HAVE_GDBM}
722     Enable libdaemon:       ${HAVE_LIBDAEMON}
723     Enable Python:          ${HAVE_PYTHON}
724     Enable pygtk:           ${HAVE_PYGTK}
725     Enable python-dbus:     ${HAVE_PYTHON_DBUS}
726     Enable QT3:             ${HAVE_QT3}
727     Enable QT4:             ${HAVE_QT4}
728     Enable Mono:            ${HAVE_MONO}
729     Linux Distro:           ${with_distro}
730     User for Avahi:         ${AVAHI_USER}
731     Group for Avahi:        ${AVAHI_GROUP}
732 "
733
734 BUILD_DAEMON="no (!)"
735
736 if test "x$HAVE_EXPAT" = "xyes" -a "x$HAVE_LIBDAEMON" = "xyes" ; then
737     BUILD_DAEMON=yes
738 fi
739
740 BUILD_UTILS="no (!)"
741
742 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
743     BUILD_UTILS=yes
744 fi
745
746 BUILD_CLIENT="no (!)"
747
748 if test "x$BUILD_DAEMON" = "xyes" -a "x$HAVE_DBUS" = "xyes" ; then
749     BUILD_CLIENT=yes
750 fi
751
752 if test "x$ENABLE_COMPAT_LIBDNS_SD" = "xyes" -a "x$BUILD_CLIENT" != "xyes" ; then
753    AC_MSG_ERROR([building avahi-compat-libdns_sd without building libavahi-client doesn't work])
754 fi
755 if test "x$ENABLE_COMPAT_HOWL" = "xyes" -a "x$BUILD_CLIENT" != "xyes" ; then
756    AC_MSG_ERROR([building avahi-compat-howl without building libavahi-client doesn't work])
757 fi
758
759
760 echo "
761     Building libavahi-core              yes
762     Building avahi-daemon:              ${BUILD_DAEMON}
763     Building avahi-dnsconfd:            ${BUILD_DAEMON}
764     Building avahi-utils:               ${BUILD_UTILS}
765     Building libavahi-glib:             ${HAVE_GLIB}
766     Building libavahi-client:           ${BUILD_CLIENT}
767     Building avahi-discover-standalone: ${HAVE_GTK}
768     Building libavahi-qt3:              ${HAVE_QT3}
769     Building libavahi-qt4:              ${HAVE_QT4}
770     Building avahi-sharp:               ${HAVE_MONO}
771     Building avahi-compat-libdns_sd:    ${ENABLE_COMPAT_LIBDNS_SD}
772     Building avahi-compat-howl:         ${ENABLE_COMPAT_HOWL}
773     Building tests:                     ${ENABLE_TESTS}
774 "