]> git.meshlink.io Git - catta/blob - configure.ac
* avahi-utils: replace python avahi-browse with a version written in C.
[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 -Wlarger-than-4000 -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 # libdaemon
397 #
398 AC_ARG_ENABLE(libdaemon,
399         AS_HELP_STRING([--disable-libdaemon],[Disable use of libdaemon]),
400         [case "${enableval}" in
401                 yes) HAVE_LIBDAEMON=yes ;;
402                 no)  HAVE_LIBDAEMON=no ;;
403                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-libdaemon) ;;
404         esac],
405         [HAVE_LIBDAEMON=yes]) 
406
407 if test "x$HAVE_LIBDAEMON" = "xyes" ; then
408     PKG_CHECK_MODULES(LIBDAEMON, [ libdaemon >= 0.5 ])
409     AC_SUBST(LIBDAEMON_CFLAGS)
410     AC_SUBST(LIBDAEMON_LIBS)
411 fi
412 AM_CONDITIONAL(HAVE_LIBDAEMON, test "x$HAVE_LIBDAEMON" = "xyes")
413
414 #
415 # Python stuff
416 #
417 AC_ARG_ENABLE(python,
418     AS_HELP_STRING([--disable-python], [Disable scripts that depends on python]),
419     [case "${enableval}" in
420           yes) HAVE_PYTHON=yes ;;
421           no)  HAVE_PYTHON=no ;;
422           *) AC_MSG_ERROR([bad value ${enableval} for --enable-python]) ;;
423     esac],[HAVE_PYTHON=yes])
424
425 HAVE_PYTHON_DBUS=no
426 HAVE_PYGTK=no
427
428 if test "x$HAVE_PYTHON" = "xyes" ; then
429     AM_PATH_PYTHON([2.4])
430
431     AC_ARG_ENABLE(pygtk,
432         AS_HELP_STRING([--disable-pygtk],[Disable use of GTK in Python]),
433         [case "${enableval}" in
434                 yes) HAVE_PYGTK=yes ;;
435                 no)  HAVE_PYGTK=no ;;
436                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-pygtk) ;;
437         esac],
438         [HAVE_PYGTK=yes])
439     
440     if test "x$HAVE_PYGTK" = "xyes" ; then
441         AM_CHECK_PYMOD(gtk,,,[AC_MSG_ERROR(Could not find Python module gtk)])
442     fi
443
444
445     AC_ARG_ENABLE(python-dbus,
446         AS_HELP_STRING([--disable-python-dbus],[Disable use of D-BUS in Python]),
447         [case "${enableval}" in
448                 yes) HAVE_PYTHON_DBUS=yes ;;
449                 no)  HAVE_PYTHON_DBUS=no ;;
450                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-python-dbus) ;;
451         esac],
452         [HAVE_PYTHON_DBUS=yes])
453     
454     if test "x$HAVE_PYTHON_DBUS" = "xyes"; then
455         AM_CHECK_PYMOD(dbus,,,[AC_MSG_ERROR(Could not find Python module dbus)])
456     fi
457
458     AM_CHECK_PYMOD(socket,,,[AC_MSG_ERROR(Could not find Python module socket)])
459     AM_CHECK_PYMOD(gdbm,,,[AC_MSG_ERROR(Could not find Python module gdbm)])
460 fi
461 AM_CONDITIONAL(HAVE_PYTHON, [test "x$HAVE_PYTHON" = "xyes" ])
462 AM_CONDITIONAL(HAVE_PYGTK, test "x$HAVE_PYGTK" = "xyes")
463 AM_CONDITIONAL(HAVE_PYTHON_DBUS, test "x$HAVE_PYTHON_DBUS" = "xyes")
464
465 #
466 # Check for mono stuff
467 #
468 AC_ARG_ENABLE(mono,
469         AS_HELP_STRING([--disable-mono],[Disable mono bindings]),
470         [case "${enableval}" in
471                 yes) HAVE_MONO=yes ;;
472                 no)  HAVE_MONO=no ;;
473                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-mono) ;;
474         esac],
475         [HAVE_MONO=yes])
476
477 AC_ARG_ENABLE(monodoc,
478         AS_HELP_STRING([--disable-monodoc],[Disable documentation for mono bindings]),
479         [case "${enableval}" in
480                 yes) HAVE_MONODOC=yes ;;
481                 no)  HAVE_MONODOC=no ;;
482                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-monodoc) ;;
483         esac],
484         [HAVE_MONODOC=yes])
485
486 if test "x$HAVE_MONO" = "xyes" ; then
487         AC_PATH_PROG(MCS, mcs)
488         if test "x$MCS" = "x" ; then
489                AC_MSG_ERROR([Can not find "mcs" in your PATH])
490         fi
491
492         AC_PATH_PROG(GACUTIL, gacutil)
493         if test "x$GACUTIL" = "x" ; then
494                 AC_MSG_ERROR([Can not find "gacutil" in your PATH])
495         fi
496
497         AC_SUBST(MCS)
498         AC_SUBST(GACUTIL)
499 fi
500 AM_CONDITIONAL(HAVE_MONO, test "x$HAVE_MONO" = "xyes")
501
502 #
503 # Check for monodoc stuff
504 #
505 if test "x$HAVE_MONODOC" = "xyes" ; then
506         PKG_CHECK_MODULES(MONODOC, [monodoc >= 1.1.8])
507         MONODOC_DIR=`$PKG_CONFIG --variable=sourcesdir monodoc`        
508
509         AC_PATH_PROG(MONODOCER, monodocer)
510         AC_PATH_PROG(MDASSEMBLER, mdassembler)
511
512         AC_SUBST(MONODOC_DIR)
513         AC_SUBST(MONODOCER)
514         AC_SUBST(MDASSEMBLER)
515 fi
516 AM_CONDITIONAL(HAVE_MONODOC, test "x$HAVE_MONODOC" = "xyes")
517
518 #
519 # Defining Avahi User and Group.
520 #
521 AC_ARG_WITH(avahi_user, AS_HELP_STRING([--with-avahi-user=<user>],[User for running the Avahi daemon (avahi)]))
522 if test -z "$with_avahi_user" ; then
523     AVAHI_USER=avahi
524 else
525     AVAHI_USER=$with_avahi_user
526 fi
527 AC_SUBST(AVAHI_USER)
528 AC_DEFINE_UNQUOTED(AVAHI_USER,"$AVAHI_USER", [User for running the Avahi daemon])
529
530 AC_ARG_WITH(avahi_group,AS_HELP_STRING([--with-avahi-group=<group>],[Group for Avahi (avahi)]))
531 if test -z "$with_avahi_group" ; then
532     AVAHI_GROUP=avahi
533 else
534     AVAHI_GROUP=$with_avahi_group
535 fi
536 AC_SUBST(AVAHI_GROUP)
537 AC_DEFINE_UNQUOTED(AVAHI_GROUP,"$AVAHI_GROUP", [Group for Avahi])
538
539 #
540 # Avahi runtime dir
541 #
542 avahi_runtime_dir="${localstatedir}/run"
543 avahi_socket="${avahi_runtime_dir}/avahi-daemon/socket"
544 AC_SUBST(avahi_runtime_dir)
545 AC_SUBST(avahi_socket)
546
547 #
548 # Avahi interfaces dir
549 #
550 if test "x$HAVE_PYTHON_DBUS" = "xyes" -o "x$HAVE_GTK" = "xyes"; then
551         interfacesdir="${datadir}/${PACKAGE}/interfaces/"
552         AC_SUBST(interfacesdir)
553 fi
554
555 #
556 # Doxygen
557 #
558 DX_HTML_FEATURE(ON)
559 DX_CHM_FEATURE(OFF)
560 DX_CHI_FEATURE(OFF)
561 DX_MAN_FEATURE(OFF)
562 DX_RTF_FEATURE(OFF)
563 DX_XML_FEATURE(OFF)
564 DX_PDF_FEATURE(OFF)
565 DX_PS_FEATURE(OFF)
566 DX_INIT_DOXYGEN(avahi, doxygen.cfg, doxygen)
567
568 #
569 # Build and Install man pages
570 #
571 AC_ARG_ENABLE(manpages,
572         AS_HELP_STRING([--disable-manpages],[Disable building and installation of man pages]),
573 [case "${enableval}" in
574   yes) manpages=yes ;;
575   no)  manpages=no ;;
576   *) AC_MSG_ERROR([bad value ${enableval} for --disable-manpages]) ;;
577 esac],[manpages=yes])
578
579 if test x$manpages = xyes ; then
580     #
581     # XMLTOMAN manpage generation
582     #
583     AC_ARG_ENABLE(xmltoman,
584     AS_HELP_STRING([--disable-xmltoman],[Disable rebuilding of man pages with xmltoman]),
585     [case "${enableval}" in
586       yes) xmltoman=yes ;;
587       no)  xmltoman=no ;;
588       *) AC_MSG_ERROR([bad value ${enableval} for --disable-xmltoman]) ;;
589     esac],[xmltoman=yes])
590     
591     if test x$xmltoman = xyes ; then
592         AC_CHECK_PROG(have_xmltoman, xmltoman, yes, no)
593     fi
594
595     if test x$have_xmltoman = xno -o x$xmltoman = xno; then
596         if ! test -e man/avahi-daemon.8 ; then
597             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])
598             exit 1
599         fi
600         AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***])
601         xmltoman=no
602     fi
603 fi
604 AM_CONDITIONAL([USE_XMLTOMAN], [test "x$xmltoman" = xyes])
605 AM_CONDITIONAL([BUILD_MANPAGES], [test "x$manpages" = xyes])
606
607 #
608 # Conditionally compile test and example programs
609 #
610 AC_ARG_ENABLE(tests,
611         AS_HELP_STRING([--enable-tests],[Enable building of tests and examples]),
612         [case "${enableval}" in
613                 yes) ENABLE_TESTS=yes ;;
614                 no)  ENABLE_TESTS=no ;;
615                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-tests) ;;
616         esac],
617         [ENABLE_TESTS=no])
618
619 AM_CONDITIONAL([ENABLE_TESTS], [test "x$ENABLE_TESTS" = "xyes"])
620
621 #
622 # Optionally enable libdns_sd compatibility support
623 #
624 AC_ARG_ENABLE(compat-libdns_sd,
625         AS_HELP_STRING([--enable-compat-libdns_sd],[Enable compatibility layer for libdns_sd]),
626         [case "${enableval}" in
627                 yes) ENABLE_COMPAT_LIBDNS_SD=yes ;;
628                 no)  ENABLE_COMPAT_LIBDNS_SD=no ;;
629                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-libdns_sd) ;;
630         esac],
631         [ENABLE_COMPAT_LIBDNS_SD=no])
632
633 AM_CONDITIONAL([ENABLE_COMPAT_LIBDNS_SD], [test "x$ENABLE_COMPAT_LIBDNS_SD" = "xyes"])
634
635 #
636 # Optionally enable HOWL compatibility support
637 #
638 AC_ARG_ENABLE(compat-howl,
639         AS_HELP_STRING([--enable-compat-howl],[Enable compatibility layer for HOWL]),
640         [case "${enableval}" in
641                 yes) ENABLE_COMPAT_HOWL=yes ;;
642                 no)  ENABLE_COMPAT_HOWL=no ;;
643                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-howl) ;;
644         esac],
645         [ENABLE_COMPAT_HOWL=no])
646
647 AM_CONDITIONAL([ENABLE_COMPAT_HOWL], [test "x$ENABLE_COMPAT_HOWL" = "xyes"])
648
649
650 # ==========================================================================
651 AC_CONFIG_FILES([
652 Makefile 
653 avahi-common/Makefile 
654 avahi-core/Makefile 
655 avahi-glib/Makefile 
656 avahi-qt/Makefile
657 avahi-daemon/Makefile 
658 avahi-daemon/avahi-dbus.conf
659 avahi-discover-standalone/Makefile 
660 avahi-client/Makefile 
661 initscript/Makefile 
662 initscript/debian/Makefile
663 initscript/gentoo/Makefile
664 initscript/archlinux/Makefile
665 initscript/suse/Makefile
666 initscript/fedora/Makefile
667 avahi-dnsconfd/Makefile
668 avahi-utils/Makefile
669 avahi-utils/avahi/Makefile
670 examples/Makefile
671 common/Makefile
672 man/Makefile
673 tests/Makefile
674 service-type-database/Makefile
675 avahi-sharp/Makefile
676 avahi-compat-libdns_sd/Makefile
677 avahi-compat-howl/Makefile
678 avahi-compat-howl/samples/Makefile
679 ])
680 AC_OUTPUT
681
682 # ==========================================================================
683 echo "
684  ---{ $PACKAGE_NAME $VERSION }---
685
686     prefix:                 ${prefix}
687     sysconfdir:             ${sysconfdir}
688     localstatedir:          ${localstatedir}
689     avahi socket:           ${avahi_socket}
690     dbus-1 system.d dir:    ${DBUS_SYS_DIR}
691     dbus-1 version:         `pkg-config dbus-1 --modversion`
692     dbus-1 system socket    ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}
693     compiler:               ${CC}
694     cflags:                 ${CFLAGS}
695     Enable GLIB:            ${HAVE_GLIB}
696     Enable GTK:             ${HAVE_GTK}
697     Enable D-BUS:           ${HAVE_DBUS}
698     Enable Expat:           ${HAVE_EXPAT}
699     Enable libdaemon:       ${HAVE_LIBDAEMON}
700     Enable Python:          ${HAVE_PYTHON}
701     Enable pygtk:           ${HAVE_PYGTK}
702     Enable python-dbus:     ${HAVE_PYTHON_DBUS}
703     Enable QT3:             ${HAVE_QT3}
704     Enable QT4:             ${HAVE_QT4}
705     Enable Mono:            ${HAVE_MONO}
706     Linux Distro:           ${with_distro}
707     User for Avahi:         ${AVAHI_USER}
708     Group for Avahi:        ${AVAHI_GROUP}
709 "
710
711 BUILD_DAEMON="no (!)"
712
713 if test "x$HAVE_EXPAT" = "xyes" -a "x$HAVE_LIBDAEMON" = "xyes" ; then
714     BUILD_DAEMON=yes
715 fi
716
717 BUILD_UTILS="no (!)"
718
719 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
720     BUILD_UTILS=yes
721 fi
722
723 BUILD_CLIENT="no (!)"
724
725 if test "x$BUILD_DAEMON" = "xyes" -a "x$HAVE_DBUS" = "xyes" ; then
726     BUILD_CLIENT=yes
727 fi
728
729 if test "x$ENABLE_COMPAT_LIBDNS_SD" = "xyes" -a "x$BUILD_CLIENT" != "xyes" ; then
730    AC_MSG_ERROR([building avahi-compat-libdns_sd without building libavahi-client doesn't work])
731 fi
732 if test "x$ENABLE_COMPAT_HOWL" = "xyes" -a "x$BUILD_CLIENT" != "xyes" ; then
733    AC_MSG_ERROR([building avahi-compat-howl without building libavahi-client doesn't work])
734 fi
735
736
737 echo "
738     Building libavahi-core              yes
739     Building avahi-daemon:              ${BUILD_DAEMON}
740     Building avahi-dnsconfd:            ${BUILD_DAEMON}
741     Building avahi-utils:               ${BUILD_UTILS}
742     Building libavahi-glib:             ${HAVE_GLIB}
743     Building libavahi-client:           ${BUILD_CLIENT}
744     Building avahi-discover-standalone: ${HAVE_GTK}
745     Building libavahi-qt3:              ${HAVE_QT3}
746     Building libavahi-qt4:              ${HAVE_QT4}
747     Building avahi-sharp:               ${HAVE_MONO}
748     Building avahi-compat-libdns_sd:    ${ENABLE_COMPAT_LIBDNS_SD}
749     Building avahi-compat-howl:         ${ENABLE_COMPAT_HOWL}
750     Building tests:                     ${ENABLE_TESTS}
751 "