2 # Process this file with autoconf to produce a configure script.
6 # This file is part of PulseAudio.
8 # Copyright 2004-2006 Lennart Poettering
9 # Copyright 2006-2007 Pierre Ossman <ossman@cendio.se> for Cendio AB
11 # PulseAudio is free software; you can redistribute it and/or modify it
12 # under the terms of the GNU Lesser General Public License as published by
13 # the Free Software Foundation; either version 2 of the License, or
14 # (at your option) any later version.
16 # PulseAudio is distributed in the hope that it will be useful, but
17 # WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # General Public License for more details.
21 # You should have received a copy of the GNU Lesser General Public License
22 # along with PulseAudio; if not, write to the Free Software Foundation,
23 # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
27 m4_define(PA_MAJOR, [0])
28 m4_define(PA_MINOR, [9])
29 m4_define(PA_MICRO, [8])
31 AC_INIT([pulseaudio], PA_MAJOR.PA_MINOR.PA_MICRO,[mzchyfrnhqvb (at) 0pointer (dot) net])
32 AC_CONFIG_SRCDIR([src/daemon/main.c])
33 AC_CONFIG_HEADERS([config.h])
34 AM_INIT_AUTOMAKE([foreign -Wall])
36 AC_SUBST(PA_MAJORMINOR, "PA_MAJOR.PA_MINOR")
37 AC_SUBST(PACKAGE_URL, [http://pulseaudio.org/])
39 AC_SUBST(PA_API_VERSION, 11)
40 AC_SUBST(PA_PROTOCOL_VERSION, 12)
42 # The stable ABI for client applications, for the version info x:y:z
43 # always will hold y=z
44 AC_SUBST(LIBPULSE_VERSION_INFO, [4:0:4])
46 # A simplified, synchronous, ABI-stable interface for client
47 # applications, for the version info x:y:z always will hold y=z
48 AC_SUBST(LIBPULSE_SIMPLE_VERSION_INFO, [0:1:0])
50 # The ABI-stable network browsing interface for client applications,
51 # for the version info x:y:z always will hold y=z
52 AC_SUBST(LIBPULSE_BROWSE_VERSION_INFO, [1:1:1])
54 # The ABI-stable GLib adapter for client applications, for the version
55 # info x:y:z always will hold y=z
56 AC_SUBST(LIBPULSE_MAINLOOP_GLIB_VERSION_INFO, [0:3:0])
58 # An internally used, ABI-unstable library that contains the
59 # PulseAudio core, SONAMEs are bumped on every release, version info
60 # suffix will always be 0:0
61 AC_SUBST(LIBPULSECORE_VERSION_INFO, [5:0:0])
65 if type -p stow > /dev/null && test -d /usr/local/stow ; then
66 AC_MSG_NOTICE([*** Found /usr/local/stow: default install prefix set to /usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION} ***])
67 ac_default_prefix="/usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION}"
70 #### Platform hacks ####
74 AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
75 AC_DEFINE(_XOPEN_SOURCE, 2, Needed to get declarations for msg_control and msg_controllen on Solaris)
76 AC_DEFINE(__EXTENSIONS__, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
80 #### Checks for programs. ####
90 AC_PROG_GCC_TRADITIONAL
95 AC_PATH_PROG([M4], [m4 gm4], [no])
96 if test "x$M4" = xno ; then
97 AC_MSG_ERROR([m4 missing])
103 AC_LANG_CONFTEST([int main(int argc, char*argv[]) {}])
104 $CC -c conftest.c $CFLAGS -o conftest.o > /dev/null 2> /dev/null
110 # If using GCC specify some additional parameters
111 if test "x$GCC" = "xyes" ; then
113 # We use gnu99 instead of c99 because many have interpreted the standard
114 # in a way that int64_t isn't defined on non-64 bit platforms.
115 DESIRED_FLAGS="-std=gnu99 -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 -Wcast-align -Wwrite-strings -Winline -Wno-unused-parameter -ffast-math"
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"
128 AC_MSG_CHECKING([whether $CC knows __sync_bool_compare_and_swap()])
129 AC_LANG_CONFTEST([int main() { int a = 4; __sync_bool_compare_and_swap(&a, 4, 5); }])
130 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
132 rm -f conftest.o conftest
133 if test $ret -eq 0 ; then
134 AC_DEFINE([HAVE_ATOMIC_BUILTINS], 1, [Have __sync_bool_compare_and_swap() and friends.])
140 AC_MSG_CHECKING([whether $CC knows __thread])
141 AC_LANG_CONFTEST([static __thread int a = 6; int main() { a = 5; }])
142 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
144 rm -f conftest.o conftest
145 if test $ret -eq 0 ; then
146 AC_DEFINE([HAVE_TLS_BUILTIN], 1, [Have __thread().])
152 AC_MSG_CHECKING([whether $CC knows _Bool])
153 AC_LANG_CONFTEST([int main() { _Bool b; }])
154 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
156 rm -f conftest.o conftest
157 if test $ret -eq 0 ; then
158 AC_DEFINE([HAVE_STD_BOOL], 1, [Have _Bool.])
164 #### libtool stuff ####
166 AC_LTDL_ENABLE_INSTALL
167 AC_LIBLTDL_INSTALLABLE
173 AC_CONFIG_SUBDIRS(libltdl)
175 if test "x$enable_ltdl_install" = "xno" && test "x$ac_cv_lib_ltdl_lt_dlinit" = "xno" ; then
178 *** Cannot find the libltdl development files.
179 *** Maybe you need to install the libltdl-dev package.
183 #### Determine build environment ####
189 AC_DEFINE([OS_IS_WIN32], 1, [Build target is Windows.])
194 AM_CONDITIONAL(OS_IS_WIN32, test "x$os_is_win32" = "x1")
196 ###################################
197 # Basic environment checks #
198 ###################################
200 #### Checks for header files. ####
206 AC_CHECK_HEADERS([arpa/inet.h glob.h grp.h netdb.h netinet/in.h \
207 netinet/in_systm.h netinet/tcp.h poll.h pwd.h sched.h \
208 sys/mman.h sys/resource.h sys/select.h sys/socket.h sys/wait.h \
209 syslog.h sys/dl.h dlfcn.h linux/sockios.h])
210 AC_CHECK_HEADERS([netinet/ip.h], [], [],
211 [#include <sys/types.h>
212 #if HAVE_NETINET_IN_H
213 # include <netinet/in.h>
215 #if HAVE_NETINET_IN_SYSTM_H
216 # include <netinet/in_systm.h>
219 AC_CHECK_HEADERS([regex.h], [HAVE_REGEX=1], [HAVE_REGEX=0])
220 AC_CHECK_HEADERS([sys/un.h], [HAVE_AF_UNIX=1], [HAVE_AF_UNIX=0])
222 AM_CONDITIONAL(HAVE_REGEX, test "x$HAVE_REGEX" = "x1")
223 AM_CONDITIONAL(HAVE_AF_UNIX, test "x$HAVE_AF_UNIX" = "x1")
226 AC_CHECK_HEADERS([linux/input.h], [HAVE_EVDEV=1], [HAVE_EVDEV=0])
228 AM_CONDITIONAL([HAVE_EVDEV], [test "x$HAVE_EVDEV" = "x1"])
230 AC_CHECK_HEADERS([sys/prctl.h])
233 AC_CHECK_HEADERS([sys/filio.h])
236 AC_CHECK_HEADERS([windows.h winsock2.h ws2tcpip.h])
239 AC_CHECK_HEADERS([sys/ioctl.h])
240 AC_CHECK_HEADERS([byteswap.h])
241 AC_CHECK_HEADERS([sys/syscall.h])
243 #### Typdefs, structures, etc. ####
249 AC_CHECK_TYPES(ssize_t, , [AC_DEFINE([ssize_t], [signed long],
250 [Define ssize_t if it is not done by the standard libs.])])
255 AC_CHECK_DEFINE([SIGXCPU], [signal.h], [
257 AC_DEFINE([HAVE_SIGXCPU], 1, [Have SIGXCPU?])
259 AM_CONDITIONAL(HAVE_SIGXCPU, test "x$HAVE_SIGXCPU" = "x1")
262 AC_CHECK_DEFINE([INADDR_NONE], [netinet/in.h], [],
263 [AC_CHECK_DEFINE([INADDR_NONE], [winsock2.h], [],
264 [AC_DEFINE([INADDR_NONE], [0xffffffff], [Define INADDR_NONE if not found in <netinet/in.h>])])])
266 #### POSIX threads ####
270 #### Check for libs ####
273 AC_SEARCH_LIBS([pow], [m])
276 AC_SEARCH_LIBS([sched_setscheduler], [rt])
277 AC_SEARCH_LIBS([dlopen], [dl])
278 AC_SEARCH_LIBS([shm_open], [rt])
279 AC_SEARCH_LIBS([inet_ntop], [nsl])
280 AC_SEARCH_LIBS([timer_create], [rt])
283 AC_SEARCH_LIBS([connect], [socket])
287 # This magic is needed so we do not needlessly add static libs to the win32
288 # build, disabling its ability to make dlls.
289 AC_CHECK_FUNCS([getopt_long], [], [AC_CHECK_LIB([iberty], [getopt_long])])
291 #### Check for functions ####
294 AC_CHECK_FUNCS([lrintf strtof])
299 AC_FUNC_SELECT_ARGTYPES
300 AC_CHECK_FUNCS([chmod chown clock_gettime getaddrinfo getgrgid_r \
301 getpwuid_r gettimeofday getuid inet_ntop inet_pton mlock nanosleep \
302 pipe posix_fadvise posix_madvise posix_memalign setpgid setsid shm_open \
303 sigaction sleep sysconf])
304 AC_CHECK_FUNCS([mkfifo], [HAVE_MKFIFO=1], [HAVE_MKFIFO=0])
306 AM_CONDITIONAL(HAVE_MKFIFO, test "x$HAVE_MKFIFO" = "x1")
309 AC_CHECK_FUNCS([readlink])
312 AC_CHECK_FUNCS([ctime_r usleep])
315 AC_CHECK_FUNCS([strerror_r])
318 AC_CHECK_FUNCS([lstat])
322 AC_CHECK_FUNCS([setresuid setresgid setreuid setregid seteuid setegid ppoll strsignal sig2str strtof_l])
324 AC_MSG_CHECKING([for PTHREAD_PRIO_INHERIT])
325 AC_LANG_CONFTEST([AC_LANG_SOURCE([[
327 int main() { int i = PTHREAD_PRIO_INHERIT; }]])])
328 $PTHREAD_CC conftest.c $PTHREAD_CFLAGS $CFLAGS $PTHREAD_LIBS -o conftest > /dev/null 2> /dev/null
330 rm -f conftest.o conftest
332 if test $ret -eq 0 ; then
333 AC_DEFINE([HAVE_PTHREAD_PRIO_INHERIT], 1, [Have PTHREAD_PRIO_INHERIT.])
339 #### Large File-Support (LFS) ####
343 # Check for open64 to know if the current system does have open64() and similar functions
344 AC_CHECK_FUNCS([open64])
350 ###################################
351 # External libraries #
352 ###################################
354 #### X11 (optional) ####
358 # The macro tests the host, not the build target
359 if test "x$os_is_win32" != "x1" ; then
361 test "x$no_x" != "xyes" && HAVE_X11=1
365 AM_CONDITIONAL(HAVE_X11, test "x$HAVE_X11" = "x1")
366 if test "x$HAVE_X11" = "x1" ; then
367 AC_DEFINE([HAVE_X11], 1, [Have X11])
370 #### Capabilities (optional) ####
376 AC_HELP_STRING([--without-caps],[Omit support for POSIX capabilities.]))
378 if test "x${with_caps}" != "xno"; then
379 AC_SEARCH_LIBS([cap_init], [cap], [], [
380 if test "x${with_caps}" = "xyes" ; then
381 AC_MSG_ERROR([*** POSIX caps libraries not found])
383 AC_CHECK_HEADERS([sys/capability.h], [], [
384 if test "x${with_caps}" = "xyes" ; then
385 AC_MSG_ERROR([*** POSIX caps headers not found])
391 # Check for pkg-config manually first, as if its not installed the
392 # PKG_PROG_PKG_CONFIG macro won't be defined.
393 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
395 if test x"$have_pkg_config" = "xno"; then
396 AC_MSG_ERROR(pkg-config is required to install this program)
403 PKG_CHECK_MODULES(LIBSNDFILE, [ sndfile >= 1.0.10 ])
404 AC_SUBST(LIBSNDFILE_CFLAGS)
405 AC_SUBST(LIBSNDFILE_LIBS)
409 AC_CHECK_HEADERS([atomic_ops.h], [], [
410 AC_MSG_ERROR([*** libatomic-ops headers not found])
413 # Win32 does not need the lib and breaks horribly if we try to include it
414 if test "x$os_is_win32" != "x1" ; then
415 LIBS="$LIBS -latomic_ops"
418 #### Libsamplerate support (optional) ####
420 AC_ARG_ENABLE([samplerate],
421 AC_HELP_STRING([--disable-samplerate], [Disable optional libsamplerate support]),
423 case "${enableval}" in
424 yes) samplerate=yes ;;
426 *) AC_MSG_ERROR(bad value ${enableval} for --disable-samplerate) ;;
431 if test "x${samplerate}" != xno ; then
432 PKG_CHECK_MODULES(LIBSAMPLERATE, [ samplerate >= 0.1.0 ],
433 HAVE_LIBSAMPLERATE=1,
436 if test "x$samplerate" = xyes ; then
437 AC_MSG_ERROR([*** Libsamplerate not found])
444 if test "x${HAVE_LIBSAMPLERATE}" = x1 ; then
445 AC_DEFINE([HAVE_LIBSAMPLERATE], 1, [Have libsamplerate?])
448 AC_SUBST(LIBSAMPLERATE_CFLAGS)
449 AC_SUBST(LIBSAMPLERATE_LIBS)
450 AC_SUBST(HAVE_LIBSAMPLERATE)
451 AM_CONDITIONAL([HAVE_LIBSAMPLERATE], [test "x$HAVE_LIBSAMPLERATE" = x1])
453 #### OSS support (optional) ####
456 AC_HELP_STRING([--disable-oss], [Disable optional OSS support]),
458 case "${enableval}" in
461 *) AC_MSG_ERROR(bad value ${enableval} for --disable-oss) ;;
466 if test "x${oss}" != xno ; then
467 AC_CHECK_HEADERS([sys/soundcard.h],
470 AC_DEFINE([HAVE_OSS], 1, [Have OSS?])
474 if test "x$oss" = xyes ; then
475 AC_MSG_ERROR([*** OSS support not found])
483 AM_CONDITIONAL([HAVE_OSS], [test "x$HAVE_OSS" = x1])
486 #### ALSA support (optional) ####
488 AC_ARG_ENABLE([alsa],
489 AC_HELP_STRING([--disable-alsa], [Disable optional ALSA support]),
491 case "${enableval}" in
494 *) AC_MSG_ERROR(bad value ${enableval} for --disable-alsa) ;;
499 if test "x${alsa}" != xno ; then
500 PKG_CHECK_MODULES(ASOUNDLIB, [ alsa >= 1.0.0 ],
503 AC_DEFINE([HAVE_ALSA], 1, [Have ALSA?])
507 if test "x$alsa" = xyes ; then
508 AC_MSG_ERROR([*** ALSA support not found])
515 AC_SUBST(ASOUNDLIB_CFLAGS)
516 AC_SUBST(ASOUNDLIB_LIBS)
518 AM_CONDITIONAL([HAVE_ALSA], [test "x$HAVE_ALSA" = x1])
520 #### Solaris audio support (optional) ####
522 AC_ARG_ENABLE([solaris],
523 AC_HELP_STRING([--disable-solaris], [Disable optional Solaris audio support]),
525 case "${enableval}" in
528 *) AC_MSG_ERROR(bad value ${enableval} for --disable-solaris) ;;
533 if test "x${solaris}" != xno ; then
534 AC_CHECK_HEADERS([sys/audio.h],
537 AC_DEFINE([HAVE_SOLARIS], 1, [Have Solaris audio?])
541 if test "x$solaris" = xyes ; then
542 AC_MSG_ERROR([*** Solaris audio support not found])
549 AC_SUBST(HAVE_SOLARIS)
550 AM_CONDITIONAL([HAVE_SOLARIS], [test "x$HAVE_SOLARIS" = x1])
552 #### GLib 2 support (optional) ####
554 AC_ARG_ENABLE([glib2],
555 AC_HELP_STRING([--disable-glib2], [Disable optional GLib 2 support]),
557 case "${enableval}" in
560 *) AC_MSG_ERROR(bad value ${enableval} for --disable-glib2) ;;
565 if test "x${glib2}" != xno ; then
566 PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ],
570 if test "x$glib2" = xyes ; then
571 AC_MSG_ERROR([*** GLib 2 support not found])
578 AC_SUBST(GLIB20_CFLAGS)
579 AC_SUBST(GLIB20_LIBS)
580 AC_SUBST(HAVE_GLIB20)
581 AM_CONDITIONAL([HAVE_GLIB20], [test "x$HAVE_GLIB20" = x1])
583 #### GConf support (optional) ####
585 AC_ARG_ENABLE([gconf],
586 AC_HELP_STRING([--disable-gconf], [Disable optional GConf support]),
588 case "${enableval}" in
591 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gconf) ;;
596 if test "x${gconf}" != xno ; then
597 PKG_CHECK_MODULES(GCONF, [ gconf-2.0 >= 2.4.0 ],
601 if test "x$gconf" = xyes ; then
602 AC_MSG_ERROR([*** GConf support not found])
609 AC_SUBST(GCONF_CFLAGS)
612 AM_CONDITIONAL([HAVE_GCONF], [test "x$HAVE_GCONF" = x1])
614 #### Avahi support (optional) ####
616 AC_ARG_ENABLE([avahi],
617 AC_HELP_STRING([--disable-avahi], [Disable optional Avahi support]),
619 case "${enableval}" in
622 *) AC_MSG_ERROR(bad value ${enableval} for --disable-avahi) ;;
627 if test "x${avahi}" != xno ; then
628 PKG_CHECK_MODULES(AVAHI, [ avahi-client >= 0.6.0 ],
632 if test "x$avahi" = xyes ; then
633 AC_MSG_ERROR([*** Avahi support not found])
640 AC_SUBST(AVAHI_CFLAGS)
643 AM_CONDITIONAL([HAVE_AVAHI], [test "x$HAVE_AVAHI" = x1])
647 PKG_CHECK_MODULES(LIBOIL, [ liboil-0.3 >= 0.3.0 ])
648 AC_SUBST(LIBOIL_CFLAGS)
649 AC_SUBST(LIBOIL_LIBS)
651 ### JACK (optional) ####
653 AC_ARG_ENABLE([jack],
654 AC_HELP_STRING([--disable-jack], [Disable optional JACK support]),
656 case "${enableval}" in
659 *) AC_MSG_ERROR(bad value ${enableval} for --disable-jack) ;;
664 if test "x${jack}" != xno ; then
665 PKG_CHECK_MODULES(JACK, [ jack >= 0.100 ],
669 if test "x$jack" = xyes ; then
670 AC_MSG_ERROR([*** JACK support not found])
677 AC_SUBST(JACK_CFLAGS)
680 AM_CONDITIONAL([HAVE_JACK], [test "x$HAVE_JACK" = x1])
682 #### Async DNS support (optional) ####
684 AC_ARG_ENABLE([asyncns],
685 AC_HELP_STRING([--disable-asyncns], [Disable optional Async DNS support]),
687 case "${enableval}" in
690 *) AC_MSG_ERROR(bad value ${enableval} for --disable-asyncns) ;;
695 if test "x${asyncns}" != xno ; then
696 PKG_CHECK_MODULES(LIBASYNCNS, [ libasyncns >= 0.1 ],
700 if test "x$asyncns" = xyes ; then
701 AC_MSG_ERROR([*** Async DNS support not found])
708 AC_SUBST(LIBASYNCNS_CFLAGS)
709 AC_SUBST(LIBASYNCNS_LIBS)
710 AC_SUBST(HAVE_LIBASYNCNS)
711 AM_CONDITIONAL([HAVE_LIBASYNCNS], [test "x$HAVE_LIBASYNCNS" = x1])
713 if test "x$HAVE_LIBASYNCNS" != "x0" ; then
714 AC_DEFINE([HAVE_LIBASYNCNS], 1, [Have libasyncns?])
717 #### TCP wrappers (optional) ####
719 AC_ARG_ENABLE([tcpwrap],
720 AC_HELP_STRING([--disable-tcpwrap], [Disable optional TCP wrappers support]),
722 case "${enableval}" in
725 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
730 if test "x${tcpwrap}" != xno ; then
732 if test "x${LIBWRAP_LIBS}" = x && test "x$tcpwrap" = xyes ; then
733 AC_MSG_ERROR([*** TCP wrappers support not found])
739 AC_SUBST(LIBWRAP_LIBS)
741 #### LIRC support (optional) ####
743 AC_ARG_ENABLE([lirc],
744 AC_HELP_STRING([--disable-lirc], [Disable optional LIRC support]),
746 case "${enableval}" in
749 *) AC_MSG_ERROR(bad value ${enableval} for --disable-lirc) ;;
754 if test "x${lirc}" != xno ; then
756 if test "x${HAVE_LIRC}" = x0 && test "x$lirc" = xyes ; then
757 AC_MSG_ERROR([*** LIRC support not found])
763 AC_SUBST(LIRC_CFLAGS)
765 AM_CONDITIONAL([HAVE_LIRC], [test "x$HAVE_LIRC" = x1])
767 #### HAL support (optional) ####
770 AC_HELP_STRING([--disable-hal], [Disable optional HAL support]),
772 case "${enableval}" in
775 *) AC_MSG_ERROR(bad value ${enableval} for --disable-hal) ;;
779 if test "x${hal}" != xno -a \( "x$HAVE_OSS" = "x1" -o "x$HAVE_ALSA" = "x1" \) ; then
780 PKG_CHECK_MODULES(HAL, [ hal >= 0.5.7 ],
784 if test "x$hal" = xyes ; then
785 AC_MSG_ERROR([*** HAL support not found])
795 AM_CONDITIONAL([HAVE_HAL], [test "x$HAVE_HAL" = x1])
797 #### BlueZ support (optional) ####
799 AC_ARG_ENABLE([bluez],
800 AC_HELP_STRING([--disable-bluez], [Disable optional BlueZ support]),
802 case "${enableval}" in
805 *) AC_MSG_ERROR(bad value ${enableval} for --disable-bluez) ;;
809 if test "x${bluez}" != xno ; then
810 PKG_CHECK_MODULES(BLUEZ, [ bluez >= 3.0 ],
814 if test "x$bluez" = xyes ; then
815 AC_MSG_ERROR([*** BLUEZ support not found])
822 AC_SUBST(BLUEZ_CFLAGS)
825 AM_CONDITIONAL([HAVE_BLUEZ], [test "x$HAVE_BLUEZ" = x1])
827 #### D-Bus support (optional) ####
829 AC_ARG_ENABLE([dbus],
830 AC_HELP_STRING([--disable-dbus], [Disable optional D-Bus support]),
832 case "${enableval}" in
835 *) AC_MSG_ERROR(bad value ${enableval} for --disable-dbus) ;;
840 if test "x$HAVE_HAL" = x1 ; then
844 if test "x${dbus}" != xno || test "x${bluez}" != xno || "x${hal}" != xno ; then
846 PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 1.0.0 ],
850 LIBS="$LIBS $DBUS_LIBS"
851 AC_CHECK_FUNCS(dbus_watch_get_unix_fd)
853 AC_DEFINE([HAVE_DBUS], 1, [Have D-Bus.])
857 if test "x$dbus" = xyes ; then
858 AC_MSG_ERROR([*** D-Bus support not found])
865 AC_SUBST(DBUS_CFLAGS)
868 AM_CONDITIONAL([HAVE_DBUS], [test "x$HAVE_DBUS" = x1])
870 #### PolicyKit support (optional) ####
872 AC_ARG_ENABLE([polkit],
873 AC_HELP_STRING([--disable-polkit], [Disable optional PolicyKit support]),
875 case "${enableval}" in
878 *) AC_MSG_ERROR(bad value ${enableval} for --disable-polkit) ;;
883 if test "x${polkit}" != xno ; then
885 PKG_CHECK_MODULES(POLKIT, [ polkit-dbus ],
889 LIBS="$LIBS $POLKIT_LIBS"
890 AC_CHECK_FUNCS(polkit_context_is_caller_authorized)
892 AC_DEFINE([HAVE_POLKIT], 1, [Have PolicyKit])
893 policydir=`pkg-config polkit-dbus --variable prefix`/share/PolicyKit/policy/
898 if test "x$polkit" = xyes ; then
899 AC_MSG_ERROR([*** PolicyKit support not found])
906 AC_SUBST(POLKIT_CFLAGS)
907 AC_SUBST(POLKIT_LIBS)
908 AC_SUBST(HAVE_POLKIT)
909 AM_CONDITIONAL([HAVE_POLKIT], [test "x$HAVE_POLKIT" = x1])
911 ### Build and Install man pages ###
912 AC_ARG_ENABLE(manpages,
913 AS_HELP_STRING([--disable-manpages],[Disable building and installation of man pages]),
914 [case "${enableval}" in
917 *) AC_MSG_ERROR([bad value ${enableval} for --disable-manpages]) ;;
918 esac],[manpages=yes])
920 if test x$manpages = xyes ; then
922 # XMLTOMAN manpage generation
924 AC_ARG_ENABLE(xmltoman,
925 AS_HELP_STRING([--disable-xmltoman],[Enable rebuilding of man pages with xmltoman]),
926 [case "${enableval}" in
929 *) AC_MSG_ERROR([bad value ${enableval} for --disable-xmltoman]) ;;
930 esac],[xmltoman=yes])
932 if test x$xmltoman = xyes ; then
933 AC_CHECK_PROG(have_xmltoman, xmltoman, yes, no)
936 if test x$have_xmltoman = xno -o x$xmltoman = xno; then
937 if ! test -e man/pulseaudio.1 ; then
938 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])
941 AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***])
945 AM_CONDITIONAL([USE_XMLTOMAN], [test "x$xmltoman" = xyes])
946 AM_CONDITIONAL([BUILD_MANPAGES], [test "x$manpages" = xyes])
948 #### PulseAudio system group & user #####
950 AC_ARG_WITH(system_user, AS_HELP_STRING([--with-system-user=<user>],[User for running the PulseAudio daemon as a system-wide instance (pulse)]))
951 if test -z "$with_system_user" ; then
954 PA_SYSTEM_USER=$with_system_user
956 AC_SUBST(PA_SYSTEM_USER)
957 AC_DEFINE_UNQUOTED(PA_SYSTEM_USER,"$PA_SYSTEM_USER", [User for running the PulseAudio system daemon])
959 AC_ARG_WITH(system_group,AS_HELP_STRING([--with-system-group=<group>],[Group for running the PulseAudio daemon as a system-wide instance (pulse)]))
960 if test -z "$with_system_group" ; then
961 PA_SYSTEM_GROUP=pulse
963 PA_SYSTEM_GROUP=$with_system_group
965 AC_SUBST(PA_SYSTEM_GROUP)
966 AC_DEFINE_UNQUOTED(PA_SYSTEM_GROUP,"$PA_SYSTEM_GROUP", [Group for the PulseAudio system daemon])
968 AC_ARG_WITH(realtime_group,AS_HELP_STRING([--with-realtime-group=<group>],[Group for users that are allowed to start the PulseAudio daemon with realtime scheduling (realtime)]))
969 if test -z "$with_realtime_group" ; then
970 PA_REALTIME_GROUP=pulse-rt
972 PA_REALTIME_GROUP=$with_realtime_group
974 AC_SUBST(PA_REALTIME_GROUP)
975 AC_DEFINE_UNQUOTED(PA_REALTIME_GROUP,"$PA_REALTIME_GROUP", [Realtime group])
977 AC_ARG_WITH(access_group,AS_HELP_STRING([--with-access-group=<group>],[Group which is allowed access to a system-wide PulseAudio daemon (pulse-access)]))
978 if test -z "$with_access_group" ; then
979 PA_ACCESS_GROUP=pulse-access
981 PA_ACCESS_GROUP=$with_access_group
983 AC_SUBST(PA_ACCESS_GROUP)
984 AC_DEFINE_UNQUOTED(PA_ACCESS_GROUP,"$PA_ACCESS_GROUP", [Access group])
986 AC_ARG_WITH(peruser_esound, AS_HELP_STRING([--with-peruser-esound-socket], [Use per-user esound socket directory, like /tmp/.esd-UID/socket.]))
988 if test "x$with_peruser_esound" = "xyes"; then
989 AC_DEFINE([USE_PERUSER_ESOUND_SOCKET], [1], [Define this if you want per-user esound socket directories])
992 #### PulseAudio system runtime dir ####
993 PA_SYSTEM_RUNTIME_PATH="${localstatedir}/run/pulse"
994 AC_SUBST(PA_SYSTEM_RUNTIME_PATH)
996 ###################################
998 ###################################
1002 AC_HELP_STRING([--enable-static-bins],[Statically link executables.]),
1003 [STATIC_BINS=1], [STATIC_BINS=0])
1004 AM_CONDITIONAL([STATIC_BINS], [test "x$STATIC_BINS" = "x1"])
1008 AC_HELP_STRING([--with-preopen-mods],[Modules to preopen in daemon (default: all).]),
1009 [PREOPEN_MODS=$withval], [PREOPEN_MODS="all"])
1010 AM_CONDITIONAL([PREOPEN_MODS], [test "x$PREOPEN_MODS" != "xall"])
1011 if test "x$PREOPEN_MODS" != "xall" ; then
1013 for mod in $PREOPEN_MODS; do
1014 tmpLIBS="$tmpLIBS module-$mod.la"
1016 PREOPEN_MODS="$tmpLIBS"
1017 AC_SUBST(PREOPEN_MODS)
1022 AC_HELP_STRING([--with-module-dir],[Directory where to install the modules to (defaults to ${libdir}/pulse-${PA_MAJORMINOR}/modules/]),
1023 [modlibexecdir=$withval], [modlibexecdir="${libdir}/pulse-${PA_MAJORMINOR}/modules/"])
1025 AC_SUBST(modlibexecdir)
1029 AC_HELP_STRING([--enable-force-preopen],[Preopen modules, even when dlopen() is supported.]),
1030 [FORCE_PREOPEN=1], [FORCE_PREOPEN=0])
1031 AM_CONDITIONAL([FORCE_PREOPEN], [test "x$FORCE_PREOPEN" = "x1"])
1040 libpulse-mainloop-glib.pc
1042 doxygen/doxygen.conf
1047 # ==========================================================================
1049 if test "x$HAVE_X11" = "x1" ; then
1054 if test "x$HAVE_OSS" = "x1" ; then
1059 if test "x$HAVE_ALSA" = "x1" ; then
1064 if test "x$HAVE_SOLARIS" = "x1" ; then
1069 if test "x$HAVE_GLIB20" = "x1" ; then
1074 if test "x$HAVE_GCONF" = "x1" ; then
1079 if test "x$HAVE_AVAHI" = "x1" ; then
1084 if test "x$HAVE_JACK" = "x1" ; then
1088 ENABLE_LIBASYNCNS=no
1089 if test "x$HAVE_LIBASYNCNS" = "x1" ; then
1090 ENABLE_LIBASYNCNS=yes
1094 if test "x$HAVE_LIRC" = "x1" ; then
1099 if test "x$HAVE_HAL" = "x1" ; then
1104 if test "x${LIBWRAP_LIBS}" != x ; then
1108 ENABLE_LIBSAMPLERATE=no
1109 if test "x${HAVE_LIBSAMPLERATE}" = "x1" ; then
1110 ENABLE_LIBSAMPLERATE=yes
1114 if test "x${HAVE_BLUEZ}" = "x1" ; then
1119 if test "x${HAVE_POLKIT}" = "x1" ; then
1124 ---{ $PACKAGE_NAME $VERSION }---
1127 sysconfdir: ${sysconfdir}
1128 localstatedir: ${localstatedir}
1129 System Runtime Path: ${PA_SYSTEM_RUNTIME_PATH}
1132 Have X11: ${ENABLE_X11}
1133 Enable OSS: ${ENABLE_OSS}
1134 Enable Alsa: ${ENABLE_ALSA}
1135 Enable Solaris: ${ENABLE_SOLARIS}
1136 Enable GLib 2.0: ${ENABLE_GLIB20}
1137 Enable GConf: ${ENABLE_GCONF}
1138 Enable Avahi: ${ENABLE_AVAHI}
1139 Enable Jack: ${ENABLE_JACK}
1140 Enable Async DNS: ${ENABLE_LIBASYNCNS}
1141 Enable LIRC: ${ENABLE_LIRC}
1142 Enable HAL: ${ENABLE_HAL}
1143 Enable BlueZ: ${ENABLE_BLUEZ}
1144 Enable TCP Wrappers: ${ENABLE_TCPWRAP}
1145 Enable libsamplerate: ${ENABLE_LIBSAMPLERATE}
1146 Enable PolicyKit: ${ENABLE_POLKIT}
1147 System User: ${PA_SYSTEM_USER}
1148 System Group: ${PA_SYSTEM_GROUP}
1149 Realtime Group: ${PA_REALTIME_GROUP}
1150 Access Group: ${PA_ACCESS_GROUP}