2 # Process this file with autoconf to produce a configure script.
4 # This file is part of PulseAudio.
6 # Copyright 2004-2008 Lennart Poettering
7 # Copyright 2006-2007 Pierre Ossman <ossman@cendio.se> for Cendio AB
9 # PulseAudio is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU Lesser General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
14 # PulseAudio is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # General Public License for more details.
19 # You should have received a copy of the GNU Lesser General Public License
20 # along with PulseAudio; if not, write to the Free Software Foundation,
21 # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 m4_define(PA_MAJOR, [0])
26 m4_define(PA_MINOR, [9])
27 m4_define(PA_MICRO, [11])
29 AC_INIT([pulseaudio], PA_MAJOR.PA_MINOR.PA_MICRO,[mzchyfrnhqvb (at) 0pointer (dot) net])
30 AC_CONFIG_SRCDIR([src/daemon/main.c])
31 AC_CONFIG_HEADERS([config.h])
32 AM_INIT_AUTOMAKE([foreign -Wall])
34 AC_SUBST(PA_MAJORMINOR, "PA_MAJOR.PA_MINOR")
35 AC_SUBST(PACKAGE_URL, [http://pulseaudio.org/])
37 AC_SUBST(PA_API_VERSION, 11)
38 AC_SUBST(PA_PROTOCOL_VERSION, 13)
40 # The stable ABI for client applications, for the version info x:y:z
41 # always will hold y=z
42 AC_SUBST(LIBPULSE_VERSION_INFO, [5:0:5])
44 # A simplified, synchronous, ABI-stable interface for client
45 # applications, for the version info x:y:z always will hold y=z
46 AC_SUBST(LIBPULSE_SIMPLE_VERSION_INFO, [0:1:0])
48 # The ABI-stable network browsing interface for client applications,
49 # for the version info x:y:z always will hold y=z
50 AC_SUBST(LIBPULSE_BROWSE_VERSION_INFO, [1:1:1])
52 # The ABI-stable GLib adapter for client applications, for the version
53 # info x:y:z always will hold y=z
54 AC_SUBST(LIBPULSE_MAINLOOP_GLIB_VERSION_INFO, [0:3:0])
56 # An internally used, ABI-unstable library that contains the
57 # PulseAudio core, SONAMEs are bumped on every release, version info
58 # suffix will always be 0:0
59 AC_SUBST(LIBPULSECORE_VERSION_INFO, [6:0:0])
63 if type -p stow > /dev/null && test -d /usr/local/stow ; then
64 AC_MSG_NOTICE([*** Found /usr/local/stow: default install prefix set to /usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION} ***])
65 ac_default_prefix="/usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION}"
68 #### Platform hacks ####
72 AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
73 AC_DEFINE(_XOPEN_SOURCE, 2, Needed to get declarations for msg_control and msg_controllen on Solaris)
74 AC_DEFINE(__EXTENSIONS__, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
78 #### Checks for programs. ####
88 AC_PROG_GCC_TRADITIONAL
93 AC_PATH_PROG([M4], [m4 gm4], [no])
94 if test "x$M4" = xno ; then
95 AC_MSG_ERROR([m4 missing])
101 AC_LANG_CONFTEST([int main(int argc, char*argv[]) {}])
102 $CC -c conftest.c $CFLAGS -o conftest.o > /dev/null 2> /dev/null
108 # If using GCC specify some additional parameters
109 if test "x$GCC" = "xyes" ; then
111 # We use gnu99 instead of c99 because many have interpreted the standard
112 # in a way that int64_t isn't defined on non-64 bit platforms.
113 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"
115 for flag in $DESIRED_FLAGS ; do
116 AC_MSG_CHECKING([whether $CC accepts $flag])
117 if test_gcc_flag $flag ; then
118 CFLAGS="$CFLAGS $flag"
126 # Native atomic operation support
127 AC_ARG_ENABLE([atomic-arm-linux-helpers],
128 AC_HELP_STRING([--disable-atomic-arm-linux-helpers], [use inline asm or libatomic_ops instead]),
130 case "${enableval}" in
131 yes) atomic_arm_linux_helpers=yes ;;
132 no) atomic_arm_linux_helpers=no ;;
133 *) AC_MSG_ERROR(bad value ${enableval} for --disable-atomic-arm-linux-helpers) ;;
136 [atomic_arm_linux_helpers=auto])
138 AC_ARG_ENABLE([atomic-arm-memory-barrier],
139 AC_HELP_STRING([--enable-atomic-arm-memory-barrier], [only really needed in SMP arm systems]),
141 case "${enableval}" in
142 yes) AC_DEFINE_UNQUOTED(ATOMIC_ARM_MEMORY_BARRIER_ENABLED, 1, [Enable memory barriers]) ;;
144 *) AC_MSG_ERROR(bad value ${enableval} for --disable-atomic-arm-linux-helpers) ;;
148 AC_MSG_CHECKING([target operating system])
151 AC_MSG_RESULT([linux])
152 pulse_target_os=linux
155 AC_MSG_RESULT([unknown])
156 pulse_target_os=unknown
160 # If everything else fails use libatomic_ops
161 need_libatomic_ops=yes
163 AC_MSG_CHECKING([whether $CC knows __sync_bool_compare_and_swap()])
164 AC_LANG_CONFTEST([int main() { int a = 4; __sync_bool_compare_and_swap(&a, 4, 5); }])
165 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
167 rm -f conftest.o conftest
168 if test $ret -eq 0 ; then
169 AC_DEFINE([HAVE_ATOMIC_BUILTINS], 1, [Have __sync_bool_compare_and_swap() and friends.])
171 need_libatomic_ops=no
174 # HW specific atomic ops stuff
175 AC_MSG_CHECKING([architecture for native atomic operations])
179 AC_MSG_CHECKING([whether we can use Linux kernel helpers])
180 # The Linux kernel helper functions have been there since 2.6.16. However
181 # compile time checking for kernel version in cross compile environment
182 # (which is usually the case for arm cpu) is tricky (or impossible).
183 if test "x$pulse_target_os" = "xlinux" && test "x$atomic_arm_linux_helpers" != "xno"; then
185 AC_DEFINE_UNQUOTED(ATOMIC_ARM_LINUX_HELPERS, 1, [special arm linux implementation])
186 need_libatomic_ops=no
189 AC_MSG_CHECKING([compiler support for arm inline asm atomic operations])
190 AC_LANG_CONFTEST([[int main()
194 asm volatile ("ldrex %0, [%1]\n"
196 "strexeq %0, %3, [%1]\n"
198 : "r" (&a), "Ir" (o), "r" (n)
200 return (a==1 ? 0 : -1);
202 $CC conftest.c $CFLAGS -o conftest > /dev/null 2>&1
204 rm -f conftest.o conftest
205 if test $ret -eq 0 ; then
206 AC_DEFINE([ATOMIC_ARM_INLINE_ASM], 1, [Have ARMv6 instructions.])
208 need_libatomic_ops=no
215 AC_MSG_RESULT([unknown])
220 AC_MSG_CHECKING([whether $CC knows __thread])
221 AC_LANG_CONFTEST([static __thread int a = 6; int main() { a = 5; }])
222 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
224 rm -f conftest.o conftest
225 if test $ret -eq 0 ; then
226 AC_DEFINE([HAVE_TLS_BUILTIN], 1, [Have __thread().])
232 AC_MSG_CHECKING([whether $CC knows _Bool])
233 AC_LANG_CONFTEST([int main() { _Bool b; }])
234 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
236 rm -f conftest.o conftest
237 if test $ret -eq 0 ; then
238 AC_DEFINE([HAVE_STD_BOOL], 1, [Have _Bool.])
244 #### libtool stuff ####
246 AC_LTDL_ENABLE_INSTALL
247 AC_LIBLTDL_INSTALLABLE
253 AC_CONFIG_SUBDIRS(libltdl)
256 LIBS="$LIBS $LIBLTDL"
257 AC_CHECK_FUNCS([lt_dlmutex_register])
259 AC_CHECK_TYPES([struct lt_user_dlloader, lt_dladvise], , , [#include <ltdl.h>])
261 if test "x$enable_ltdl_install" = "xno" && test "x$ac_cv_lib_ltdl_lt_dlinit" = "xno" ; then
264 *** Cannot find the libltdl development files.
265 *** Maybe you need to install the libltdl-dev package.
269 #### Determine build environment ####
275 AC_DEFINE([OS_IS_WIN32], 1, [Build target is Windows.])
280 AM_CONDITIONAL(OS_IS_WIN32, test "x$os_is_win32" = "x1")
282 ###################################
283 # Basic environment checks #
284 ###################################
286 #### Checks for header files. ####
292 AC_CHECK_HEADERS([arpa/inet.h glob.h grp.h netdb.h netinet/in.h \
293 netinet/in_systm.h netinet/tcp.h poll.h pwd.h sched.h \
294 sys/mman.h sys/resource.h sys/select.h sys/socket.h sys/wait.h \
295 syslog.h sys/dl.h dlfcn.h linux/sockios.h])
296 AC_CHECK_HEADERS([netinet/ip.h], [], [],
297 [#include <sys/types.h>
298 #if HAVE_NETINET_IN_H
299 # include <netinet/in.h>
301 #if HAVE_NETINET_IN_SYSTM_H
302 # include <netinet/in_systm.h>
305 AC_CHECK_HEADERS([regex.h], [HAVE_REGEX=1], [HAVE_REGEX=0])
306 AC_CHECK_HEADERS([sys/un.h], [HAVE_AF_UNIX=1], [HAVE_AF_UNIX=0])
308 AM_CONDITIONAL(HAVE_REGEX, test "x$HAVE_REGEX" = "x1")
309 AM_CONDITIONAL(HAVE_AF_UNIX, test "x$HAVE_AF_UNIX" = "x1")
312 AC_CHECK_HEADERS([linux/input.h], [HAVE_EVDEV=1], [HAVE_EVDEV=0])
314 AM_CONDITIONAL([HAVE_EVDEV], [test "x$HAVE_EVDEV" = "x1"])
316 AC_CHECK_HEADERS([sys/prctl.h])
319 AC_CHECK_HEADERS([sys/filio.h])
322 AC_CHECK_HEADERS([windows.h winsock2.h ws2tcpip.h])
325 AC_CHECK_HEADERS([sys/ioctl.h])
326 AC_CHECK_HEADERS([byteswap.h])
327 AC_CHECK_HEADERS([sys/syscall.h])
329 #### Typdefs, structures, etc. ####
335 AC_CHECK_TYPES(ssize_t, , [AC_DEFINE([ssize_t], [signed long],
336 [Define ssize_t if it is not done by the standard libs.])])
340 AC_CHECK_DECLS(environ)
342 AC_CHECK_DEFINE([SIGXCPU], [signal.h], [
344 AC_DEFINE([HAVE_SIGXCPU], 1, [Have SIGXCPU?])
346 AM_CONDITIONAL(HAVE_SIGXCPU, test "x$HAVE_SIGXCPU" = "x1")
349 AC_CHECK_DEFINE([INADDR_NONE], [netinet/in.h], [],
350 [AC_CHECK_DEFINE([INADDR_NONE], [winsock2.h], [],
351 [AC_DEFINE([INADDR_NONE], [0xffffffff], [Define INADDR_NONE if not found in <netinet/in.h>])])])
353 #### POSIX threads ####
357 #### Check for libs ####
360 AC_SEARCH_LIBS([pow], [m])
363 AC_SEARCH_LIBS([sched_setscheduler], [rt])
364 AC_SEARCH_LIBS([dlopen], [dl])
365 AC_SEARCH_LIBS([shm_open], [rt])
366 AC_SEARCH_LIBS([inet_ntop], [nsl])
367 AC_SEARCH_LIBS([timer_create], [rt])
370 AC_SEARCH_LIBS([connect], [socket])
374 # This magic is needed so we do not needlessly add static libs to the win32
375 # build, disabling its ability to make dlls.
376 AC_CHECK_FUNCS([getopt_long], [], [AC_CHECK_LIB([iberty], [getopt_long])])
378 AC_CHECK_LIB(gdbm, gdbm_open)
379 AC_CHECK_HEADERS(gdbm.h)
381 #### Check for functions ####
384 AC_CHECK_FUNCS([lrintf strtof])
389 AC_FUNC_SELECT_ARGTYPES
390 AC_CHECK_FUNCS([chmod chown clock_gettime getaddrinfo getgrgid_r \
391 getpwuid_r gettimeofday getuid inet_ntop inet_pton mlock nanosleep \
392 pipe posix_fadvise posix_madvise posix_memalign setpgid setsid shm_open \
393 sigaction sleep sysconf])
394 AC_CHECK_FUNCS([mkfifo], [HAVE_MKFIFO=1], [HAVE_MKFIFO=0])
396 AM_CONDITIONAL(HAVE_MKFIFO, test "x$HAVE_MKFIFO" = "x1")
399 AC_CHECK_FUNCS([readlink])
402 AC_CHECK_FUNCS([ctime_r usleep])
405 AC_CHECK_FUNCS([strerror_r])
408 AC_CHECK_FUNCS([lstat])
412 AC_CHECK_FUNCS([setresuid setresgid setreuid setregid seteuid setegid ppoll strsignal sig2str strtof_l])
414 AC_MSG_CHECKING([for PTHREAD_PRIO_INHERIT])
415 AC_LANG_CONFTEST([AC_LANG_SOURCE([[
417 int main() { int i = PTHREAD_PRIO_INHERIT; }]])])
418 $PTHREAD_CC conftest.c $PTHREAD_CFLAGS $CFLAGS $PTHREAD_LIBS -o conftest > /dev/null 2> /dev/null
420 rm -f conftest.o conftest
422 if test $ret -eq 0 ; then
423 AC_DEFINE([HAVE_PTHREAD_PRIO_INHERIT], 1, [Have PTHREAD_PRIO_INHERIT.])
429 #### Large File-Support (LFS) ####
433 # Check for open64 to know if the current system does have open64() and similar functions
434 AC_CHECK_FUNCS([open64])
440 ###################################
441 # External libraries #
442 ###################################
444 #### X11 (optional) ####
448 # The macro tests the host, not the build target
449 if test "x$os_is_win32" != "x1" ; then
451 test "x$no_x" != "xyes" && HAVE_X11=1
455 AM_CONDITIONAL(HAVE_X11, test "x$HAVE_X11" = "x1")
456 if test "x$HAVE_X11" = "x1" ; then
457 AC_DEFINE([HAVE_X11], 1, [Have X11])
460 #### Capabilities (optional) ####
466 AC_HELP_STRING([--without-caps],[Omit support for POSIX capabilities.]))
468 if test "x${with_caps}" != "xno"; then
469 AC_SEARCH_LIBS([cap_init], [cap], [], [
470 if test "x${with_caps}" = "xyes" ; then
471 AC_MSG_ERROR([*** POSIX caps libraries not found])
473 AC_CHECK_HEADERS([sys/capability.h], [], [
474 if test "x${with_caps}" = "xyes" ; then
475 AC_MSG_ERROR([*** POSIX caps headers not found])
481 # Check for pkg-config manually first, as if its not installed the
482 # PKG_PROG_PKG_CONFIG macro won't be defined.
483 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
485 if test x"$have_pkg_config" = "xno"; then
486 AC_MSG_ERROR(pkg-config is required to install this program)
493 PKG_CHECK_MODULES(LIBSNDFILE, [ sndfile >= 1.0.10 ])
494 AC_SUBST(LIBSNDFILE_CFLAGS)
495 AC_SUBST(LIBSNDFILE_LIBS)
499 AC_MSG_CHECKING([whether we need libatomic_ops])
500 if test "x$need_libatomic_ops" = "xyes"; then
502 AC_CHECK_HEADERS([atomic_ops.h], [], [
503 AC_MSG_ERROR([*** libatomic-ops headers not found])
506 # Win32 does not need the lib and breaks horribly if we try to include it
507 if test "x$os_is_win32" != "x1" ; then
508 LIBS="$LIBS -latomic_ops"
514 #### Libsamplerate support (optional) ####
516 AC_ARG_ENABLE([samplerate],
517 AC_HELP_STRING([--disable-samplerate], [Disable optional libsamplerate support]),
519 case "${enableval}" in
520 yes) samplerate=yes ;;
522 *) AC_MSG_ERROR(bad value ${enableval} for --disable-samplerate) ;;
527 if test "x${samplerate}" != xno ; then
528 PKG_CHECK_MODULES(LIBSAMPLERATE, [ samplerate >= 0.1.0 ],
529 HAVE_LIBSAMPLERATE=1,
532 if test "x$samplerate" = xyes ; then
533 AC_MSG_ERROR([*** Libsamplerate not found])
540 if test "x${HAVE_LIBSAMPLERATE}" = x1 ; then
541 AC_DEFINE([HAVE_LIBSAMPLERATE], 1, [Have libsamplerate?])
544 AC_SUBST(LIBSAMPLERATE_CFLAGS)
545 AC_SUBST(LIBSAMPLERATE_LIBS)
546 AC_SUBST(HAVE_LIBSAMPLERATE)
547 AM_CONDITIONAL([HAVE_LIBSAMPLERATE], [test "x$HAVE_LIBSAMPLERATE" = x1])
549 #### OSS support (optional) ####
552 AC_HELP_STRING([--disable-oss], [Disable optional OSS support]),
554 case "${enableval}" in
557 *) AC_MSG_ERROR(bad value ${enableval} for --disable-oss) ;;
562 if test "x${oss}" != xno ; then
563 AC_CHECK_HEADERS([sys/soundcard.h],
566 AC_DEFINE([HAVE_OSS], 1, [Have OSS?])
570 if test "x$oss" = xyes ; then
571 AC_MSG_ERROR([*** OSS support not found])
579 AM_CONDITIONAL([HAVE_OSS], [test "x$HAVE_OSS" = x1])
582 #### ALSA support (optional) ####
584 AC_ARG_ENABLE([alsa],
585 AC_HELP_STRING([--disable-alsa], [Disable optional ALSA support]),
587 case "${enableval}" in
590 *) AC_MSG_ERROR(bad value ${enableval} for --disable-alsa) ;;
595 if test "x${alsa}" != xno ; then
596 PKG_CHECK_MODULES(ASOUNDLIB, [ alsa >= 1.0.16 ],
599 AC_DEFINE([HAVE_ALSA], 1, [Have ALSA?])
603 if test "x$alsa" = xyes ; then
604 AC_MSG_ERROR([*** ALSA support not found])
611 AC_SUBST(ASOUNDLIB_CFLAGS)
612 AC_SUBST(ASOUNDLIB_LIBS)
614 AM_CONDITIONAL([HAVE_ALSA], [test "x$HAVE_ALSA" = x1])
616 #### Solaris audio support (optional) ####
618 AC_ARG_ENABLE([solaris],
619 AC_HELP_STRING([--disable-solaris], [Disable optional Solaris audio support]),
621 case "${enableval}" in
624 *) AC_MSG_ERROR(bad value ${enableval} for --disable-solaris) ;;
629 if test "x${solaris}" != xno ; then
630 AC_CHECK_HEADERS([sys/audio.h],
633 AC_DEFINE([HAVE_SOLARIS], 1, [Have Solaris audio?])
637 if test "x$solaris" = xyes ; then
638 AC_MSG_ERROR([*** Solaris audio support not found])
645 AC_SUBST(HAVE_SOLARIS)
646 AM_CONDITIONAL([HAVE_SOLARIS], [test "x$HAVE_SOLARIS" = x1])
648 #### GLib 2 support (optional) ####
650 AC_ARG_ENABLE([glib2],
651 AC_HELP_STRING([--disable-glib2], [Disable optional GLib 2 support]),
653 case "${enableval}" in
656 *) AC_MSG_ERROR(bad value ${enableval} for --disable-glib2) ;;
661 if test "x${glib2}" != xno ; then
662 PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ],
666 if test "x$glib2" = xyes ; then
667 AC_MSG_ERROR([*** GLib 2 support not found])
674 AC_SUBST(GLIB20_CFLAGS)
675 AC_SUBST(GLIB20_LIBS)
676 AC_SUBST(HAVE_GLIB20)
677 AM_CONDITIONAL([HAVE_GLIB20], [test "x$HAVE_GLIB20" = x1])
679 #### GConf support (optional) ####
681 AC_ARG_ENABLE([gconf],
682 AC_HELP_STRING([--disable-gconf], [Disable optional GConf support]),
684 case "${enableval}" in
687 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gconf) ;;
692 if test "x${gconf}" != xno ; then
693 PKG_CHECK_MODULES(GCONF, [ gconf-2.0 >= 2.4.0 ],
697 if test "x$gconf" = xyes ; then
698 AC_MSG_ERROR([*** GConf support not found])
705 AC_SUBST(GCONF_CFLAGS)
708 AM_CONDITIONAL([HAVE_GCONF], [test "x$HAVE_GCONF" = x1])
710 #### Avahi support (optional) ####
712 AC_ARG_ENABLE([avahi],
713 AC_HELP_STRING([--disable-avahi], [Disable optional Avahi support]),
715 case "${enableval}" in
718 *) AC_MSG_ERROR(bad value ${enableval} for --disable-avahi) ;;
723 if test "x${avahi}" != xno ; then
724 PKG_CHECK_MODULES(AVAHI, [ avahi-client >= 0.6.0 ],
728 if test "x$avahi" = xyes ; then
729 AC_MSG_ERROR([*** Avahi support not found])
736 AC_SUBST(AVAHI_CFLAGS)
739 AM_CONDITIONAL([HAVE_AVAHI], [test "x$HAVE_AVAHI" = x1])
743 PKG_CHECK_MODULES(LIBOIL, [ liboil-0.3 >= 0.3.0 ])
744 AC_SUBST(LIBOIL_CFLAGS)
745 AC_SUBST(LIBOIL_LIBS)
747 ### JACK (optional) ####
749 AC_ARG_ENABLE([jack],
750 AC_HELP_STRING([--disable-jack], [Disable optional JACK support]),
752 case "${enableval}" in
755 *) AC_MSG_ERROR(bad value ${enableval} for --disable-jack) ;;
760 if test "x${jack}" != xno ; then
761 PKG_CHECK_MODULES(JACK, [ jack >= 0.100 ],
765 if test "x$jack" = xyes ; then
766 AC_MSG_ERROR([*** JACK support not found])
773 AC_SUBST(JACK_CFLAGS)
776 AM_CONDITIONAL([HAVE_JACK], [test "x$HAVE_JACK" = x1])
778 #### Async DNS support (optional) ####
780 AC_ARG_ENABLE([asyncns],
781 AC_HELP_STRING([--disable-asyncns], [Disable optional Async DNS support]),
783 case "${enableval}" in
786 *) AC_MSG_ERROR(bad value ${enableval} for --disable-asyncns) ;;
791 if test "x${asyncns}" != xno ; then
792 PKG_CHECK_MODULES(LIBASYNCNS, [ libasyncns >= 0.1 ],
796 if test "x$asyncns" = xyes ; then
797 AC_MSG_ERROR([*** Async DNS support not found])
804 AC_SUBST(LIBASYNCNS_CFLAGS)
805 AC_SUBST(LIBASYNCNS_LIBS)
806 AC_SUBST(HAVE_LIBASYNCNS)
807 AM_CONDITIONAL([HAVE_LIBASYNCNS], [test "x$HAVE_LIBASYNCNS" = x1])
809 if test "x$HAVE_LIBASYNCNS" != "x0" ; then
810 AC_DEFINE([HAVE_LIBASYNCNS], 1, [Have libasyncns?])
813 #### TCP wrappers (optional) ####
815 AC_ARG_ENABLE([tcpwrap],
816 AC_HELP_STRING([--disable-tcpwrap], [Disable optional TCP wrappers support]),
818 case "${enableval}" in
821 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
826 if test "x${tcpwrap}" != xno ; then
828 if test "x${LIBWRAP_LIBS}" = x && test "x$tcpwrap" = xyes ; then
829 AC_MSG_ERROR([*** TCP wrappers support not found])
835 AC_SUBST(LIBWRAP_LIBS)
837 #### LIRC support (optional) ####
839 AC_ARG_ENABLE([lirc],
840 AC_HELP_STRING([--disable-lirc], [Disable optional LIRC support]),
842 case "${enableval}" in
845 *) AC_MSG_ERROR(bad value ${enableval} for --disable-lirc) ;;
850 if test "x${lirc}" != xno ; then
852 if test "x${HAVE_LIRC}" = x0 && test "x$lirc" = xyes ; then
853 AC_MSG_ERROR([*** LIRC support not found])
859 AC_SUBST(LIRC_CFLAGS)
861 AM_CONDITIONAL([HAVE_LIRC], [test "x$HAVE_LIRC" = x1])
863 #### HAL support (optional) ####
866 AC_HELP_STRING([--disable-hal], [Disable optional HAL support]),
868 case "${enableval}" in
871 *) AC_MSG_ERROR(bad value ${enableval} for --disable-hal) ;;
875 if test "x${hal}" != xno -a \( "x$HAVE_OSS" = "x1" -o "x$HAVE_ALSA" = "x1" \) ; then
876 PKG_CHECK_MODULES(HAL, [ hal >= 0.5.7 ],
880 if test "x$hal" = xyes ; then
881 AC_MSG_ERROR([*** HAL support not found])
891 AM_CONDITIONAL([HAVE_HAL], [test "x$HAVE_HAL" = x1])
893 #### BlueZ support (optional) ####
895 AC_ARG_ENABLE([bluez],
896 AC_HELP_STRING([--disable-bluez], [Disable optional BlueZ support]),
898 case "${enableval}" in
901 *) AC_MSG_ERROR(bad value ${enableval} for --disable-bluez) ;;
905 if test "x${bluez}" != xno ; then
906 PKG_CHECK_MODULES(BLUEZ, [ bluez >= 3.0 ],
910 if test "x$bluez" = xyes ; then
911 AC_MSG_ERROR([*** BLUEZ support not found])
918 AC_SUBST(BLUEZ_CFLAGS)
921 AM_CONDITIONAL([HAVE_BLUEZ], [test "x$HAVE_BLUEZ" = x1])
923 #### D-Bus support (optional) ####
925 AC_ARG_ENABLE([dbus],
926 AC_HELP_STRING([--disable-dbus], [Disable optional D-Bus support]),
928 case "${enableval}" in
931 *) AC_MSG_ERROR(bad value ${enableval} for --disable-dbus) ;;
936 if test "x$HAVE_HAL" = x1 ; then
940 if test "x${dbus}" != xno || test "x${bluez}" != xno || "x${hal}" != xno ; then
942 PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 1.0.0 ],
946 LIBS="$LIBS $DBUS_LIBS"
947 AC_CHECK_FUNCS(dbus_watch_get_unix_fd)
949 AC_DEFINE([HAVE_DBUS], 1, [Have D-Bus.])
953 if test "x$dbus" = xyes ; then
954 AC_MSG_ERROR([*** D-Bus support not found])
961 AC_SUBST(DBUS_CFLAGS)
964 AM_CONDITIONAL([HAVE_DBUS], [test "x$HAVE_DBUS" = x1])
966 #### PolicyKit support (optional) ####
968 AC_ARG_ENABLE([polkit],
969 AC_HELP_STRING([--disable-polkit], [Disable optional PolicyKit support]),
971 case "${enableval}" in
974 *) AC_MSG_ERROR(bad value ${enableval} for --disable-polkit) ;;
979 if test "x${polkit}" != xno ; then
981 PKG_CHECK_MODULES(POLKIT, [ polkit-dbus >= 0.7 ],
984 AC_DEFINE([HAVE_POLKIT], 1, [Have PolicyKit])
985 policydir=`pkg-config polkit-dbus --variable prefix`/share/PolicyKit/policy/
990 if test "x$polkit" = xyes ; then
991 AC_MSG_ERROR([*** PolicyKit support not found])
998 AC_SUBST(POLKIT_CFLAGS)
999 AC_SUBST(POLKIT_LIBS)
1000 AC_SUBST(HAVE_POLKIT)
1001 AM_CONDITIONAL([HAVE_POLKIT], [test "x$HAVE_POLKIT" = x1])
1003 ### Build and Install man pages ###
1004 AC_ARG_ENABLE(manpages,
1005 AS_HELP_STRING([--disable-manpages],[Disable building and installation of man pages]),
1006 [case "${enableval}" in
1007 yes) manpages=yes ;;
1009 *) AC_MSG_ERROR([bad value ${enableval} for --disable-manpages]) ;;
1010 esac],[manpages=yes])
1012 if test x$manpages = xyes ; then
1014 # XMLTOMAN manpage generation
1016 AC_ARG_ENABLE(xmltoman,
1017 AS_HELP_STRING([--disable-xmltoman],[Enable rebuilding of man pages with xmltoman]),
1018 [case "${enableval}" in
1019 yes) xmltoman=yes ;;
1021 *) AC_MSG_ERROR([bad value ${enableval} for --disable-xmltoman]) ;;
1022 esac],[xmltoman=yes])
1024 if test x$xmltoman = xyes ; then
1025 AC_CHECK_PROG(have_xmltoman, xmltoman, yes, no)
1028 if test x$have_xmltoman = xno -o x$xmltoman = xno; then
1029 if ! test -e man/pulseaudio.1 ; then
1030 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])
1033 AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***])
1037 AM_CONDITIONAL([USE_XMLTOMAN], [test "x$xmltoman" = xyes])
1038 AM_CONDITIONAL([BUILD_MANPAGES], [test "x$manpages" = xyes])
1040 #### PulseAudio system group & user #####
1042 AC_ARG_WITH(system_user, AS_HELP_STRING([--with-system-user=<user>],[User for running the PulseAudio daemon as a system-wide instance (pulse)]))
1043 if test -z "$with_system_user" ; then
1044 PA_SYSTEM_USER=pulse
1046 PA_SYSTEM_USER=$with_system_user
1048 AC_SUBST(PA_SYSTEM_USER)
1049 AC_DEFINE_UNQUOTED(PA_SYSTEM_USER,"$PA_SYSTEM_USER", [User for running the PulseAudio system daemon])
1051 AC_ARG_WITH(system_group,AS_HELP_STRING([--with-system-group=<group>],[Group for running the PulseAudio daemon as a system-wide instance (pulse)]))
1052 if test -z "$with_system_group" ; then
1053 PA_SYSTEM_GROUP=pulse
1055 PA_SYSTEM_GROUP=$with_system_group
1057 AC_SUBST(PA_SYSTEM_GROUP)
1058 AC_DEFINE_UNQUOTED(PA_SYSTEM_GROUP,"$PA_SYSTEM_GROUP", [Group for the PulseAudio system daemon])
1060 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)]))
1061 if test -z "$with_realtime_group" ; then
1062 PA_REALTIME_GROUP=pulse-rt
1064 PA_REALTIME_GROUP=$with_realtime_group
1066 AC_SUBST(PA_REALTIME_GROUP)
1067 AC_DEFINE_UNQUOTED(PA_REALTIME_GROUP,"$PA_REALTIME_GROUP", [Realtime group])
1069 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)]))
1070 if test -z "$with_access_group" ; then
1071 PA_ACCESS_GROUP=pulse-access
1073 PA_ACCESS_GROUP=$with_access_group
1075 AC_SUBST(PA_ACCESS_GROUP)
1076 AC_DEFINE_UNQUOTED(PA_ACCESS_GROUP,"$PA_ACCESS_GROUP", [Access group])
1079 per_user_esound_socket,
1080 AS_HELP_STRING([--disable-per-user-esound-socket], [Use global esound socket directory /tmp/.esd/socket.]),
1082 case "${enableval}" in
1083 yes) per_user_esound_socket=1 ;;
1084 no) per_user_esound_socket=0 ;;
1085 *) AC_MSG_ERROR(bad value ${enableval} for --disable-per-user-esound-socket) ;;
1088 [per_user_esound_socket=1])
1090 if test "x$per_user_esound_socket" = "x1"; then
1091 AC_DEFINE([USE_PER_USER_ESOUND_SOCKET], [1], [Define this if you want per-user esound socket directories])
1094 #### PulseAudio system runtime dir ####
1095 PA_SYSTEM_RUNTIME_PATH="${localstatedir}/run/pulse"
1096 AC_SUBST(PA_SYSTEM_RUNTIME_PATH)
1097 PA_SYSTEM_CONFIG_PATH="${localstatedir}/lib/pulse"
1098 AC_SUBST(PA_SYSTEM_CONFIG_PATH)
1099 PA_SYSTEM_STATE_PATH="${localstatedir}/lib/pulse"
1100 AC_SUBST(PA_SYSTEM_STATE_PATH)
1102 ###################################
1104 ###################################
1108 AC_HELP_STRING([--enable-static-bins],[Statically link executables.]),
1109 [STATIC_BINS=1], [STATIC_BINS=0])
1110 AM_CONDITIONAL([STATIC_BINS], [test "x$STATIC_BINS" = "x1"])
1114 AC_HELP_STRING([--with-preopen-mods],[Modules to preopen in daemon (default: all).]),
1115 [PREOPEN_MODS=$withval], [PREOPEN_MODS="all"])
1116 AM_CONDITIONAL([PREOPEN_MODS], [test "x$PREOPEN_MODS" != "xall"])
1117 if test "x$PREOPEN_MODS" != "xall" ; then
1119 for mod in $PREOPEN_MODS; do
1120 tmpLIBS="$tmpLIBS module-$mod.la"
1122 PREOPEN_MODS="$tmpLIBS"
1123 AC_SUBST(PREOPEN_MODS)
1128 AC_HELP_STRING([--with-module-dir],[Directory where to install the modules to (defaults to ${libdir}/pulse-${PA_MAJORMINOR}/modules/]),
1129 [modlibexecdir=$withval], [modlibexecdir="${libdir}/pulse-${PA_MAJORMINOR}/modules/"])
1131 AC_SUBST(modlibexecdir)
1135 AC_HELP_STRING([--enable-force-preopen],[Preopen modules, even when dlopen() is supported.]),
1136 [FORCE_PREOPEN=1], [FORCE_PREOPEN=0])
1137 AM_CONDITIONAL([FORCE_PREOPEN], [test "x$FORCE_PREOPEN" = "x1"])
1146 libpulse-mainloop-glib.pc
1148 doxygen/doxygen.conf
1153 # ==========================================================================
1155 if test "x$HAVE_X11" = "x1" ; then
1160 if test "x$HAVE_OSS" = "x1" ; then
1165 if test "x$HAVE_ALSA" = "x1" ; then
1170 if test "x$HAVE_SOLARIS" = "x1" ; then
1175 if test "x$HAVE_GLIB20" = "x1" ; then
1180 if test "x$HAVE_GCONF" = "x1" ; then
1185 if test "x$HAVE_AVAHI" = "x1" ; then
1190 if test "x$HAVE_JACK" = "x1" ; then
1194 ENABLE_LIBASYNCNS=no
1195 if test "x$HAVE_LIBASYNCNS" = "x1" ; then
1196 ENABLE_LIBASYNCNS=yes
1200 if test "x$HAVE_LIRC" = "x1" ; then
1205 if test "x$HAVE_HAL" = "x1" ; then
1210 if test "x${LIBWRAP_LIBS}" != x ; then
1214 ENABLE_LIBSAMPLERATE=no
1215 if test "x${HAVE_LIBSAMPLERATE}" = "x1" ; then
1216 ENABLE_LIBSAMPLERATE=yes
1220 if test "x${HAVE_BLUEZ}" = "x1" ; then
1225 if test "x${HAVE_POLKIT}" = "x1" ; then
1229 ENABLE_PER_USER_ESOUND_SOCKET=no
1230 if test "x$per_user_esound_socket" = "x1" ; then
1231 ENABLE_PER_USER_ESOUND_SOCKET=yes
1235 ---{ $PACKAGE_NAME $VERSION }---
1238 sysconfdir: ${sysconfdir}
1239 localstatedir: ${localstatedir}
1240 System Runtime Path: ${PA_SYSTEM_RUNTIME_PATH}
1241 System State Path: ${PA_SYSTEM_STATE_PATH}
1242 System Config Path: ${PA_SYSTEM_CONFIG_PATH}
1245 Have X11: ${ENABLE_X11}
1246 Enable OSS: ${ENABLE_OSS}
1247 Enable Alsa: ${ENABLE_ALSA}
1248 Enable Solaris: ${ENABLE_SOLARIS}
1249 Enable GLib 2.0: ${ENABLE_GLIB20}
1250 Enable GConf: ${ENABLE_GCONF}
1251 Enable Avahi: ${ENABLE_AVAHI}
1252 Enable Jack: ${ENABLE_JACK}
1253 Enable Async DNS: ${ENABLE_LIBASYNCNS}
1254 Enable LIRC: ${ENABLE_LIRC}
1255 Enable HAL: ${ENABLE_HAL}
1256 Enable BlueZ: ${ENABLE_BLUEZ}
1257 Enable TCP Wrappers: ${ENABLE_TCPWRAP}
1258 Enable libsamplerate: ${ENABLE_LIBSAMPLERATE}
1259 Enable PolicyKit: ${ENABLE_POLKIT}
1260 System User: ${PA_SYSTEM_USER}
1261 System Group: ${PA_SYSTEM_GROUP}
1262 Realtime Group: ${PA_REALTIME_GROUP}
1263 Access Group: ${PA_ACCESS_GROUP}
1264 Enable per-user EsounD socket: ${ENABLE_PER_USER_ESOUND_SOCKET}