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])
282 AC_SEARCH_LIBS([connect], [socket])
286 # This magic is needed so we do not needlessly add static libs to the win32
287 # build, disabling its ability to make dlls.
288 AC_CHECK_FUNCS([getopt_long], [], [AC_CHECK_LIB([iberty], [getopt_long])])
290 #### Check for functions ####
293 AC_CHECK_FUNCS([lrintf strtof])
298 AC_FUNC_SELECT_ARGTYPES
299 AC_CHECK_FUNCS([chmod chown clock_gettime getaddrinfo getgrgid_r \
300 getpwuid_r gettimeofday getuid inet_ntop inet_pton mlock nanosleep \
301 pipe posix_fadvise posix_madvise posix_memalign setpgid setsid shm_open \
302 sigaction sleep sysconf])
303 AC_CHECK_FUNCS([mkfifo], [HAVE_MKFIFO=1], [HAVE_MKFIFO=0])
305 AM_CONDITIONAL(HAVE_MKFIFO, test "x$HAVE_MKFIFO" = "x1")
308 AC_CHECK_FUNCS([readlink])
311 AC_CHECK_FUNCS([ctime_r usleep])
314 AC_CHECK_FUNCS([strerror_r])
317 AC_CHECK_FUNCS([lstat])
321 AC_CHECK_FUNCS([setresuid setresgid setreuid setregid seteuid setegid ppoll strsignal sig2str strtof_l])
323 AC_MSG_CHECKING([for PTHREAD_PRIO_INHERIT])
324 AC_LANG_CONFTEST([AC_LANG_SOURCE([[
326 int main() { int i = PTHREAD_PRIO_INHERIT; }]])])
327 $PTHREAD_CC conftest.c $PTHREAD_CFLAGS $CFLAGS $PTHREAD_LIBS -o conftest > /dev/null 2> /dev/null
329 rm -f conftest.o conftest
331 if test $ret -eq 0 ; then
332 AC_DEFINE([HAVE_PTHREAD_PRIO_INHERIT], 1, [Have PTHREAD_PRIO_INHERIT.])
338 #### Large File-Support (LFS) ####
342 # Check for open64 to know if the current system does have open64() and similar functions
343 AC_CHECK_FUNCS([open64])
349 ###################################
350 # External libraries #
351 ###################################
353 #### X11 (optional) ####
357 # The macro tests the host, not the build target
358 if test "x$os_is_win32" != "x1" ; then
360 test "x$no_x" != "xyes" && HAVE_X11=1
364 AM_CONDITIONAL(HAVE_X11, test "x$HAVE_X11" = "x1")
365 if test "x$HAVE_X11" = "x1" ; then
366 AC_DEFINE([HAVE_X11], 1, [Have X11])
369 #### Capabilities (optional) ####
375 AC_HELP_STRING([--without-caps],[Omit support for POSIX capabilities.]))
377 if test "x${with_caps}" != "xno"; then
378 AC_SEARCH_LIBS([cap_init], [cap], [], [
379 if test "x${with_caps}" = "xyes" ; then
380 AC_MSG_ERROR([*** POSIX caps libraries not found])
382 AC_CHECK_HEADERS([sys/capability.h], [], [
383 if test "x${with_caps}" = "xyes" ; then
384 AC_MSG_ERROR([*** POSIX caps headers not found])
390 # Check for pkg-config manually first, as if its not installed the
391 # PKG_PROG_PKG_CONFIG macro won't be defined.
392 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
394 if test x"$have_pkg_config" = "xno"; then
395 AC_MSG_ERROR(pkg-config is required to install this program)
402 PKG_CHECK_MODULES(LIBSNDFILE, [ sndfile >= 1.0.10 ])
403 AC_SUBST(LIBSNDFILE_CFLAGS)
404 AC_SUBST(LIBSNDFILE_LIBS)
408 AC_CHECK_HEADERS([atomic_ops.h], [], [
409 AC_MSG_ERROR([*** libatomic-ops headers not found])
412 # Win32 does not need the lib and breaks horribly if we try to include it
413 if test "x$os_is_win32" != "x1" ; then
414 LIBS="$LIBS -latomic_ops"
417 #### Libsamplerate support (optional) ####
419 AC_ARG_ENABLE([samplerate],
420 AC_HELP_STRING([--disable-samplerate], [Disable optional libsamplerate support]),
422 case "${enableval}" in
423 yes) samplerate=yes ;;
425 *) AC_MSG_ERROR(bad value ${enableval} for --disable-samplerate) ;;
430 if test "x${samplerate}" != xno ; then
431 PKG_CHECK_MODULES(LIBSAMPLERATE, [ samplerate >= 0.1.0 ],
432 HAVE_LIBSAMPLERATE=1,
435 if test "x$samplerate" = xyes ; then
436 AC_MSG_ERROR([*** Libsamplerate not found])
443 if test "x${HAVE_LIBSAMPLERATE}" = x1 ; then
444 AC_DEFINE([HAVE_LIBSAMPLERATE], 1, [Have libsamplerate?])
447 AC_SUBST(LIBSAMPLERATE_CFLAGS)
448 AC_SUBST(LIBSAMPLERATE_LIBS)
449 AC_SUBST(HAVE_LIBSAMPLERATE)
450 AM_CONDITIONAL([HAVE_LIBSAMPLERATE], [test "x$HAVE_LIBSAMPLERATE" = x1])
452 #### OSS support (optional) ####
455 AC_HELP_STRING([--disable-oss], [Disable optional OSS support]),
457 case "${enableval}" in
460 *) AC_MSG_ERROR(bad value ${enableval} for --disable-oss) ;;
465 if test "x${oss}" != xno ; then
466 AC_CHECK_HEADERS([sys/soundcard.h],
469 AC_DEFINE([HAVE_OSS], 1, [Have OSS?])
473 if test "x$oss" = xyes ; then
474 AC_MSG_ERROR([*** OSS support not found])
482 AM_CONDITIONAL([HAVE_OSS], [test "x$HAVE_OSS" = x1])
485 #### ALSA support (optional) ####
487 AC_ARG_ENABLE([alsa],
488 AC_HELP_STRING([--disable-alsa], [Disable optional ALSA support]),
490 case "${enableval}" in
493 *) AC_MSG_ERROR(bad value ${enableval} for --disable-alsa) ;;
498 if test "x${alsa}" != xno ; then
499 PKG_CHECK_MODULES(ASOUNDLIB, [ alsa >= 1.0.0 ],
502 AC_DEFINE([HAVE_ALSA], 1, [Have ALSA?])
506 if test "x$alsa" = xyes ; then
507 AC_MSG_ERROR([*** ALSA support not found])
514 AC_SUBST(ASOUNDLIB_CFLAGS)
515 AC_SUBST(ASOUNDLIB_LIBS)
517 AM_CONDITIONAL([HAVE_ALSA], [test "x$HAVE_ALSA" = x1])
519 #### Solaris audio support (optional) ####
521 AC_ARG_ENABLE([solaris],
522 AC_HELP_STRING([--disable-solaris], [Disable optional Solaris audio support]),
524 case "${enableval}" in
527 *) AC_MSG_ERROR(bad value ${enableval} for --disable-solaris) ;;
532 if test "x${solaris}" != xno ; then
533 AC_CHECK_HEADERS([sys/audio.h],
536 AC_DEFINE([HAVE_SOLARIS], 1, [Have Solaris audio?])
540 if test "x$solaris" = xyes ; then
541 AC_MSG_ERROR([*** Solaris audio support not found])
548 AC_SUBST(HAVE_SOLARIS)
549 AM_CONDITIONAL([HAVE_SOLARIS], [test "x$HAVE_SOLARIS" = x1])
551 #### GLib 2 support (optional) ####
553 AC_ARG_ENABLE([glib2],
554 AC_HELP_STRING([--disable-glib2], [Disable optional GLib 2 support]),
556 case "${enableval}" in
559 *) AC_MSG_ERROR(bad value ${enableval} for --disable-glib2) ;;
564 if test "x${glib2}" != xno ; then
565 PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ],
569 if test "x$glib2" = xyes ; then
570 AC_MSG_ERROR([*** GLib 2 support not found])
577 AC_SUBST(GLIB20_CFLAGS)
578 AC_SUBST(GLIB20_LIBS)
579 AC_SUBST(HAVE_GLIB20)
580 AM_CONDITIONAL([HAVE_GLIB20], [test "x$HAVE_GLIB20" = x1])
582 #### GConf support (optional) ####
584 AC_ARG_ENABLE([gconf],
585 AC_HELP_STRING([--disable-gconf], [Disable optional GConf support]),
587 case "${enableval}" in
590 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gconf) ;;
595 if test "x${gconf}" != xno ; then
596 PKG_CHECK_MODULES(GCONF, [ gconf-2.0 >= 2.4.0 ],
600 if test "x$gconf" = xyes ; then
601 AC_MSG_ERROR([*** GConf support not found])
608 AC_SUBST(GCONF_CFLAGS)
611 AM_CONDITIONAL([HAVE_GCONF], [test "x$HAVE_GCONF" = x1])
613 #### Avahi support (optional) ####
615 AC_ARG_ENABLE([avahi],
616 AC_HELP_STRING([--disable-avahi], [Disable optional Avahi support]),
618 case "${enableval}" in
621 *) AC_MSG_ERROR(bad value ${enableval} for --disable-avahi) ;;
626 if test "x${avahi}" != xno ; then
627 PKG_CHECK_MODULES(AVAHI, [ avahi-client >= 0.6.0 ],
631 if test "x$avahi" = xyes ; then
632 AC_MSG_ERROR([*** Avahi support not found])
639 AC_SUBST(AVAHI_CFLAGS)
642 AM_CONDITIONAL([HAVE_AVAHI], [test "x$HAVE_AVAHI" = x1])
646 PKG_CHECK_MODULES(LIBOIL, [ liboil-0.3 >= 0.3.0 ])
647 AC_SUBST(LIBOIL_CFLAGS)
648 AC_SUBST(LIBOIL_LIBS)
650 ### JACK (optional) ####
652 AC_ARG_ENABLE([jack],
653 AC_HELP_STRING([--disable-jack], [Disable optional JACK support]),
655 case "${enableval}" in
658 *) AC_MSG_ERROR(bad value ${enableval} for --disable-jack) ;;
663 if test "x${jack}" != xno ; then
664 PKG_CHECK_MODULES(JACK, [ jack >= 0.100 ],
668 if test "x$jack" = xyes ; then
669 AC_MSG_ERROR([*** JACK support not found])
676 AC_SUBST(JACK_CFLAGS)
679 AM_CONDITIONAL([HAVE_JACK], [test "x$HAVE_JACK" = x1])
681 #### Async DNS support (optional) ####
683 AC_ARG_ENABLE([asyncns],
684 AC_HELP_STRING([--disable-asyncns], [Disable optional Async DNS support]),
686 case "${enableval}" in
689 *) AC_MSG_ERROR(bad value ${enableval} for --disable-asyncns) ;;
694 if test "x${asyncns}" != xno ; then
695 PKG_CHECK_MODULES(LIBASYNCNS, [ libasyncns >= 0.1 ],
699 if test "x$asyncns" = xyes ; then
700 AC_MSG_ERROR([*** Async DNS support not found])
707 AC_SUBST(LIBASYNCNS_CFLAGS)
708 AC_SUBST(LIBASYNCNS_LIBS)
709 AC_SUBST(HAVE_LIBASYNCNS)
710 AM_CONDITIONAL([HAVE_LIBASYNCNS], [test "x$HAVE_LIBASYNCNS" = x1])
712 if test "x$HAVE_LIBASYNCNS" != "x0" ; then
713 AC_DEFINE([HAVE_LIBASYNCNS], 1, [Have libasyncns?])
716 #### TCP wrappers (optional) ####
718 AC_ARG_ENABLE([tcpwrap],
719 AC_HELP_STRING([--disable-tcpwrap], [Disable optional TCP wrappers support]),
721 case "${enableval}" in
724 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
729 if test "x${tcpwrap}" != xno ; then
731 if test "x${LIBWRAP_LIBS}" = x && test "x$tcpwrap" = xyes ; then
732 AC_MSG_ERROR([*** TCP wrappers support not found])
738 AC_SUBST(LIBWRAP_LIBS)
740 #### LIRC support (optional) ####
742 AC_ARG_ENABLE([lirc],
743 AC_HELP_STRING([--disable-lirc], [Disable optional LIRC support]),
745 case "${enableval}" in
748 *) AC_MSG_ERROR(bad value ${enableval} for --disable-lirc) ;;
753 if test "x${lirc}" != xno ; then
755 if test "x${HAVE_LIRC}" = x0 && test "x$lirc" = xyes ; then
756 AC_MSG_ERROR([*** LIRC support not found])
762 AC_SUBST(LIRC_CFLAGS)
764 AM_CONDITIONAL([HAVE_LIRC], [test "x$HAVE_LIRC" = x1])
766 #### HAL support (optional) ####
769 AC_HELP_STRING([--disable-hal], [Disable optional HAL support]),
771 case "${enableval}" in
774 *) AC_MSG_ERROR(bad value ${enableval} for --disable-hal) ;;
778 if test "x${hal}" != xno -a \( "x$HAVE_OSS" = "x1" -o "x$HAVE_ALSA" = "x1" \) ; then
779 PKG_CHECK_MODULES(HAL, [ hal >= 0.5.7 ],
783 if test "x$hal" = xyes ; then
784 AC_MSG_ERROR([*** HAL support not found])
794 AM_CONDITIONAL([HAVE_HAL], [test "x$HAVE_HAL" = x1])
796 #### BlueZ support (optional) ####
798 AC_ARG_ENABLE([bluez],
799 AC_HELP_STRING([--disable-bluez], [Disable optional BlueZ support]),
801 case "${enableval}" in
804 *) AC_MSG_ERROR(bad value ${enableval} for --disable-bluez) ;;
808 if test "x${bluez}" != xno ; then
809 PKG_CHECK_MODULES(BLUEZ, [ bluez >= 3.0 ],
813 if test "x$bluez" = xyes ; then
814 AC_MSG_ERROR([*** BLUEZ support not found])
821 AC_SUBST(BLUEZ_CFLAGS)
824 AM_CONDITIONAL([HAVE_BLUEZ], [test "x$HAVE_BLUEZ" = x1])
826 #### D-Bus support (optional) ####
828 AC_ARG_ENABLE([dbus],
829 AC_HELP_STRING([--disable-dbus], [Disable optional D-Bus support]),
831 case "${enableval}" in
834 *) AC_MSG_ERROR(bad value ${enableval} for --disable-dbus) ;;
839 if test "x$HAVE_HAL" = x1 ; then
843 if test "x${dbus}" != xno || test "x${bluez}" != xno || "x${hal}" != xno ; then
845 PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 1.0.0 ],
849 LIBS="$LIBS $DBUS_LIBS"
850 AC_CHECK_FUNCS(dbus_watch_get_unix_fd)
852 AC_DEFINE([HAVE_DBUS], 1, [Have D-Bus.])
856 if test "x$dbus" = xyes ; then
857 AC_MSG_ERROR([*** D-Bus support not found])
864 AC_SUBST(DBUS_CFLAGS)
867 AM_CONDITIONAL([HAVE_DBUS], [test "x$HAVE_DBUS" = x1])
869 #### PolicyKit support (optional) ####
871 AC_ARG_ENABLE([polkit],
872 AC_HELP_STRING([--disable-polkit], [Disable optional PolicyKit support]),
874 case "${enableval}" in
877 *) AC_MSG_ERROR(bad value ${enableval} for --disable-polkit) ;;
882 if test "x${polkit}" != xno ; then
884 PKG_CHECK_MODULES(POLKIT, [ polkit-dbus ],
888 LIBS="$LIBS $POLKIT_LIBS"
889 AC_CHECK_FUNCS(polkit_context_is_caller_authorized)
891 AC_DEFINE([HAVE_POLKIT], 1, [Have PolicyKit])
892 policydir=`pkg-config polkit-dbus --variable prefix`/share/PolicyKit/policy/
897 if test "x$polkit" = xyes ; then
898 AC_MSG_ERROR([*** PolicyKit support not found])
905 AC_SUBST(POLKIT_CFLAGS)
906 AC_SUBST(POLKIT_LIBS)
907 AC_SUBST(HAVE_POLKIT)
908 AM_CONDITIONAL([HAVE_POLKIT], [test "x$HAVE_POLKIT" = x1])
910 ### Build and Install man pages ###
911 AC_ARG_ENABLE(manpages,
912 AS_HELP_STRING([--disable-manpages],[Disable building and installation of man pages]),
913 [case "${enableval}" in
916 *) AC_MSG_ERROR([bad value ${enableval} for --disable-manpages]) ;;
917 esac],[manpages=yes])
919 if test x$manpages = xyes ; then
921 # XMLTOMAN manpage generation
923 AC_ARG_ENABLE(xmltoman,
924 AS_HELP_STRING([--disable-xmltoman],[Enable rebuilding of man pages with xmltoman]),
925 [case "${enableval}" in
928 *) AC_MSG_ERROR([bad value ${enableval} for --disable-xmltoman]) ;;
929 esac],[xmltoman=yes])
931 if test x$xmltoman = xyes ; then
932 AC_CHECK_PROG(have_xmltoman, xmltoman, yes, no)
935 if test x$have_xmltoman = xno -o x$xmltoman = xno; then
936 if ! test -e man/pulseaudio.1 ; then
937 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])
940 AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***])
944 AM_CONDITIONAL([USE_XMLTOMAN], [test "x$xmltoman" = xyes])
945 AM_CONDITIONAL([BUILD_MANPAGES], [test "x$manpages" = xyes])
947 #### PulseAudio system group & user #####
949 AC_ARG_WITH(system_user, AS_HELP_STRING([--with-system-user=<user>],[User for running the PulseAudio daemon as a system-wide instance (pulse)]))
950 if test -z "$with_system_user" ; then
953 PA_SYSTEM_USER=$with_system_user
955 AC_SUBST(PA_SYSTEM_USER)
956 AC_DEFINE_UNQUOTED(PA_SYSTEM_USER,"$PA_SYSTEM_USER", [User for running the PulseAudio system daemon])
958 AC_ARG_WITH(system_group,AS_HELP_STRING([--with-system-group=<group>],[Group for running the PulseAudio daemon as a system-wide instance (pulse)]))
959 if test -z "$with_system_group" ; then
960 PA_SYSTEM_GROUP=pulse
962 PA_SYSTEM_GROUP=$with_system_group
964 AC_SUBST(PA_SYSTEM_GROUP)
965 AC_DEFINE_UNQUOTED(PA_SYSTEM_GROUP,"$PA_SYSTEM_GROUP", [Group for the PulseAudio system daemon])
967 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)]))
968 if test -z "$with_realtime_group" ; then
969 PA_REALTIME_GROUP=pulse-rt
971 PA_REALTIME_GROUP=$with_realtime_group
973 AC_SUBST(PA_REALTIME_GROUP)
974 AC_DEFINE_UNQUOTED(PA_REALTIME_GROUP,"$PA_REALTIME_GROUP", [Realtime group])
976 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)]))
977 if test -z "$with_access_group" ; then
978 PA_ACCESS_GROUP=pulse-access
980 PA_ACCESS_GROUP=$with_access_group
982 AC_SUBST(PA_ACCESS_GROUP)
983 AC_DEFINE_UNQUOTED(PA_ACCESS_GROUP,"$PA_ACCESS_GROUP", [Access group])
985 AC_ARG_WITH(peruser_esound, AS_HELP_STRING([--with-peruser-esound-socket], [Use per-user esound socket directory, like /tmp/.esd-UID/socket.]))
987 if test "x$with_peruser_esound" = "xyes"; then
988 AC_DEFINE([USE_PERUSER_ESOUND_SOCKET], [1], [Define this if you want per-user esound socket directories])
991 #### PulseAudio system runtime dir ####
992 PA_SYSTEM_RUNTIME_PATH="${localstatedir}/run/pulse"
993 AC_SUBST(PA_SYSTEM_RUNTIME_PATH)
995 ###################################
997 ###################################
1001 AC_HELP_STRING([--enable-static-bins],[Statically link executables.]),
1002 [STATIC_BINS=1], [STATIC_BINS=0])
1003 AM_CONDITIONAL([STATIC_BINS], [test "x$STATIC_BINS" = "x1"])
1007 AC_HELP_STRING([--with-preopen-mods],[Modules to preopen in daemon (default: all).]),
1008 [PREOPEN_MODS=$withval], [PREOPEN_MODS="all"])
1009 AM_CONDITIONAL([PREOPEN_MODS], [test "x$PREOPEN_MODS" != "xall"])
1010 if test "x$PREOPEN_MODS" != "xall" ; then
1012 for mod in $PREOPEN_MODS; do
1013 tmpLIBS="$tmpLIBS module-$mod.la"
1015 PREOPEN_MODS="$tmpLIBS"
1016 AC_SUBST(PREOPEN_MODS)
1021 AC_HELP_STRING([--with-module-dir],[Directory where to install the modules to (defaults to ${libdir}/pulse-${PA_MAJORMINOR}/modules/]),
1022 [modlibexecdir=$withval], [modlibexecdir="${libdir}/pulse-${PA_MAJORMINOR}/modules/"])
1024 AC_SUBST(modlibexecdir)
1028 AC_HELP_STRING([--enable-force-preopen],[Preopen modules, even when dlopen() is supported.]),
1029 [FORCE_PREOPEN=1], [FORCE_PREOPEN=0])
1030 AM_CONDITIONAL([FORCE_PREOPEN], [test "x$FORCE_PREOPEN" = "x1"])
1039 libpulse-mainloop-glib.pc
1041 doxygen/doxygen.conf
1046 # ==========================================================================
1048 if test "x$HAVE_X11" = "x1" ; then
1053 if test "x$HAVE_OSS" = "x1" ; then
1058 if test "x$HAVE_ALSA" = "x1" ; then
1063 if test "x$HAVE_SOLARIS" = "x1" ; then
1068 if test "x$HAVE_GLIB20" = "x1" ; then
1073 if test "x$HAVE_GCONF" = "x1" ; then
1078 if test "x$HAVE_AVAHI" = "x1" ; then
1083 if test "x$HAVE_JACK" = "x1" ; then
1087 ENABLE_LIBASYNCNS=no
1088 if test "x$HAVE_LIBASYNCNS" = "x1" ; then
1089 ENABLE_LIBASYNCNS=yes
1093 if test "x$HAVE_LIRC" = "x1" ; then
1098 if test "x$HAVE_HAL" = "x1" ; then
1103 if test "x${LIBWRAP_LIBS}" != x ; then
1107 ENABLE_LIBSAMPLERATE=no
1108 if test "x${HAVE_LIBSAMPLERATE}" = "x1" ; then
1109 ENABLE_LIBSAMPLERATE=yes
1113 if test "x${HAVE_BLUEZ}" = "x1" ; then
1118 if test "x${HAVE_POLKIT}" = "x1" ; then
1123 ---{ $PACKAGE_NAME $VERSION }---
1126 sysconfdir: ${sysconfdir}
1127 localstatedir: ${localstatedir}
1128 System Runtime Path: ${PA_SYSTEM_RUNTIME_PATH}
1131 Have X11: ${ENABLE_X11}
1132 Enable OSS: ${ENABLE_OSS}
1133 Enable Alsa: ${ENABLE_ALSA}
1134 Enable Solaris: ${ENABLE_SOLARIS}
1135 Enable GLib 2.0: ${ENABLE_GLIB20}
1136 Enable GConf: ${ENABLE_GCONF}
1137 Enable Avahi: ${ENABLE_AVAHI}
1138 Enable Jack: ${ENABLE_JACK}
1139 Enable Async DNS: ${ENABLE_LIBASYNCNS}
1140 Enable LIRC: ${ENABLE_LIRC}
1141 Enable HAL: ${ENABLE_HAL}
1142 Enable BlueZ: ${ENABLE_BLUEZ}
1143 Enable TCP Wrappers: ${ENABLE_TCPWRAP}
1144 Enable libsamplerate: ${ENABLE_LIBSAMPLERATE}
1145 Enable PolicyKit: ${ENABLE_POLKIT}
1146 System User: ${PA_SYSTEM_USER}
1147 System Group: ${PA_SYSTEM_GROUP}
1148 Realtime Group: ${PA_REALTIME_GROUP}
1149 Access Group: ${PA_ACCESS_GROUP}