2 # Process this file with autoconf to produce a configure script.
6 # This file is part of PulseAudio.
8 # Copyright 2004-2008 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, [10])
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:1: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:1: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 # Native atomic operation support
129 AC_ARG_ENABLE([atomic-arm-linux-helpers],
130 AC_HELP_STRING([--disable-atomic-arm-linux-helpers], [use inline asm or libatomic_ops instead]),
132 case "${enableval}" in
133 yes) atomic_arm_linux_helpers=yes ;;
134 no) atomic_arm_linux_helpers=no ;;
135 *) AC_MSG_ERROR(bad value ${enableval} for --disable-atomic-arm-linux-helpers) ;;
138 [atomic_arm_linux_helpers=auto])
140 AC_ARG_ENABLE([atomic-arm-memory-barrier],
141 AC_HELP_STRING([--enable-atomic-arm-memory-barrier], [only really needed in SMP arm systems]),
143 case "${enableval}" in
144 yes) AC_DEFINE_UNQUOTED(ATOMIC_ARM_MEMORY_BARRIER_ENABLED, 1, [Enable memory barriers]) ;;
146 *) AC_MSG_ERROR(bad value ${enableval} for --disable-atomic-arm-linux-helpers) ;;
150 AC_MSG_CHECKING([target operating system])
153 AC_MSG_RESULT([linux])
154 pulse_target_os=linux
157 AC_MSG_RESULT([unknown])
158 pulse_target_os=unknown
162 # If everything else fails use libatomic_ops
163 need_libatomic_ops=yes
165 AC_MSG_CHECKING([whether $CC knows __sync_bool_compare_and_swap()])
166 AC_LANG_CONFTEST([int main() { int a = 4; __sync_bool_compare_and_swap(&a, 4, 5); }])
167 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
169 rm -f conftest.o conftest
170 if test $ret -eq 0 ; then
171 AC_DEFINE([HAVE_ATOMIC_BUILTINS], 1, [Have __sync_bool_compare_and_swap() and friends.])
173 need_libatomic_ops=no
176 # HW specific atomic ops stuff
177 AC_MSG_CHECKING([architecture for native atomic operations])
181 AC_MSG_CHECKING([whether we can use Linux kernel helpers])
182 # The Linux kernel helper functions have been there since 2.6.16. However
183 # compile time checking for kernel version in cross compile environment
184 # (which is usually the case for arm cpu) is tricky (or impossible).
185 if test "x$pulse_target_os" = "xlinux" && test "x$atomic_arm_linux_helpers" != "xno"; then
187 AC_DEFINE_UNQUOTED(ATOMIC_ARM_LINUX_HELPERS, 1, [special arm linux implementation])
188 need_libatomic_ops=no
191 AC_MSG_CHECKING([compiler support for arm inline asm atomic operations])
192 AC_LANG_CONFTEST([[int main()
196 asm volatile ("ldrex %0, [%1]\n"
198 "strexeq %0, %3, [%1]\n"
200 : "r" (&a), "Ir" (o), "r" (n)
202 return (a==1 ? 0 : -1);
204 $CC conftest.c $CFLAGS -o conftest > /dev/null 2>&1
206 rm -f conftest.o conftest
207 if test $ret -eq 0 ; then
208 AC_DEFINE([ATOMIC_ARM_INLINE_ASM], 1, [Have ARMv6 instructions.])
210 need_libatomic_ops=no
217 AC_MSG_RESULT([unknown])
222 AC_MSG_CHECKING([whether $CC knows __thread])
223 AC_LANG_CONFTEST([static __thread int a = 6; int main() { a = 5; }])
224 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
226 rm -f conftest.o conftest
227 if test $ret -eq 0 ; then
228 AC_DEFINE([HAVE_TLS_BUILTIN], 1, [Have __thread().])
234 AC_MSG_CHECKING([whether $CC knows _Bool])
235 AC_LANG_CONFTEST([int main() { _Bool b; }])
236 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
238 rm -f conftest.o conftest
239 if test $ret -eq 0 ; then
240 AC_DEFINE([HAVE_STD_BOOL], 1, [Have _Bool.])
246 #### libtool stuff ####
248 AC_LTDL_ENABLE_INSTALL
249 AC_LIBLTDL_INSTALLABLE
255 AC_CONFIG_SUBDIRS(libltdl)
258 LIBS="$LIBS $LIBLTDL"
259 AC_CHECK_FUNCS([lt_dlmutex_register])
261 AC_CHECK_TYPES([struct lt_user_dlloader, lt_dladvise], , , [#include <ltdl.h>])
263 if test "x$enable_ltdl_install" = "xno" && test "x$ac_cv_lib_ltdl_lt_dlinit" = "xno" ; then
266 *** Cannot find the libltdl development files.
267 *** Maybe you need to install the libltdl-dev package.
271 #### Determine build environment ####
277 AC_DEFINE([OS_IS_WIN32], 1, [Build target is Windows.])
282 AM_CONDITIONAL(OS_IS_WIN32, test "x$os_is_win32" = "x1")
284 ###################################
285 # Basic environment checks #
286 ###################################
288 #### Checks for header files. ####
294 AC_CHECK_HEADERS([arpa/inet.h glob.h grp.h netdb.h netinet/in.h \
295 netinet/in_systm.h netinet/tcp.h poll.h pwd.h sched.h \
296 sys/mman.h sys/resource.h sys/select.h sys/socket.h sys/wait.h \
297 syslog.h sys/dl.h dlfcn.h linux/sockios.h])
298 AC_CHECK_HEADERS([netinet/ip.h], [], [],
299 [#include <sys/types.h>
300 #if HAVE_NETINET_IN_H
301 # include <netinet/in.h>
303 #if HAVE_NETINET_IN_SYSTM_H
304 # include <netinet/in_systm.h>
307 AC_CHECK_HEADERS([regex.h], [HAVE_REGEX=1], [HAVE_REGEX=0])
308 AC_CHECK_HEADERS([sys/un.h], [HAVE_AF_UNIX=1], [HAVE_AF_UNIX=0])
310 AM_CONDITIONAL(HAVE_REGEX, test "x$HAVE_REGEX" = "x1")
311 AM_CONDITIONAL(HAVE_AF_UNIX, test "x$HAVE_AF_UNIX" = "x1")
314 AC_CHECK_HEADERS([linux/input.h], [HAVE_EVDEV=1], [HAVE_EVDEV=0])
316 AM_CONDITIONAL([HAVE_EVDEV], [test "x$HAVE_EVDEV" = "x1"])
318 AC_CHECK_HEADERS([sys/prctl.h])
321 AC_CHECK_HEADERS([sys/filio.h])
324 AC_CHECK_HEADERS([windows.h winsock2.h ws2tcpip.h])
327 AC_CHECK_HEADERS([sys/ioctl.h])
328 AC_CHECK_HEADERS([byteswap.h])
329 AC_CHECK_HEADERS([sys/syscall.h])
331 #### Typdefs, structures, etc. ####
337 AC_CHECK_TYPES(ssize_t, , [AC_DEFINE([ssize_t], [signed long],
338 [Define ssize_t if it is not done by the standard libs.])])
343 AC_CHECK_DEFINE([SIGXCPU], [signal.h], [
345 AC_DEFINE([HAVE_SIGXCPU], 1, [Have SIGXCPU?])
347 AM_CONDITIONAL(HAVE_SIGXCPU, test "x$HAVE_SIGXCPU" = "x1")
350 AC_CHECK_DEFINE([INADDR_NONE], [netinet/in.h], [],
351 [AC_CHECK_DEFINE([INADDR_NONE], [winsock2.h], [],
352 [AC_DEFINE([INADDR_NONE], [0xffffffff], [Define INADDR_NONE if not found in <netinet/in.h>])])])
354 #### POSIX threads ####
358 #### Check for libs ####
361 AC_SEARCH_LIBS([pow], [m])
364 AC_SEARCH_LIBS([sched_setscheduler], [rt])
365 AC_SEARCH_LIBS([dlopen], [dl])
366 AC_SEARCH_LIBS([shm_open], [rt])
367 AC_SEARCH_LIBS([inet_ntop], [nsl])
368 AC_SEARCH_LIBS([timer_create], [rt])
371 AC_SEARCH_LIBS([connect], [socket])
375 # This magic is needed so we do not needlessly add static libs to the win32
376 # build, disabling its ability to make dlls.
377 AC_CHECK_FUNCS([getopt_long], [], [AC_CHECK_LIB([iberty], [getopt_long])])
379 #### Check for functions ####
382 AC_CHECK_FUNCS([lrintf strtof])
387 AC_FUNC_SELECT_ARGTYPES
388 AC_CHECK_FUNCS([chmod chown clock_gettime getaddrinfo getgrgid_r \
389 getpwuid_r gettimeofday getuid inet_ntop inet_pton mlock nanosleep \
390 pipe posix_fadvise posix_madvise posix_memalign setpgid setsid shm_open \
391 sigaction sleep sysconf])
392 AC_CHECK_FUNCS([mkfifo], [HAVE_MKFIFO=1], [HAVE_MKFIFO=0])
394 AM_CONDITIONAL(HAVE_MKFIFO, test "x$HAVE_MKFIFO" = "x1")
397 AC_CHECK_FUNCS([readlink])
400 AC_CHECK_FUNCS([ctime_r usleep])
403 AC_CHECK_FUNCS([strerror_r])
406 AC_CHECK_FUNCS([lstat])
410 AC_CHECK_FUNCS([setresuid setresgid setreuid setregid seteuid setegid ppoll strsignal sig2str strtof_l])
412 AC_MSG_CHECKING([for PTHREAD_PRIO_INHERIT])
413 AC_LANG_CONFTEST([AC_LANG_SOURCE([[
415 int main() { int i = PTHREAD_PRIO_INHERIT; }]])])
416 $PTHREAD_CC conftest.c $PTHREAD_CFLAGS $CFLAGS $PTHREAD_LIBS -o conftest > /dev/null 2> /dev/null
418 rm -f conftest.o conftest
420 if test $ret -eq 0 ; then
421 AC_DEFINE([HAVE_PTHREAD_PRIO_INHERIT], 1, [Have PTHREAD_PRIO_INHERIT.])
427 #### Large File-Support (LFS) ####
431 # Check for open64 to know if the current system does have open64() and similar functions
432 AC_CHECK_FUNCS([open64])
438 ###################################
439 # External libraries #
440 ###################################
442 #### X11 (optional) ####
446 # The macro tests the host, not the build target
447 if test "x$os_is_win32" != "x1" ; then
449 test "x$no_x" != "xyes" && HAVE_X11=1
453 AM_CONDITIONAL(HAVE_X11, test "x$HAVE_X11" = "x1")
454 if test "x$HAVE_X11" = "x1" ; then
455 AC_DEFINE([HAVE_X11], 1, [Have X11])
458 #### Capabilities (optional) ####
464 AC_HELP_STRING([--without-caps],[Omit support for POSIX capabilities.]))
466 if test "x${with_caps}" != "xno"; then
467 AC_SEARCH_LIBS([cap_init], [cap], [], [
468 if test "x${with_caps}" = "xyes" ; then
469 AC_MSG_ERROR([*** POSIX caps libraries not found])
471 AC_CHECK_HEADERS([sys/capability.h], [], [
472 if test "x${with_caps}" = "xyes" ; then
473 AC_MSG_ERROR([*** POSIX caps headers not found])
479 # Check for pkg-config manually first, as if its not installed the
480 # PKG_PROG_PKG_CONFIG macro won't be defined.
481 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
483 if test x"$have_pkg_config" = "xno"; then
484 AC_MSG_ERROR(pkg-config is required to install this program)
491 PKG_CHECK_MODULES(LIBSNDFILE, [ sndfile >= 1.0.10 ])
492 AC_SUBST(LIBSNDFILE_CFLAGS)
493 AC_SUBST(LIBSNDFILE_LIBS)
497 AC_MSG_CHECKING([whether we need libatomic_ops])
498 if test "x$need_libatomic_ops" = "xyes"; then
500 AC_CHECK_HEADERS([atomic_ops.h], [], [
501 AC_MSG_ERROR([*** libatomic-ops headers not found])
504 # Win32 does not need the lib and breaks horribly if we try to include it
505 if test "x$os_is_win32" != "x1" ; then
506 LIBS="$LIBS -latomic_ops"
512 #### Libsamplerate support (optional) ####
514 AC_ARG_ENABLE([samplerate],
515 AC_HELP_STRING([--disable-samplerate], [Disable optional libsamplerate support]),
517 case "${enableval}" in
518 yes) samplerate=yes ;;
520 *) AC_MSG_ERROR(bad value ${enableval} for --disable-samplerate) ;;
525 if test "x${samplerate}" != xno ; then
526 PKG_CHECK_MODULES(LIBSAMPLERATE, [ samplerate >= 0.1.0 ],
527 HAVE_LIBSAMPLERATE=1,
530 if test "x$samplerate" = xyes ; then
531 AC_MSG_ERROR([*** Libsamplerate not found])
538 if test "x${HAVE_LIBSAMPLERATE}" = x1 ; then
539 AC_DEFINE([HAVE_LIBSAMPLERATE], 1, [Have libsamplerate?])
542 AC_SUBST(LIBSAMPLERATE_CFLAGS)
543 AC_SUBST(LIBSAMPLERATE_LIBS)
544 AC_SUBST(HAVE_LIBSAMPLERATE)
545 AM_CONDITIONAL([HAVE_LIBSAMPLERATE], [test "x$HAVE_LIBSAMPLERATE" = x1])
547 #### OSS support (optional) ####
550 AC_HELP_STRING([--disable-oss], [Disable optional OSS support]),
552 case "${enableval}" in
555 *) AC_MSG_ERROR(bad value ${enableval} for --disable-oss) ;;
560 if test "x${oss}" != xno ; then
561 AC_CHECK_HEADERS([sys/soundcard.h],
564 AC_DEFINE([HAVE_OSS], 1, [Have OSS?])
568 if test "x$oss" = xyes ; then
569 AC_MSG_ERROR([*** OSS support not found])
577 AM_CONDITIONAL([HAVE_OSS], [test "x$HAVE_OSS" = x1])
580 #### ALSA support (optional) ####
582 AC_ARG_ENABLE([alsa],
583 AC_HELP_STRING([--disable-alsa], [Disable optional ALSA support]),
585 case "${enableval}" in
588 *) AC_MSG_ERROR(bad value ${enableval} for --disable-alsa) ;;
593 if test "x${alsa}" != xno ; then
594 PKG_CHECK_MODULES(ASOUNDLIB, [ alsa >= 1.0.0 ],
597 AC_DEFINE([HAVE_ALSA], 1, [Have ALSA?])
601 if test "x$alsa" = xyes ; then
602 AC_MSG_ERROR([*** ALSA support not found])
609 AC_SUBST(ASOUNDLIB_CFLAGS)
610 AC_SUBST(ASOUNDLIB_LIBS)
612 AM_CONDITIONAL([HAVE_ALSA], [test "x$HAVE_ALSA" = x1])
614 #### Solaris audio support (optional) ####
616 AC_ARG_ENABLE([solaris],
617 AC_HELP_STRING([--disable-solaris], [Disable optional Solaris audio support]),
619 case "${enableval}" in
622 *) AC_MSG_ERROR(bad value ${enableval} for --disable-solaris) ;;
627 if test "x${solaris}" != xno ; then
628 AC_CHECK_HEADERS([sys/audio.h],
631 AC_DEFINE([HAVE_SOLARIS], 1, [Have Solaris audio?])
635 if test "x$solaris" = xyes ; then
636 AC_MSG_ERROR([*** Solaris audio support not found])
643 AC_SUBST(HAVE_SOLARIS)
644 AM_CONDITIONAL([HAVE_SOLARIS], [test "x$HAVE_SOLARIS" = x1])
646 #### GLib 2 support (optional) ####
648 AC_ARG_ENABLE([glib2],
649 AC_HELP_STRING([--disable-glib2], [Disable optional GLib 2 support]),
651 case "${enableval}" in
654 *) AC_MSG_ERROR(bad value ${enableval} for --disable-glib2) ;;
659 if test "x${glib2}" != xno ; then
660 PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ],
664 if test "x$glib2" = xyes ; then
665 AC_MSG_ERROR([*** GLib 2 support not found])
672 AC_SUBST(GLIB20_CFLAGS)
673 AC_SUBST(GLIB20_LIBS)
674 AC_SUBST(HAVE_GLIB20)
675 AM_CONDITIONAL([HAVE_GLIB20], [test "x$HAVE_GLIB20" = x1])
677 #### GConf support (optional) ####
679 AC_ARG_ENABLE([gconf],
680 AC_HELP_STRING([--disable-gconf], [Disable optional GConf support]),
682 case "${enableval}" in
685 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gconf) ;;
690 if test "x${gconf}" != xno ; then
691 PKG_CHECK_MODULES(GCONF, [ gconf-2.0 >= 2.4.0 ],
695 if test "x$gconf" = xyes ; then
696 AC_MSG_ERROR([*** GConf support not found])
703 AC_SUBST(GCONF_CFLAGS)
706 AM_CONDITIONAL([HAVE_GCONF], [test "x$HAVE_GCONF" = x1])
708 #### Avahi support (optional) ####
710 AC_ARG_ENABLE([avahi],
711 AC_HELP_STRING([--disable-avahi], [Disable optional Avahi support]),
713 case "${enableval}" in
716 *) AC_MSG_ERROR(bad value ${enableval} for --disable-avahi) ;;
721 if test "x${avahi}" != xno ; then
722 PKG_CHECK_MODULES(AVAHI, [ avahi-client >= 0.6.0 ],
726 if test "x$avahi" = xyes ; then
727 AC_MSG_ERROR([*** Avahi support not found])
734 AC_SUBST(AVAHI_CFLAGS)
737 AM_CONDITIONAL([HAVE_AVAHI], [test "x$HAVE_AVAHI" = x1])
741 PKG_CHECK_MODULES(LIBOIL, [ liboil-0.3 >= 0.3.0 ])
742 AC_SUBST(LIBOIL_CFLAGS)
743 AC_SUBST(LIBOIL_LIBS)
745 ### JACK (optional) ####
747 AC_ARG_ENABLE([jack],
748 AC_HELP_STRING([--disable-jack], [Disable optional JACK support]),
750 case "${enableval}" in
753 *) AC_MSG_ERROR(bad value ${enableval} for --disable-jack) ;;
758 if test "x${jack}" != xno ; then
759 PKG_CHECK_MODULES(JACK, [ jack >= 0.100 ],
763 if test "x$jack" = xyes ; then
764 AC_MSG_ERROR([*** JACK support not found])
771 AC_SUBST(JACK_CFLAGS)
774 AM_CONDITIONAL([HAVE_JACK], [test "x$HAVE_JACK" = x1])
776 #### Async DNS support (optional) ####
778 AC_ARG_ENABLE([asyncns],
779 AC_HELP_STRING([--disable-asyncns], [Disable optional Async DNS support]),
781 case "${enableval}" in
784 *) AC_MSG_ERROR(bad value ${enableval} for --disable-asyncns) ;;
789 if test "x${asyncns}" != xno ; then
790 PKG_CHECK_MODULES(LIBASYNCNS, [ libasyncns >= 0.1 ],
794 if test "x$asyncns" = xyes ; then
795 AC_MSG_ERROR([*** Async DNS support not found])
802 AC_SUBST(LIBASYNCNS_CFLAGS)
803 AC_SUBST(LIBASYNCNS_LIBS)
804 AC_SUBST(HAVE_LIBASYNCNS)
805 AM_CONDITIONAL([HAVE_LIBASYNCNS], [test "x$HAVE_LIBASYNCNS" = x1])
807 if test "x$HAVE_LIBASYNCNS" != "x0" ; then
808 AC_DEFINE([HAVE_LIBASYNCNS], 1, [Have libasyncns?])
811 #### TCP wrappers (optional) ####
813 AC_ARG_ENABLE([tcpwrap],
814 AC_HELP_STRING([--disable-tcpwrap], [Disable optional TCP wrappers support]),
816 case "${enableval}" in
819 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
824 if test "x${tcpwrap}" != xno ; then
826 if test "x${LIBWRAP_LIBS}" = x && test "x$tcpwrap" = xyes ; then
827 AC_MSG_ERROR([*** TCP wrappers support not found])
833 AC_SUBST(LIBWRAP_LIBS)
835 #### LIRC support (optional) ####
837 AC_ARG_ENABLE([lirc],
838 AC_HELP_STRING([--disable-lirc], [Disable optional LIRC support]),
840 case "${enableval}" in
843 *) AC_MSG_ERROR(bad value ${enableval} for --disable-lirc) ;;
848 if test "x${lirc}" != xno ; then
850 if test "x${HAVE_LIRC}" = x0 && test "x$lirc" = xyes ; then
851 AC_MSG_ERROR([*** LIRC support not found])
857 AC_SUBST(LIRC_CFLAGS)
859 AM_CONDITIONAL([HAVE_LIRC], [test "x$HAVE_LIRC" = x1])
861 #### HAL support (optional) ####
864 AC_HELP_STRING([--disable-hal], [Disable optional HAL support]),
866 case "${enableval}" in
869 *) AC_MSG_ERROR(bad value ${enableval} for --disable-hal) ;;
873 if test "x${hal}" != xno -a \( "x$HAVE_OSS" = "x1" -o "x$HAVE_ALSA" = "x1" \) ; then
874 PKG_CHECK_MODULES(HAL, [ hal >= 0.5.7 ],
878 if test "x$hal" = xyes ; then
879 AC_MSG_ERROR([*** HAL support not found])
889 AM_CONDITIONAL([HAVE_HAL], [test "x$HAVE_HAL" = x1])
891 #### BlueZ support (optional) ####
893 AC_ARG_ENABLE([bluez],
894 AC_HELP_STRING([--disable-bluez], [Disable optional BlueZ support]),
896 case "${enableval}" in
899 *) AC_MSG_ERROR(bad value ${enableval} for --disable-bluez) ;;
903 if test "x${bluez}" != xno ; then
904 PKG_CHECK_MODULES(BLUEZ, [ bluez >= 3.0 ],
908 if test "x$bluez" = xyes ; then
909 AC_MSG_ERROR([*** BLUEZ support not found])
916 AC_SUBST(BLUEZ_CFLAGS)
919 AM_CONDITIONAL([HAVE_BLUEZ], [test "x$HAVE_BLUEZ" = x1])
921 #### D-Bus support (optional) ####
923 AC_ARG_ENABLE([dbus],
924 AC_HELP_STRING([--disable-dbus], [Disable optional D-Bus support]),
926 case "${enableval}" in
929 *) AC_MSG_ERROR(bad value ${enableval} for --disable-dbus) ;;
934 if test "x$HAVE_HAL" = x1 ; then
938 if test "x${dbus}" != xno || test "x${bluez}" != xno || "x${hal}" != xno ; then
940 PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 1.0.0 ],
944 LIBS="$LIBS $DBUS_LIBS"
945 AC_CHECK_FUNCS(dbus_watch_get_unix_fd)
947 AC_DEFINE([HAVE_DBUS], 1, [Have D-Bus.])
951 if test "x$dbus" = xyes ; then
952 AC_MSG_ERROR([*** D-Bus support not found])
959 AC_SUBST(DBUS_CFLAGS)
962 AM_CONDITIONAL([HAVE_DBUS], [test "x$HAVE_DBUS" = x1])
964 #### PolicyKit support (optional) ####
966 AC_ARG_ENABLE([polkit],
967 AC_HELP_STRING([--disable-polkit], [Disable optional PolicyKit support]),
969 case "${enableval}" in
972 *) AC_MSG_ERROR(bad value ${enableval} for --disable-polkit) ;;
977 if test "x${polkit}" != xno ; then
979 PKG_CHECK_MODULES(POLKIT, [ polkit-dbus >= 0.7 ],
982 AC_DEFINE([HAVE_POLKIT], 1, [Have PolicyKit])
983 policydir=`pkg-config polkit-dbus --variable prefix`/share/PolicyKit/policy/
988 if test "x$polkit" = xyes ; then
989 AC_MSG_ERROR([*** PolicyKit support not found])
996 AC_SUBST(POLKIT_CFLAGS)
997 AC_SUBST(POLKIT_LIBS)
998 AC_SUBST(HAVE_POLKIT)
999 AM_CONDITIONAL([HAVE_POLKIT], [test "x$HAVE_POLKIT" = x1])
1001 ### Build and Install man pages ###
1002 AC_ARG_ENABLE(manpages,
1003 AS_HELP_STRING([--disable-manpages],[Disable building and installation of man pages]),
1004 [case "${enableval}" in
1005 yes) manpages=yes ;;
1007 *) AC_MSG_ERROR([bad value ${enableval} for --disable-manpages]) ;;
1008 esac],[manpages=yes])
1010 if test x$manpages = xyes ; then
1012 # XMLTOMAN manpage generation
1014 AC_ARG_ENABLE(xmltoman,
1015 AS_HELP_STRING([--disable-xmltoman],[Enable rebuilding of man pages with xmltoman]),
1016 [case "${enableval}" in
1017 yes) xmltoman=yes ;;
1019 *) AC_MSG_ERROR([bad value ${enableval} for --disable-xmltoman]) ;;
1020 esac],[xmltoman=yes])
1022 if test x$xmltoman = xyes ; then
1023 AC_CHECK_PROG(have_xmltoman, xmltoman, yes, no)
1026 if test x$have_xmltoman = xno -o x$xmltoman = xno; then
1027 if ! test -e man/pulseaudio.1 ; then
1028 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])
1031 AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***])
1035 AM_CONDITIONAL([USE_XMLTOMAN], [test "x$xmltoman" = xyes])
1036 AM_CONDITIONAL([BUILD_MANPAGES], [test "x$manpages" = xyes])
1038 #### PulseAudio system group & user #####
1040 AC_ARG_WITH(system_user, AS_HELP_STRING([--with-system-user=<user>],[User for running the PulseAudio daemon as a system-wide instance (pulse)]))
1041 if test -z "$with_system_user" ; then
1042 PA_SYSTEM_USER=pulse
1044 PA_SYSTEM_USER=$with_system_user
1046 AC_SUBST(PA_SYSTEM_USER)
1047 AC_DEFINE_UNQUOTED(PA_SYSTEM_USER,"$PA_SYSTEM_USER", [User for running the PulseAudio system daemon])
1049 AC_ARG_WITH(system_group,AS_HELP_STRING([--with-system-group=<group>],[Group for running the PulseAudio daemon as a system-wide instance (pulse)]))
1050 if test -z "$with_system_group" ; then
1051 PA_SYSTEM_GROUP=pulse
1053 PA_SYSTEM_GROUP=$with_system_group
1055 AC_SUBST(PA_SYSTEM_GROUP)
1056 AC_DEFINE_UNQUOTED(PA_SYSTEM_GROUP,"$PA_SYSTEM_GROUP", [Group for the PulseAudio system daemon])
1058 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)]))
1059 if test -z "$with_realtime_group" ; then
1060 PA_REALTIME_GROUP=pulse-rt
1062 PA_REALTIME_GROUP=$with_realtime_group
1064 AC_SUBST(PA_REALTIME_GROUP)
1065 AC_DEFINE_UNQUOTED(PA_REALTIME_GROUP,"$PA_REALTIME_GROUP", [Realtime group])
1067 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)]))
1068 if test -z "$with_access_group" ; then
1069 PA_ACCESS_GROUP=pulse-access
1071 PA_ACCESS_GROUP=$with_access_group
1073 AC_SUBST(PA_ACCESS_GROUP)
1074 AC_DEFINE_UNQUOTED(PA_ACCESS_GROUP,"$PA_ACCESS_GROUP", [Access group])
1077 per_user_esound_socket,
1078 AS_HELP_STRING([--disable-per-user-esound-socket], [Use per-user esound socket directory, like /tmp/.esd-UID/socket.]),
1080 case "${enableval}" in
1081 yes) per_user_esound_socket=1 ;;
1082 no) per_user_esound_socket=0 ;;
1083 *) AC_MSG_ERROR(bad value ${enableval} for --disable-per-user-esound-socket) ;;
1086 [per_user_esound_socket=1])
1088 if test "x$per_user_esound_socket" = "x1"; then
1089 AC_DEFINE([USE_PER_USER_ESOUND_SOCKET], [1], [Define this if you want per-user esound socket directories])
1092 #### PulseAudio system runtime dir ####
1093 PA_SYSTEM_RUNTIME_PATH="${localstatedir}/run/pulse"
1094 AC_SUBST(PA_SYSTEM_RUNTIME_PATH)
1096 ###################################
1098 ###################################
1102 AC_HELP_STRING([--enable-static-bins],[Statically link executables.]),
1103 [STATIC_BINS=1], [STATIC_BINS=0])
1104 AM_CONDITIONAL([STATIC_BINS], [test "x$STATIC_BINS" = "x1"])
1108 AC_HELP_STRING([--with-preopen-mods],[Modules to preopen in daemon (default: all).]),
1109 [PREOPEN_MODS=$withval], [PREOPEN_MODS="all"])
1110 AM_CONDITIONAL([PREOPEN_MODS], [test "x$PREOPEN_MODS" != "xall"])
1111 if test "x$PREOPEN_MODS" != "xall" ; then
1113 for mod in $PREOPEN_MODS; do
1114 tmpLIBS="$tmpLIBS module-$mod.la"
1116 PREOPEN_MODS="$tmpLIBS"
1117 AC_SUBST(PREOPEN_MODS)
1122 AC_HELP_STRING([--with-module-dir],[Directory where to install the modules to (defaults to ${libdir}/pulse-${PA_MAJORMINOR}/modules/]),
1123 [modlibexecdir=$withval], [modlibexecdir="${libdir}/pulse-${PA_MAJORMINOR}/modules/"])
1125 AC_SUBST(modlibexecdir)
1129 AC_HELP_STRING([--enable-force-preopen],[Preopen modules, even when dlopen() is supported.]),
1130 [FORCE_PREOPEN=1], [FORCE_PREOPEN=0])
1131 AM_CONDITIONAL([FORCE_PREOPEN], [test "x$FORCE_PREOPEN" = "x1"])
1140 libpulse-mainloop-glib.pc
1142 doxygen/doxygen.conf
1147 # ==========================================================================
1149 if test "x$HAVE_X11" = "x1" ; then
1154 if test "x$HAVE_OSS" = "x1" ; then
1159 if test "x$HAVE_ALSA" = "x1" ; then
1164 if test "x$HAVE_SOLARIS" = "x1" ; then
1169 if test "x$HAVE_GLIB20" = "x1" ; then
1174 if test "x$HAVE_GCONF" = "x1" ; then
1179 if test "x$HAVE_AVAHI" = "x1" ; then
1184 if test "x$HAVE_JACK" = "x1" ; then
1188 ENABLE_LIBASYNCNS=no
1189 if test "x$HAVE_LIBASYNCNS" = "x1" ; then
1190 ENABLE_LIBASYNCNS=yes
1194 if test "x$HAVE_LIRC" = "x1" ; then
1199 if test "x$HAVE_HAL" = "x1" ; then
1204 if test "x${LIBWRAP_LIBS}" != x ; then
1208 ENABLE_LIBSAMPLERATE=no
1209 if test "x${HAVE_LIBSAMPLERATE}" = "x1" ; then
1210 ENABLE_LIBSAMPLERATE=yes
1214 if test "x${HAVE_BLUEZ}" = "x1" ; then
1219 if test "x${HAVE_POLKIT}" = "x1" ; then
1223 ENABLE_PER_USER_ESOUND_SOCKET=no
1224 if test "x$per_user_esound_socket" = "x1" ; then
1225 ENABLE_PER_USER_ESOUND_SOCKET=yes
1229 ---{ $PACKAGE_NAME $VERSION }---
1232 sysconfdir: ${sysconfdir}
1233 localstatedir: ${localstatedir}
1234 System Runtime Path: ${PA_SYSTEM_RUNTIME_PATH}
1237 Have X11: ${ENABLE_X11}
1238 Enable OSS: ${ENABLE_OSS}
1239 Enable Alsa: ${ENABLE_ALSA}
1240 Enable Solaris: ${ENABLE_SOLARIS}
1241 Enable GLib 2.0: ${ENABLE_GLIB20}
1242 Enable GConf: ${ENABLE_GCONF}
1243 Enable Avahi: ${ENABLE_AVAHI}
1244 Enable Jack: ${ENABLE_JACK}
1245 Enable Async DNS: ${ENABLE_LIBASYNCNS}
1246 Enable LIRC: ${ENABLE_LIRC}
1247 Enable HAL: ${ENABLE_HAL}
1248 Enable BlueZ: ${ENABLE_BLUEZ}
1249 Enable TCP Wrappers: ${ENABLE_TCPWRAP}
1250 Enable libsamplerate: ${ENABLE_LIBSAMPLERATE}
1251 Enable PolicyKit: ${ENABLE_POLKIT}
1252 System User: ${PA_SYSTEM_USER}
1253 System Group: ${PA_SYSTEM_GROUP}
1254 Realtime Group: ${PA_REALTIME_GROUP}
1255 Access Group: ${PA_ACCESS_GROUP}
1256 Enable per-user EsounD socket: ${ENABLE_PER_USER_ESOUND_SOCKET}