2 # Process this file with autoconf to produce a configure script.
6 # This file is part of avahi.
8 # avahi is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU Lesser General Public License as
10 # published by the Free Software Foundation; either version 2 of the
11 # License, or (at your option) any later version.
13 # avahi is distributed in the hope that it will be useful, but WITHOUT
14 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
16 # License for more details.
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with avahi; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24 AC_INIT([avahi],[0.4],[avahi (at) lists (dot) freedesktop (dot) org])
25 AC_CONFIG_SRCDIR([avahi-core/server.c])
26 AC_CONFIG_HEADERS([config.h])
27 AM_INIT_AUTOMAKE([foreign 1.9 -Wall])
29 AC_SUBST(PACKAGE_URL, [http://www.freedesktop.org/Software/Avahi])
31 if type -p stow > /dev/null && test -d /usr/local/stow ; then
32 AC_MSG_NOTICE([*** Found /usr/local/stow: default install prefix set to /usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION} ***])
33 ac_default_prefix="/usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION}"
36 # Checks for programs.
44 AC_PROG_GCC_TRADITIONAL
50 # Detecting the linux distribution for specific things like init scripts.
52 AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO],[Specify the Linux distribution to target: One of debian, gentoo, archlinux or none]))
53 if test "z$with_distro" = "z"; then
54 #AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
55 AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
56 AC_CHECK_FILE(/etc/arch-release,with_distro="archlinux")
57 AC_CHECK_FILE(/etc/debian_version,with_distro="debian")
59 with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]' `
61 if test "z$with_distro" = "z"; then
62 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.])
66 debian|gentoo|archlinux|none)
69 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])
74 #AM_CONDITIONAL(TARGET_SUSE, test x"$with_distro" = xsuse)
75 AM_CONDITIONAL(TARGET_GENTOO, test x"$with_distro" = xgentoo)
76 AM_CONDITIONAL(TARGET_DEBIAN, test x"$with_distro" = xdebian)
77 AM_CONDITIONAL(TARGET_ARCHLINUX, test x"$with_distro" = xarchlinux)
80 AC_LANG_CONFTEST([int main() {}])
81 $CC -c conftest.c $CFLAGS $@ > /dev/null 2> /dev/null
87 # If using GCC specify some additional parameters
88 if test "x$GCC" = "xyes" ; then
90 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"
92 # Test whether rtnetlink.h can be included when compiled with -std=c99
93 # some distributions (e.g. archlinux) have broken headers that dont
94 # define __u64 with -std=c99
95 AC_MSG_CHECKING([checking whether rtnetlink.h can be included with -std=c99])
98 AC_TRY_COMPILE([#include <linux/rtnetlink.h>], [],
99 use_stdc99=yes, use_stdc99=no)
101 if test x"$use_stdc99" = xyes; then
102 DESIRED_FLAGS="-std=c99 $DESIRED_FLAGS"
110 for flag in $DESIRED_FLAGS ; do
111 AC_MSG_CHECKING([whether $CC accepts $flag])
112 if test_gcc_flag $flag ; then
113 CFLAGS="$CFLAGS $flag"
121 # Checks for header files.
123 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])
125 # Checks for typedefs, structures, and compiler characteristics.
131 # Checks for library functions.
133 AC_FUNC_SELECT_ARGTYPES
136 AC_CHECK_FUNCS([gethostname memchr memmove memset mkdir select socket strchr strcspn strdup strerror strrchr strspn strstr uname setresuid setreuid strcasecmp gettimeofday putenv strncasecmp])
143 # Check for pkg-config manually first, as if its not installed the
144 # PKG_PROG_PKG_CONFIG macro won't be defined.
145 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
147 if test x"$have_pkg_config" == xno; then
148 AC_MSG_ERROR(pkg-config is required to install this program)
157 AS_HELP_STRING([--disable-glib],[Disable use of GLib]),
158 [case "${enableval}" in
159 yes) HAVE_GLIB=yes ;;
161 *) AC_MSG_ERROR(bad value ${enableval} for --enable-glib) ;;
165 if test "x$HAVE_GLIB" = "xyes" ; then
166 PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ])
167 AC_SUBST(GLIB20_CFLAGS)
168 AC_SUBST(GLIB20_LIBS)
170 AM_CONDITIONAL(HAVE_GLIB, test "x$HAVE_GLIB" = "xyes")
176 AS_HELP_STRING([--disable-qt3],[Disable building of Qt3 mainloop integration]),
177 [case "${enableval}" in
180 *) AC_MSG_ERROR(bad value ${enableval} for --enable-qt3) ;;
184 if test "x$HAVE_QT3" = "xyes" ; then
185 PKG_CHECK_MODULES( QT3, [ qt-mt >= 3.0.0 ])
188 QT3_PREFIX="`$PKG_CONFIG --variable=prefix qt-mt`/bin"
190 AC_CHECK_FILE( "$QT3_PREFIX/moc-qt3", [ MOC_QT3=$QT3_PREFIX/moc-qt3 ], [
191 AC_CHECK_FILE("$QT3_PREFIX/moc", [ MOC_QT3=$QT3_PREFIX/moc ], [
192 AC_MSG_ERROR([Couldn't find QT3 moc])])])
195 AM_CONDITIONAL(HAVE_QT3, test "x$HAVE_QT3" = "xyes")
201 AS_HELP_STRING([--disable-qt4],[Disable building of Qt4Core mainloop integration]),
202 [case "${enableval}" in
205 *) AC_MSG_ERROR(bad value ${enableval} for --enable-qt4) ;;
209 if test "x$HAVE_QT4" = "xyes" ; then
210 PKG_CHECK_MODULES( QT4, [ QtCore >= 4.0.0 ])
213 QT4_PREFIX="`$PKG_CONFIG --variable=prefix QtCore`/bin"
215 AC_CHECK_FILE( "$QT4_PREFIX/moc-qt4", [ MOC_QT4=$QT4_PREFIX/moc-qt4 ], [
216 AC_CHECK_FILE("$QT4_PREFIX/moc", [ MOC_QT4=$QT4_PREFIX/moc ], [
217 AC_MSG_ERROR([Couldn't find QT4 moc])])])
220 AM_CONDITIONAL(HAVE_QT4, test "x$HAVE_QT4" = "xyes")
226 AS_HELP_STRING([--disable-gtk],[Disable use of GTK+]),
227 [case "${enableval}" in
230 *) AC_MSG_ERROR(bad value ${enableval} for --enable-gtk) ;;
234 if test "x$HAVE_GTK" = "xyes" ; then
236 PKG_CHECK_MODULES(GTK20, [ gtk+-2.0 >= 2.4.0 ])
237 AC_SUBST(GTK20_CFLAGS)
240 # Check for GLADE 2.0
241 PKG_CHECK_MODULES(GLADE20, [ libglade-2.0 >= 2.4.0 ])
242 AC_SUBST(GLADE20_CFLAGS)
243 AC_SUBST(GLADE20_LIBS)
245 interfacesdir="${datadir}/${PACKAGE}/interfaces/"
246 AC_SUBST(interfacesdir)
248 AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes")
254 AS_HELP_STRING([--disable-dbus],[Disable use of D-BUS]),
255 [case "${enableval}" in
256 yes) HAVE_DBUS=yes ;;
258 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dbus) ;;
262 AC_ARG_WITH(dbus-sys, AS_HELP_STRING([--with-dbus-sys=<dir>], [where D-BUS system.d directory is]))
263 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]))
265 if test "x$HAVE_DBUS" = "xyes" ; then
266 AC_DEFINE(HAVE_DBUS, 1, [Whether we have D-BUS or not])
268 PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 0.34 ])
269 DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_API_SUBJECT_TO_CHANGE"
270 AC_SUBST(DBUS_CFLAGS)
273 if ! test -z "$with_dbus_sys" ; then
274 DBUS_SYS_DIR="$with_dbus_sys"
276 DBUS_SYS_DIR="${sysconfdir}/dbus-1/system.d"
278 AC_SUBST(DBUS_SYS_DIR)
280 if ! test -z "$with_dbus_system_address" ; then
281 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="$with_dbus_system_address"
283 # Note this default path is hardcoded in D-BUS and should
284 # not use $localstatedir
285 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="unix:path=/var/run/dbus/system_bus_socket"
287 AC_SUBST(DBUS_SYSTEM_BUS_DEFAULT_ADDRESS)
290 AM_CONDITIONAL(HAVE_DBUS, test "x$HAVE_DBUS" = "xyes")
296 AS_HELP_STRING([--disable-expat],[Disable use of Expat]),
297 [case "${enableval}" in
298 yes) HAVE_EXPAT=yes ;;
300 *) AC_MSG_ERROR(bad value ${enableval} for --enable-expat) ;;
304 if test "x$HAVE_EXPAT" = "xyes" ; then
305 AC_CHECK_LIB(expat, XML_ParserCreate, [ AC_CHECK_HEADERS(expat.h, have_expat=true, have_expat=false) ], have_expat=false)
307 if ! $have_expat ; then
308 AC_MSG_ERROR([*** libexpat not found ***])
311 AM_CONDITIONAL(HAVE_EXPAT, test "x$HAVE_EXPAT" = "xyes")
316 AC_ARG_ENABLE(libdaemon,
317 AS_HELP_STRING([--disable-libdaemon],[Disable use of libdaemon]),
318 [case "${enableval}" in
319 yes) HAVE_LIBDAEMON=yes ;;
320 no) HAVE_LIBDAEMON=no ;;
321 *) AC_MSG_ERROR(bad value ${enableval} for --enable-libdaemon) ;;
323 [HAVE_LIBDAEMON=yes])
325 if test "x$HAVE_LIBDAEMON" = "xyes" ; then
326 PKG_CHECK_MODULES(LIBDAEMON, [ libdaemon >= 0.5 ])
327 AC_SUBST(LIBDAEMON_CFLAGS)
328 AC_SUBST(LIBDAEMON_LIBS)
330 AM_CONDITIONAL(HAVE_LIBDAEMON, test "x$HAVE_LIBDAEMON" = "xyes")
335 AC_ARG_ENABLE(python,
336 AS_HELP_STRING([--disable-python], [Disable scripts that depends on python]),
337 [case "${enableval}" in
338 yes) HAVE_PYTHON=yes ;;
339 no) HAVE_PYTHON=no ;;
340 *) AC_MSG_ERROR([bad value ${enableval} for --enable-python]) ;;
341 esac],[HAVE_PYTHON=yes])
346 if test "x$HAVE_PYTHON" = "xyes" ; then
347 AM_PATH_PYTHON([2.4])
350 AS_HELP_STRING([--disable-pygtk],[Disable use of GTK in Python]),
351 [case "${enableval}" in
352 yes) HAVE_PYGTK=yes ;;
354 *) AC_MSG_ERROR(bad value ${enableval} for --enable-pygtk) ;;
358 if test "x$HAVE_PYGTK" = "xyes" ; then
359 AM_CHECK_PYMOD(gtk,,,[AC_MSG_ERROR(Could not find Python module gtk)])
363 AC_ARG_ENABLE(python-dbus,
364 AS_HELP_STRING([--disable-python-dbus],[Disable use of D-BUS in Python]),
365 [case "${enableval}" in
366 yes) HAVE_PYTHON_DBUS=yes ;;
367 no) HAVE_PYTHON_DBUS=no ;;
368 *) AC_MSG_ERROR(bad value ${enableval} for --enable-python-dbus) ;;
370 [HAVE_PYTHON_DBUS=yes])
372 if test "x$HAVE_PYTHON_DBUS" = "xyes"; then
373 AM_CHECK_PYMOD(dbus,,,[AC_MSG_ERROR(Could not find Python module dbus)])
376 AM_CHECK_PYMOD(socket,,,[AC_MSG_ERROR(Could not find Python module socket)])
377 AM_CHECK_PYMOD(dbm,,,[AC_MSG_ERROR(Could not find Python module dbm)])
378 AM_CHECK_PYMOD(anydbm,,,[AC_MSG_ERROR(Could not find Python module anydbm)])
380 AM_CONDITIONAL(HAVE_PYTHON, [test "x$HAVE_PYTHON" = "xyes" ])
381 AM_CONDITIONAL(HAVE_PYGTK, test "x$HAVE_PYGTK" = "xyes")
382 AM_CONDITIONAL(HAVE_PYTHON_DBUS, test "x$HAVE_PYTHON_DBUS" = "xyes")
385 # Defining Avahi User and Group.
387 AC_ARG_WITH(avahi_user, AS_HELP_STRING([--with-avahi-user=<user>],[User for running the Avahi daemon (avahi)]))
388 if test -z "$with_avahi_user" ; then
391 AVAHI_USER=$with_avahi_user
394 AC_DEFINE_UNQUOTED(AVAHI_USER,"$AVAHI_USER", [User for running the Avahi daemon])
396 AC_ARG_WITH(avahi_group,AS_HELP_STRING([--with-avahi-group=<group>],[Group for Avahi (avahi)]))
397 if test -z "$with_avahi_group" ; then
400 AVAHI_GROUP=$with_avahi_group
402 AC_SUBST(AVAHI_GROUP)
403 AC_DEFINE_UNQUOTED(AVAHI_GROUP,"$AVAHI_GROUP", [Group for Avahi])
408 avahi_runtime_dir="${localstatedir}/run"
409 avahi_socket="${avahi_runtime_dir}/avahi-daemon/socket"
410 AC_SUBST(avahi_runtime_dir)
411 AC_SUBST(avahi_socket)
425 DX_INIT_DOXYGEN(avahi, doxygen.cfg, doxygen)
428 # XMLTOMAN manpage generation
430 AC_ARG_ENABLE(xmltoman,
431 AS_HELP_STRING([--disable-xmltoman],[Disable rebuilding of man pages with xmltoman]),
432 [case "${enableval}" in
435 *) AC_MSG_ERROR([bad value ${enableval} for --disable-xmltoman]) ;;
436 esac],[xmltoman=yes])
438 if test x$xmltoman = xyes ; then
439 AC_CHECK_PROG(have_xmltoman, xmltoman, yes, no)
441 if test x$have_xmltoman = xno ; then
442 if ! test -e man/avahi-daemon.8 ; then
443 AC_MSG_ERROR([*** xmltoman was not found, it is required to build the manpages and they have not been pre-built])
446 AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***])
451 AM_CONDITIONAL([USE_XMLTOMAN], [test "x$xmltoman" = xyes])
453 # ==========================================================================
456 avahi-common/Makefile
460 avahi-daemon/Makefile
461 avahi-daemon/avahi-dbus.conf
462 avahi-discover-standalone/Makefile
463 avahi-client/Makefile
465 initscript/debian/Makefile
466 initscript/gentoo/Makefile
467 initscript/archlinux/Makefile
468 avahi-dnsconfd/Makefile
470 avahi-utils/avahi/Makefile
475 service-type-database/Makefile
479 # ==========================================================================
481 ---{ $PACKAGE_NAME $VERSION }---
484 sysconfdir: ${sysconfdir}
485 dbus-1 system.d dir: ${DBUS_SYS_DIR}
486 dbus-1 version: `pkg-config dbus-1 --modversion`
487 dbus-1 system socket ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}
490 Enable GLIB: ${HAVE_GLIB}
491 Enable GTK: ${HAVE_GTK}
492 Enable D-BUS: ${HAVE_DBUS}
493 Enable Expat: ${HAVE_EXPAT}
494 Enable libdaemon: ${HAVE_LIBDAEMON}
495 Enable Python: ${HAVE_PYTHON}
496 Enable pygtk: ${HAVE_PYGTK}
497 Enable python-dbus: ${HAVE_PYTHON_DBUS}
498 Enable QT3: ${HAVE_QT3}
499 Enable QT4: ${HAVE_QT4}
500 Linux Distro: ${with_distro}
501 User for Avahi: ${AVAHI_USER}
502 Group for Avahi: ${AVAHI_GROUP}
505 BUILD_DAEMON="no (!)"
507 if test "x$HAVE_EXPAT" = "xyes" -a "x$HAVE_LIBDAEMON" = "xyes" ; then
513 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
517 BUILD_CLIENT="no (!)"
519 if test "x$BUILD_DAEMON" = "xyes" -a "x$HAVE_DBUS" = "xyes" ; then
524 Building libavahi-core yes
525 Building avahi-daemon: ${BUILD_DAEMON}
526 Building avahi-dnsconfd: ${BUILD_DAEMON}
527 Building avahi-utils: ${BUILD_UTILS}
528 Building libavahi-glib: ${HAVE_GLIB}
529 Building libavahi-client: ${BUILD_CLIENT}
530 Building avahi-discover-standalone: ${HAVE_GTK}
531 Building libavahi-qt3: ${HAVE_QT3}
532 Building libavahi-qt4: ${HAVE_QT4}