]> git.meshlink.io Git - catta/blob - configure.ac
* Try to guess where the D-BUS socket is before defaulting (this is for gentoo and...
[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.5],[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
38 if type -p stow > /dev/null && test -d /usr/local/stow ; then
39     AC_MSG_NOTICE([*** Found /usr/local/stow: default install prefix set to /usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION} ***])
40     ac_default_prefix="/usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION}"
41 fi
42
43 # Checks for programs.
44 AC_PROG_CC
45 AC_PROG_CXX
46 AC_GNU_SOURCE
47 AC_PROG_CPP
48 AC_PROG_INSTALL
49 AC_PROG_LN_S
50 AC_PROG_MAKE_SET
51 AC_PROG_GCC_TRADITIONAL
52
53 # libtool stuff
54 AC_PROG_LIBTOOL
55
56 #
57 # Detecting the linux distribution for specific things like init scripts.
58 #
59 AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO],[Specify the Linux distribution to target: One of debian, gentoo, archlinux or none]))
60 if test "z$with_distro" = "z"; then
61     AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
62     AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
63     AC_CHECK_FILE(/etc/arch-release,with_distro="archlinux")
64     AC_CHECK_FILE(/etc/debian_version,with_distro="debian")
65 fi
66 with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]' `
67
68 if test "z$with_distro" = "z"; then
69     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.])
70     exit 1
71 else
72 case $with_distro in
73     debian|gentoo|archlinux|suse|none)
74      ;;
75     *)
76      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])
77      ;;
78 esac
79 fi
80
81 AM_CONDITIONAL(TARGET_SUSE, test x"$with_distro" = xsuse)
82 AM_CONDITIONAL(TARGET_GENTOO, test x"$with_distro" = xgentoo)
83 AM_CONDITIONAL(TARGET_DEBIAN, test x"$with_distro" = xdebian)
84 AM_CONDITIONAL(TARGET_ARCHLINUX, test x"$with_distro" = xarchlinux)
85
86 test_gcc_flag() {
87     AC_LANG_CONFTEST([int main() {}])
88     $CC -c conftest.c $CFLAGS $@ > /dev/null 2> /dev/null
89     ret=$?
90     rm -f conftest.o
91     return $ret
92 }
93
94 # If using GCC specify some additional parameters
95 if test "x$GCC" = "xyes" ; then
96
97     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 -Wno-unused-parameter"
98
99     # Test whether rtnetlink.h can be included when compiled with -std=c99
100     # some distributions (e.g. archlinux) have broken headers that dont
101     # define __u64 with -std=c99
102     AC_MSG_CHECKING([checking whether rtnetlink.h can be included with -std=c99])
103     OLDCFLAGS="$CFLAGS"
104     CFLAGS="-std=c99"
105     AC_TRY_COMPILE([#include <linux/rtnetlink.h>], [],
106         use_stdc99=yes, use_stdc99=no)
107
108     if test x"$use_stdc99" = xyes; then
109         DESIRED_FLAGS="-std=c99 $DESIRED_FLAGS"
110         AC_MSG_RESULT([yes])
111     else
112         AC_MSG_RESULT([no])
113     fi
114
115     CFLAGS="$OLDCFLAGS"
116
117     for flag in $DESIRED_FLAGS ; do
118         AC_MSG_CHECKING([whether $CC accepts $flag])
119         if test_gcc_flag $flag ; then 
120            CFLAGS="$CFLAGS $flag"
121            AC_MSG_RESULT([yes])
122         else
123            AC_MSG_RESULT([no])
124         fi
125     done 
126 fi
127
128 # Checks for header files.
129 AC_HEADER_STDC
130 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])
131
132 # Checks for typedefs, structures, and compiler characteristics.
133 AC_C_CONST
134 AC_TYPE_SIZE_T
135 AC_HEADER_TIME
136 AC_HEADER_SYS_WAIT
137
138 # Checks for library functions.
139 AC_FUNC_MEMCMP
140 AC_FUNC_SELECT_ARGTYPES
141 AC_FUNC_MALLOC
142 AC_FUNC_REALLOC
143 AC_CHECK_FUNCS([gethostname memchr memmove memset mkdir select socket strchr strcspn strdup strerror strrchr strspn strstr uname setresuid setreuid strcasecmp gettimeofday putenv strncasecmp])
144
145 AC_FUNC_CHOWN
146 AC_FUNC_STAT
147 AC_TYPE_MODE_T
148 AC_TYPE_PID_T
149
150 # Check for pkg-config manually first, as if its not installed the
151 # PKG_PROG_PKG_CONFIG macro won't be defined.
152 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
153
154 if test x"$have_pkg_config" == xno; then
155     AC_MSG_ERROR(pkg-config is required to install this program)
156 fi
157
158 PKG_PROG_PKG_CONFIG
159
160 #
161 # Check for GLIB 2.0
162 #
163 AC_ARG_ENABLE(glib,
164         AS_HELP_STRING([--disable-glib],[Disable use of GLib]),
165         [case "${enableval}" in
166                 yes) HAVE_GLIB=yes ;;
167                 no)  HAVE_GLIB=no ;;
168                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-glib) ;;
169         esac],
170         [HAVE_GLIB=yes])
171
172 if test "x$HAVE_GLIB" = "xyes" ; then
173         PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ])
174         AC_SUBST(GLIB20_CFLAGS)
175         AC_SUBST(GLIB20_LIBS)
176 fi
177 AM_CONDITIONAL(HAVE_GLIB, test "x$HAVE_GLIB" = "xyes")
178
179 #
180 # Check for Qt 3
181 #
182 AC_ARG_ENABLE(qt3,
183         AS_HELP_STRING([--disable-qt3],[Disable building of Qt3 mainloop integration]),
184         [case "${enableval}" in
185                 yes) HAVE_QT3=yes ;;
186                 no)  HAVE_QT3=no ;;
187                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-qt3) ;;
188         esac],
189         [HAVE_QT3=yes])
190
191 if test "x$HAVE_QT3" = "xyes" ; then
192         PKG_CHECK_MODULES( QT3, [ qt-mt >= 3.0.0 ])
193         AC_SUBST(QT3_CFLAGS)
194         AC_SUBST(QT3_LIBS)
195             QT3_PREFIX="`$PKG_CONFIG --variable=prefix qt-mt`/bin"
196         MOC_QT3="no"
197             AC_CHECK_FILE( "$QT3_PREFIX/moc-qt3", [ MOC_QT3=$QT3_PREFIX/moc-qt3 ], [
198                     AC_CHECK_FILE("$QT3_PREFIX/moc", [ MOC_QT3=$QT3_PREFIX/moc ], [ 
199                 AC_MSG_ERROR([Couldn't find QT3 moc])])])
200         AC_SUBST(MOC_QT3)
201 fi
202 AM_CONDITIONAL(HAVE_QT3, test "x$HAVE_QT3" = "xyes")
203
204 #
205 # Check for Qt 4
206 #
207 AC_ARG_ENABLE(qt4,
208         AS_HELP_STRING([--disable-qt4],[Disable building of Qt4Core mainloop integration]),
209         [case "${enableval}" in
210                 yes) HAVE_QT4=yes ;;
211                 no)  HAVE_QT4=no ;;
212                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-qt4) ;;
213         esac],
214         [HAVE_QT4=yes])
215
216 if test "x$HAVE_QT4" = "xyes" ; then
217         PKG_CHECK_MODULES( QT4, [ QtCore >= 4.0.0 ])
218         AC_SUBST(QT4_CFLAGS)
219         AC_SUBST(QT4_LIBS)
220             QT4_PREFIX="`$PKG_CONFIG --variable=prefix QtCore`/bin"
221         MOC_QT4="no"
222             AC_CHECK_FILE( "$QT4_PREFIX/moc-qt4", [ MOC_QT4=$QT4_PREFIX/moc-qt4 ], [
223                AC_CHECK_FILE("$QT4_PREFIX/moc", [ MOC_QT4=$QT4_PREFIX/moc ], [ 
224                AC_MSG_ERROR([Couldn't find QT4 moc])])])
225         AC_SUBST(MOC_QT4)
226 fi
227 AM_CONDITIONAL(HAVE_QT4, test "x$HAVE_QT4" = "xyes")
228
229 #
230 # Check for GTK+
231 #
232 AC_ARG_ENABLE(gtk,
233         AS_HELP_STRING([--disable-gtk],[Disable use of GTK+]),
234         [case "${enableval}" in
235                 yes) HAVE_GTK=yes ;;
236                 no)  HAVE_GTK=no ;;
237                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-gtk) ;;
238         esac],
239         [HAVE_GTK=yes])
240
241 if test "x$HAVE_GTK" = "xyes" ; then
242         # Check for GTK 2.0
243         PKG_CHECK_MODULES(GTK20, [ gtk+-2.0 >= 2.4.0 ])
244         AC_SUBST(GTK20_CFLAGS)
245         AC_SUBST(GTK20_LIBS)
246         
247         # Check for GLADE 2.0
248         PKG_CHECK_MODULES(GLADE20, [ libglade-2.0 >= 2.4.0 ])
249         AC_SUBST(GLADE20_CFLAGS)
250         AC_SUBST(GLADE20_LIBS)
251 fi
252 AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes")
253
254
255
256 #
257 # D-BUS
258 #
259 AC_ARG_ENABLE(dbus,
260         AS_HELP_STRING([--disable-dbus],[Disable use of D-BUS]),
261         [case "${enableval}" in
262                 yes) HAVE_DBUS=yes ;;
263                 no)  HAVE_DBUS=no ;;
264                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dbus) ;;
265         esac],
266         [HAVE_DBUS=yes]) 
267
268 AC_ARG_WITH(dbus-sys, AS_HELP_STRING([--with-dbus-sys=<dir>], [where D-BUS system.d directory is]))
269 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]))
270
271 if test "x$HAVE_DBUS" = "xyes" ; then
272     AC_DEFINE(HAVE_DBUS, 1, [Whether we have D-BUS or not])
273
274     PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 0.34 ])
275     DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_API_SUBJECT_TO_CHANGE"
276     AC_SUBST(DBUS_CFLAGS)
277     AC_SUBST(DBUS_LIBS)
278
279     if ! test -z "$with_dbus_sys" ; then
280         DBUS_SYS_DIR="$with_dbus_sys"
281     else
282         DBUS_SYS_DIR="${sysconfdir}/dbus-1/system.d"
283     fi
284     AC_SUBST(DBUS_SYS_DIR)
285
286     if ! test -z "$with_dbus_system_address" ; then
287         DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="$with_dbus_system_address"
288     else
289         # This is ugly, but D-BUS doesn't export this address for us
290         # so we have to guess, pretty much all setups i've seen have 
291         # it in /var/lib/dbus or /var/run/dbus, and its defaulted to
292         # /var/run upstream so we will try guess first then default
293         # to /var/run/dbus
294
295         DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="unix:path=/var/run/dbus/system_bus_socket"
296         TRY_SOCKETS="/var/lib/dbus/system_bus_socket /var/run/dbus/system_bus_socket"
297         for sock in $TRY_SOCKETS; do
298             if test -S $sock; then
299                 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="unix:path=$sock"
300             fi
301         done
302     fi
303     AC_SUBST(DBUS_SYSTEM_BUS_DEFAULT_ADDRESS)
304     
305 fi
306 AM_CONDITIONAL(HAVE_DBUS, test "x$HAVE_DBUS" = "xyes")
307
308 #
309 # Expat
310 #
311 AC_ARG_ENABLE(expat,
312         AS_HELP_STRING([--disable-expat],[Disable use of Expat]),
313         [case "${enableval}" in
314                 yes) HAVE_EXPAT=yes ;;
315                 no)  HAVE_EXPAT=no ;;
316                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-expat) ;;
317         esac],
318         [HAVE_EXPAT=yes]) 
319
320 if test "x$HAVE_EXPAT" = "xyes" ; then
321     AC_CHECK_LIB(expat, XML_ParserCreate, [ AC_CHECK_HEADERS(expat.h, have_expat=true, have_expat=false) ], have_expat=false)
322
323     if ! $have_expat ; then
324         AC_MSG_ERROR([*** libexpat not found ***])
325     fi
326 fi
327 AM_CONDITIONAL(HAVE_EXPAT, test "x$HAVE_EXPAT" = "xyes")
328
329 #
330 # libdaemon
331 #
332 AC_ARG_ENABLE(libdaemon,
333         AS_HELP_STRING([--disable-libdaemon],[Disable use of libdaemon]),
334         [case "${enableval}" in
335                 yes) HAVE_LIBDAEMON=yes ;;
336                 no)  HAVE_LIBDAEMON=no ;;
337                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-libdaemon) ;;
338         esac],
339         [HAVE_LIBDAEMON=yes]) 
340
341 if test "x$HAVE_LIBDAEMON" = "xyes" ; then
342     PKG_CHECK_MODULES(LIBDAEMON, [ libdaemon >= 0.5 ])
343     AC_SUBST(LIBDAEMON_CFLAGS)
344     AC_SUBST(LIBDAEMON_LIBS)
345 fi
346 AM_CONDITIONAL(HAVE_LIBDAEMON, test "x$HAVE_LIBDAEMON" = "xyes")
347
348 #
349 # Python stuff
350 #
351 AC_ARG_ENABLE(python,
352     AS_HELP_STRING([--disable-python], [Disable scripts that depends on python]),
353     [case "${enableval}" in
354           yes) HAVE_PYTHON=yes ;;
355           no)  HAVE_PYTHON=no ;;
356           *) AC_MSG_ERROR([bad value ${enableval} for --enable-python]) ;;
357     esac],[HAVE_PYTHON=yes])
358
359 HAVE_PYTHON_DBUS=no
360 HAVE_PYGTK=no
361
362 if test "x$HAVE_PYTHON" = "xyes" ; then
363     AM_PATH_PYTHON([2.4])
364
365     AC_ARG_ENABLE(pygtk,
366         AS_HELP_STRING([--disable-pygtk],[Disable use of GTK in Python]),
367         [case "${enableval}" in
368                 yes) HAVE_PYGTK=yes ;;
369                 no)  HAVE_PYGTK=no ;;
370                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-pygtk) ;;
371         esac],
372         [HAVE_PYGTK=yes])
373     
374     if test "x$HAVE_PYGTK" = "xyes" ; then
375         AM_CHECK_PYMOD(gtk,,,[AC_MSG_ERROR(Could not find Python module gtk)])
376     fi
377
378
379     AC_ARG_ENABLE(python-dbus,
380         AS_HELP_STRING([--disable-python-dbus],[Disable use of D-BUS in Python]),
381         [case "${enableval}" in
382                 yes) HAVE_PYTHON_DBUS=yes ;;
383                 no)  HAVE_PYTHON_DBUS=no ;;
384                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-python-dbus) ;;
385         esac],
386         [HAVE_PYTHON_DBUS=yes])
387     
388     if test "x$HAVE_PYTHON_DBUS" = "xyes"; then
389         AM_CHECK_PYMOD(dbus,,,[AC_MSG_ERROR(Could not find Python module dbus)])
390     fi
391
392     AM_CHECK_PYMOD(socket,,,[AC_MSG_ERROR(Could not find Python module socket)])
393     AM_CHECK_PYMOD(gdbm,,,[AC_MSG_ERROR(Could not find Python module gdbm)])
394 fi
395 AM_CONDITIONAL(HAVE_PYTHON, [test "x$HAVE_PYTHON" = "xyes" ])
396 AM_CONDITIONAL(HAVE_PYGTK, test "x$HAVE_PYGTK" = "xyes")
397 AM_CONDITIONAL(HAVE_PYTHON_DBUS, test "x$HAVE_PYTHON_DBUS" = "xyes")
398
399 #
400 # Check for mono stuff
401 #
402 AC_ARG_ENABLE(mono,
403         AS_HELP_STRING([--disable-mono],[Disable mono bindings]),
404         [case "${enableval}" in
405                 yes) HAVE_MONO=yes ;;
406                 no)  HAVE_MONO=no ;;
407                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-mono) ;;
408         esac],
409         [HAVE_MONO=yes])
410
411 AC_ARG_ENABLE(mono-docs,
412         AS_HELP_STRING([--disable-mono-docs],[Disable documentation for mono bindings]),
413         [case "${enableval}" in
414                 yes) HAVE_MONODOC=yes ;;
415                 no)  HAVE_MONODOC=no ;;
416                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-mono-docs) ;;
417         esac],
418         [HAVE_MONODOC=yes])
419
420 if test "x$HAVE_MONO" = "xyes" ; then
421         AC_PATH_PROG(MCS, mcs)
422         if test "x$MCS" = "x" ; then
423                AC_MSG_ERROR([Can not find "mcs" in your PATH])
424         fi
425
426         AC_PATH_PROG(GACUTIL, gacutil)
427         if test "x$GACUTIL" = "x" ; then
428                 AC_MSG_ERROR([Can not find "gacutil" in your PATH])
429         fi
430
431         AC_SUBST(MCS)
432         AC_SUBST(GACUTIL)
433 fi
434 AM_CONDITIONAL(HAVE_MONO, test "x$HAVE_MONO" = "xyes")
435
436 #
437 # Check for monodoc stuff
438 #
439 if test "x$HAVE_MONODOC" = "xyes" ; then
440         PKG_CHECK_MODULES(MONODOC, [monodoc >= 1.1.8])
441         MONODOC_DIR=`$PKG_CONFIG --variable=sourcesdir monodoc`        
442
443         AC_PATH_PROG(MONODOCER, monodocer)
444         AC_PATH_PROG(MDASSEMBLER, mdassembler)
445
446         AC_SUBST(MONODOC_DIR)
447         AC_SUBST(MONODOCER)
448         AC_SUBST(MDASSEMBLER)
449 fi
450 AM_CONDITIONAL(HAVE_MONODOC, test "x$HAVE_MONODOC" = "xyes")
451
452 #
453 # Defining Avahi User and Group.
454 #
455 AC_ARG_WITH(avahi_user, AS_HELP_STRING([--with-avahi-user=<user>],[User for running the Avahi daemon (avahi)]))
456 if test -z "$with_avahi_user" ; then
457     AVAHI_USER=avahi
458 else
459     AVAHI_USER=$with_avahi_user
460 fi
461 AC_SUBST(AVAHI_USER)
462 AC_DEFINE_UNQUOTED(AVAHI_USER,"$AVAHI_USER", [User for running the Avahi daemon])
463
464 AC_ARG_WITH(avahi_group,AS_HELP_STRING([--with-avahi-group=<group>],[Group for Avahi (avahi)]))
465 if test -z "$with_avahi_group" ; then
466     AVAHI_GROUP=avahi
467 else
468     AVAHI_GROUP=$with_avahi_group
469 fi
470 AC_SUBST(AVAHI_GROUP)
471 AC_DEFINE_UNQUOTED(AVAHI_GROUP,"$AVAHI_GROUP", [Group for Avahi])
472
473 #
474 # Avahi runtime dir
475 #
476 avahi_runtime_dir="${localstatedir}/run"
477 avahi_socket="${avahi_runtime_dir}/avahi-daemon/socket"
478 AC_SUBST(avahi_runtime_dir)
479 AC_SUBST(avahi_socket)
480
481
482 #
483 # Avahi interfaces dir
484 #
485 if test "x$HAVE_PYTHON_DBUS" = "xyes" -o "x$HAVE_GTK" = "xyes"; then
486         interfacesdir="${datadir}/${PACKAGE}/interfaces/"
487         AC_SUBST(interfacesdir)
488 fi
489
490
491 #
492 # Doxygen
493 #
494 DX_HTML_FEATURE(ON)
495 DX_CHM_FEATURE(OFF)
496 DX_CHI_FEATURE(OFF)
497 DX_MAN_FEATURE(OFF)
498 DX_RTF_FEATURE(OFF)
499 DX_XML_FEATURE(OFF)
500 DX_PDF_FEATURE(OFF)
501 DX_PS_FEATURE(OFF)
502 DX_INIT_DOXYGEN(avahi, doxygen.cfg, doxygen)
503
504 #
505 # XMLTOMAN manpage generation
506 #
507 AC_ARG_ENABLE(xmltoman,
508         AS_HELP_STRING([--disable-xmltoman],[Disable rebuilding of man pages with xmltoman]),
509 [case "${enableval}" in
510   yes) xmltoman=yes ;;
511   no)  xmltoman=no ;;
512   *) AC_MSG_ERROR([bad value ${enableval} for --disable-xmltoman]) ;;
513 esac],[xmltoman=yes])
514
515 if test x$xmltoman = xyes ; then
516     AC_CHECK_PROG(have_xmltoman, xmltoman, yes, no)
517  
518     if test x$have_xmltoman = xno ; then
519         if ! test -e man/avahi-daemon.8 ; then
520             AC_MSG_ERROR([*** xmltoman was not found, it is required to build the manpages and they have not been pre-built])
521             exit 1
522         fi
523         AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***])
524         xmltoman=no
525     fi
526 fi
527
528 AM_CONDITIONAL([USE_XMLTOMAN], [test "x$xmltoman" = xyes])
529
530 # ==========================================================================
531 AC_CONFIG_FILES([
532 Makefile 
533 avahi-common/Makefile 
534 avahi-core/Makefile 
535 avahi-glib/Makefile 
536 avahi-qt/Makefile
537 avahi-daemon/Makefile 
538 avahi-daemon/avahi-dbus.conf
539 avahi-discover-standalone/Makefile 
540 avahi-client/Makefile 
541 initscript/Makefile 
542 initscript/debian/Makefile
543 initscript/gentoo/Makefile
544 initscript/archlinux/Makefile
545 initscript/suse/Makefile
546 avahi-dnsconfd/Makefile
547 avahi-utils/Makefile
548 avahi-utils/avahi/Makefile
549 examples/Makefile
550 common/Makefile
551 man/Makefile
552 tests/Makefile
553 service-type-database/Makefile
554 avahi-sharp/Makefile
555 ])
556 AC_OUTPUT
557
558 # ==========================================================================
559 echo "
560  ---{ $PACKAGE_NAME $VERSION }---
561
562     prefix:                 ${prefix}
563     sysconfdir:             ${sysconfdir}
564     localstatedir:          ${localstatedir}
565     avahi socket:           ${avahi_socket}
566     dbus-1 system.d dir:    ${DBUS_SYS_DIR}
567     dbus-1 version:         `pkg-config dbus-1 --modversion`
568     dbus-1 system socket    ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}
569     compiler:               ${CC}
570     cflags:                 ${CFLAGS}
571     Enable GLIB:            ${HAVE_GLIB}
572     Enable GTK:             ${HAVE_GTK}
573     Enable D-BUS:           ${HAVE_DBUS}
574     Enable Expat:           ${HAVE_EXPAT}
575     Enable libdaemon:       ${HAVE_LIBDAEMON}
576     Enable Python:          ${HAVE_PYTHON}
577     Enable pygtk:           ${HAVE_PYGTK}
578     Enable python-dbus:     ${HAVE_PYTHON_DBUS}
579     Enable QT3:             ${HAVE_QT3}
580     Enable QT4:             ${HAVE_QT4}
581     Enable Mono:            ${HAVE_MONO}
582     Linux Distro:           ${with_distro}
583     User for Avahi:         ${AVAHI_USER}
584     Group for Avahi:        ${AVAHI_GROUP}
585 "
586
587 BUILD_DAEMON="no (!)"
588
589 if test "x$HAVE_EXPAT" = "xyes" -a "x$HAVE_LIBDAEMON" = "xyes" ; then
590     BUILD_DAEMON=yes
591 fi
592
593 BUILD_UTILS="no (!)"
594
595 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
596     BUILD_UTILS=yes
597 fi
598
599 BUILD_CLIENT="no (!)"
600
601 if test "x$BUILD_DAEMON" = "xyes" -a "x$HAVE_DBUS" = "xyes" ; then
602     BUILD_CLIENT=yes
603 fi
604
605 echo "
606     Building libavahi-core              yes
607     Building avahi-daemon:              ${BUILD_DAEMON}
608     Building avahi-dnsconfd:            ${BUILD_DAEMON}
609     Building avahi-utils:               ${BUILD_UTILS}
610     Building libavahi-glib:             ${HAVE_GLIB}
611     Building libavahi-client:           ${BUILD_CLIENT}
612     Building avahi-discover-standalone: ${HAVE_GTK}
613     Building libavahi-qt3:              ${HAVE_QT3}
614     Building libavahi-qt4:              ${HAVE_QT4}
615     Building avahi-sharp:               ${HAVE_MONO}
616 "