add new property list implementation
[pulseaudio.git] / configure.ac
blobb061cbcd76c90484b93e1e9be547a9ec8cb3e786
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 # $Id$
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.
25 AC_PREREQ(2.57)
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])
63 AC_CANONICAL_HOST
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 ####
72 case $host in
73    *-*-solaris* )
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)
77       ;;
78 esac
80 #### Checks for programs. ####
82 # mkdir -p
84 AC_PROG_MKDIR_P
86 # CC
88 AC_PROG_CC
89 AM_PROG_CC_C_O
90 AC_PROG_GCC_TRADITIONAL
91 AC_GNU_SOURCE
93 # M4
95 AC_PATH_PROG([M4], [m4 gm4], [no])
96 if test "x$M4" = xno ; then
97    AC_MSG_ERROR([m4 missing])
100 # GCC flags
102 test_gcc_flag() {
103     AC_LANG_CONFTEST([int main(int argc, char*argv[]) {}])
104     $CC -c conftest.c $CFLAGS -o conftest.o > /dev/null 2> /dev/null
105     ret=$?
106     rm -f conftest.o
107     return $ret
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"
121            AC_MSG_RESULT([yes])
122         else
123            AC_MSG_RESULT([no])
124         fi
125     done
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
131 ret=$?
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.])
135     AC_MSG_RESULT([yes])
136 else
137     AC_MSG_RESULT([no])
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
143 ret=$?
144 rm -f conftest.o conftest
145 if test $ret -eq 0 ; then
146     AC_DEFINE([HAVE_TLS_BUILTIN], 1, [Have __thread().])
147     AC_MSG_RESULT([yes])
148 else
149     AC_MSG_RESULT([no])
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
155 ret=$?
156 rm -f conftest.o conftest
157 if test $ret -eq 0 ; then
158     AC_DEFINE([HAVE_STD_BOOL], 1, [Have _Bool.])
159     AC_MSG_RESULT([yes])
160 else
161     AC_MSG_RESULT([no])
164 #### libtool stuff ####
166 AC_LTDL_ENABLE_INSTALL
167 AC_LIBLTDL_INSTALLABLE
168 AC_LIBTOOL_DLOPEN
169 AC_LIBTOOL_WIN32_DLL
170 AC_PROG_LIBTOOL
171 AC_SUBST(LTDLINCL)
172 AC_SUBST(LIBLTDL)
173 AC_CONFIG_SUBDIRS(libltdl)
175 if test "x$enable_ltdl_install" = "xno" && test "x$ac_cv_lib_ltdl_lt_dlinit" = "xno" ; then
176     AC_MSG_ERROR([[
178         *** Cannot find the libltdl development files.
179         *** Maybe you need to install the libltdl-dev package.
180         ]])
183 #### Determine build environment ####
185 os_is_win32=0
187 case "$host_os" in
188         mingw*)
189         AC_DEFINE([OS_IS_WIN32], 1, [Build target is Windows.])
190         os_is_win32=1
191                 ;;
192         esac
194 AM_CONDITIONAL(OS_IS_WIN32, test "x$os_is_win32" = "x1")
196 ###################################
197 #   Basic environment checks      #
198 ###################################
200 #### Checks for header files. ####
202 # ISO
203 AC_HEADER_STDC
205 # POSIX
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>
214                   #endif
215                   #if HAVE_NETINET_IN_SYSTM_H
216                   # include <netinet/in_systm.h>
217                   #endif
218                  ])
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")
225 # Linux
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])
232 # Solaris
233 AC_CHECK_HEADERS([sys/filio.h])
235 # Windows
236 AC_CHECK_HEADERS([windows.h winsock2.h ws2tcpip.h])
238 # Other
239 AC_CHECK_HEADERS([sys/ioctl.h])
240 AC_CHECK_HEADERS([byteswap.h])
241 AC_CHECK_HEADERS([sys/syscall.h])
243 #### Typdefs, structures, etc. ####
245 AC_C_CONST
246 AC_C_BIGENDIAN
247 AC_TYPE_PID_T
248 AC_TYPE_SIZE_T
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.])])
251 AC_TYPE_OFF_T
252 AC_TYPE_SIGNAL
253 AC_TYPE_UID_T
255 AC_CHECK_DEFINE([SIGXCPU], [signal.h], [
256 HAVE_SIGXCPU=1
257 AC_DEFINE([HAVE_SIGXCPU], 1, [Have SIGXCPU?])
258 ], [HAVE_SIGXCPU=0])
259 AM_CONDITIONAL(HAVE_SIGXCPU, test "x$HAVE_SIGXCPU" = "x1")
261 # Solaris lacks this
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 ####
268 ACX_PTHREAD
270 #### Check for libs ####
272 # ISO
273 AC_SEARCH_LIBS([pow], [m])
275 # POSIX
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])
281 # BSD
282 AC_SEARCH_LIBS([connect], [socket])
284 # Non-standard
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 ####
292 # ISO
293 AC_CHECK_FUNCS([lrintf strtof])
295 # POSIX
296 AC_FUNC_FORK
297 AC_FUNC_GETGROUPS
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")
307 # X/OPEN
308 AC_CHECK_FUNCS([readlink])
310 # SUSv2
311 AC_CHECK_FUNCS([ctime_r usleep])
313 # SUSv3
314 AC_CHECK_FUNCS([strerror_r])
316 # BSD
317 AC_CHECK_FUNCS([lstat])
319 # Non-standard
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([[
325 #include <pthread.h>
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
328 ret=$?
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.])
333     AC_MSG_RESULT([yes])
334 else
335     AC_MSG_RESULT([no])
338 #### Large File-Support (LFS) ####
340 AC_SYS_LARGEFILE
342 # Check for open64 to know if the current system does have open64() and similar functions
343 AC_CHECK_FUNCS([open64])
345 #### [lib]iconv ####
347 AM_ICONV
349 ###################################
350 #      External libraries         #
351 ###################################
353 #### X11 (optional) ####
355 HAVE_X11=0
357 # The macro tests the host, not the build target
358 if test "x$os_is_win32" != "x1" ; then
359     AC_PATH_XTRA
360     test "x$no_x" != "xyes" && HAVE_X11=1
363 AC_SUBST(HAVE_X11)
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) ####
371 CAP_LIBS=''
373 AC_ARG_WITH(
374         [caps],
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])
381                     fi])
382     AC_CHECK_HEADERS([sys/capability.h], [], [
383                     if test "x${with_caps}" = "xyes" ; then
384                         AC_MSG_ERROR([*** POSIX caps headers not found])
385                     fi])
388 #### pkg-config ####
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)
398 PKG_PROG_PKG_CONFIG
400 #### Sound file ####
402 PKG_CHECK_MODULES(LIBSNDFILE, [ sndfile >= 1.0.10 ])
403 AC_SUBST(LIBSNDFILE_CFLAGS)
404 AC_SUBST(LIBSNDFILE_LIBS)
406 #### atomic-ops ###
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]),
421         [
422             case "${enableval}" in
423                 yes) samplerate=yes ;;
424                 no) samplerate=no ;;
425                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-samplerate) ;;
426             esac
427         ],
428         [samplerate=auto])
430 if test "x${samplerate}" != xno ; then
431     PKG_CHECK_MODULES(LIBSAMPLERATE, [ samplerate >= 0.1.0 ],
432         HAVE_LIBSAMPLERATE=1,
433         [
434             HAVE_LIBSAMPLERATE=0
435             if test "x$samplerate" = xyes ; then
436                 AC_MSG_ERROR([*** Libsamplerate not found])
437             fi
438         ])
439 else
440     HAVE_LIBSAMPLERATE=0
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) ####
454 AC_ARG_ENABLE([oss],
455     AC_HELP_STRING([--disable-oss], [Disable optional OSS support]),
456         [
457             case "${enableval}" in
458                 yes) oss=yes ;;
459                 no) oss=no ;;
460                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-oss) ;;
461             esac
462         ],
463         [oss=auto])
465 if test "x${oss}" != xno ; then
466     AC_CHECK_HEADERS([sys/soundcard.h],
467         [
468             HAVE_OSS=1
469             AC_DEFINE([HAVE_OSS], 1, [Have OSS?])
470         ],
471         [
472             HAVE_OSS=0
473             if test "x$oss" = xyes ; then
474                 AC_MSG_ERROR([*** OSS support not found])
475             fi
476         ])
477 else
478     HAVE_OSS=0
481 AC_SUBST(HAVE_OSS)
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]),
489         [
490             case "${enableval}" in
491                 yes) alsa=yes ;;
492                 no) alsa=no ;;
493                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-alsa) ;;
494             esac
495         ],
496         [alsa=auto])
498 if test "x${alsa}" != xno ; then
499     PKG_CHECK_MODULES(ASOUNDLIB, [ alsa >= 1.0.0 ],
500         [
501             HAVE_ALSA=1
502             AC_DEFINE([HAVE_ALSA], 1, [Have ALSA?])
503         ],
504         [
505             HAVE_ALSA=0
506             if test "x$alsa" = xyes ; then
507                 AC_MSG_ERROR([*** ALSA support not found])
508             fi
509         ])
510 else
511     HAVE_ALSA=0
514 AC_SUBST(ASOUNDLIB_CFLAGS)
515 AC_SUBST(ASOUNDLIB_LIBS)
516 AC_SUBST(HAVE_ALSA)
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]),
523         [
524             case "${enableval}" in
525                 yes) solaris=yes ;;
526                 no) solaris=no ;;
527                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-solaris) ;;
528             esac
529         ],
530         [solaris=auto])
532 if test "x${solaris}" != xno ; then
533     AC_CHECK_HEADERS([sys/audio.h],
534         [
535             HAVE_SOLARIS=1
536             AC_DEFINE([HAVE_SOLARIS], 1, [Have Solaris audio?])
537         ],
538         [
539             HAVE_SOLARIS=0
540             if test "x$solaris" = xyes ; then
541                 AC_MSG_ERROR([*** Solaris audio support not found])
542             fi
543         ])
544 else
545     HAVE_SOLARIS=0
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]),
555         [
556             case "${enableval}" in
557                 yes) glib2=yes ;;
558                 no) glib2=no ;;
559                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-glib2) ;;
560             esac
561         ],
562         [glib2=auto])
564 if test "x${glib2}" != xno ; then
565     PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ],
566         HAVE_GLIB20=1,
567         [
568             HAVE_GLIB20=0
569             if test "x$glib2" = xyes ; then
570                 AC_MSG_ERROR([*** GLib 2 support not found])
571             fi
572         ])
573 else
574     HAVE_GLIB20=0
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]),
586         [
587             case "${enableval}" in
588                 yes) gconf=yes ;;
589                 no) gconf=no ;;
590                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gconf) ;;
591             esac
592         ],
593         [glib=auto])
595 if test "x${gconf}" != xno ; then
596     PKG_CHECK_MODULES(GCONF, [ gconf-2.0 >= 2.4.0 ],
597         HAVE_GCONF=1,
598         [
599             HAVE_GCONF=0
600             if test "x$gconf" = xyes ; then
601                 AC_MSG_ERROR([*** GConf support not found])
602             fi
603         ])
604 else
605     HAVE_GCONF=0
608 AC_SUBST(GCONF_CFLAGS)
609 AC_SUBST(GCONF_LIBS)
610 AC_SUBST(HAVE_GCONF)
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]),
617         [
618             case "${enableval}" in
619                 yes) avahi=yes ;;
620                 no) avahi=no ;;
621                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-avahi) ;;
622             esac
623         ],
624         [avahi=auto])
626 if test "x${avahi}" != xno ; then
627     PKG_CHECK_MODULES(AVAHI, [ avahi-client >= 0.6.0 ],
628         HAVE_AVAHI=1,
629         [
630                 HAVE_AVAHI=0
631                 if test "x$avahi" = xyes ; then
632                         AC_MSG_ERROR([*** Avahi support not found])
633                 fi
634         ])
635 else
636     HAVE_AVAHI=0
639 AC_SUBST(AVAHI_CFLAGS)
640 AC_SUBST(AVAHI_LIBS)
641 AC_SUBST(HAVE_AVAHI)
642 AM_CONDITIONAL([HAVE_AVAHI], [test "x$HAVE_AVAHI" = x1])
644 ### LIBOIL ####
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]),
654         [
655             case "${enableval}" in
656                 yes) jack=yes ;;
657                 no) jack=no ;;
658                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-jack) ;;
659             esac
660         ],
661         [jack=auto])
663 if test "x${jack}" != xno ; then
664     PKG_CHECK_MODULES(JACK, [ jack >= 0.100 ],
665         HAVE_JACK=1,
666         [
667             HAVE_JACK=0
668             if test "x$jack" = xyes ; then
669                 AC_MSG_ERROR([*** JACK support not found])
670             fi
671         ])
672 else
673     HAVE_JACK=0
676 AC_SUBST(JACK_CFLAGS)
677 AC_SUBST(JACK_LIBS)
678 AC_SUBST(HAVE_JACK)
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]),
685         [
686             case "${enableval}" in
687                 yes) asyncns=yes ;;
688                 no) asyncns=no ;;
689                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-asyncns) ;;
690             esac
691         ],
692         [asyncns=auto])
694 if test "x${asyncns}" != xno ; then
695     PKG_CHECK_MODULES(LIBASYNCNS, [ libasyncns >= 0.1 ],
696         HAVE_LIBASYNCNS=1,
697         [
698             HAVE_LIBASYNCNS=0
699             if test "x$asyncns" = xyes ; then
700                 AC_MSG_ERROR([*** Async DNS support not found])
701             fi
702         ])
703 else
704     HAVE_LIBASYNCNS=0
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]),
720         [
721             case "${enableval}" in
722                 yes) tcpwrap=yes ;;
723                 no) tcpwrap=no ;;
724                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
725             esac
726         ],
727         [tcpwrap=auto])
729 if test "x${tcpwrap}" != xno ; then
730     ACX_LIBWRAP
731     if test "x${LIBWRAP_LIBS}" = x && test "x$tcpwrap" = xyes ; then
732         AC_MSG_ERROR([*** TCP wrappers support not found])
733     fi
734 else
735     LIBWRAP_LIBS=
738 AC_SUBST(LIBWRAP_LIBS)
740 #### LIRC support (optional) ####
742 AC_ARG_ENABLE([lirc],
743     AC_HELP_STRING([--disable-lirc], [Disable optional LIRC support]),
744         [
745             case "${enableval}" in
746                 yes) lirc=yes ;;
747                 no) lirc=no ;;
748                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-lirc) ;;
749             esac
750         ],
751         [lirc=auto])
753 if test "x${lirc}" != xno ; then
754     ACX_LIRC
755     if test "x${HAVE_LIRC}" = x0 && test "x$lirc" = xyes ; then
756         AC_MSG_ERROR([*** LIRC support not found])
757     fi
758 else
759     HAVE_LIRC=0
762 AC_SUBST(LIRC_CFLAGS)
763 AC_SUBST(LIRC_LIBS)
764 AM_CONDITIONAL([HAVE_LIRC], [test "x$HAVE_LIRC" = x1])
766 #### HAL support (optional) ####
768 AC_ARG_ENABLE([hal],
769     AC_HELP_STRING([--disable-hal], [Disable optional HAL support]),
770         [
771             case "${enableval}" in
772                 yes) hal=yes ;;
773                 no) hal=no ;;
774                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-hal) ;;
775             esac
776         ],
777         [hal=auto])
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 ],
780         HAVE_HAL=1,
781         [
782             HAVE_HAL=0
783             if test "x$hal" = xyes ; then
784                 AC_MSG_ERROR([*** HAL support not found])
785             fi
786         ])
787 else
788     HAVE_HAL=0
791 AC_SUBST(HAL_CFLAGS)
792 AC_SUBST(HAL_LIBS)
793 AC_SUBST(HAVE_HAL)
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]),
800         [
801             case "${enableval}" in
802                 yes) bluez=yes ;;
803                 no) bluez=no ;;
804                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-bluez) ;;
805             esac
806         ],
807         [bluez=auto])
808 if test "x${bluez}" != xno ; then
809     PKG_CHECK_MODULES(BLUEZ, [ bluez >= 3.0 ],
810         HAVE_BLUEZ=1,
811         [
812             HAVE_BLUEZ=0
813             if test "x$bluez" = xyes ; then
814                 AC_MSG_ERROR([*** BLUEZ support not found])
815             fi
816         ])
817 else
818     HAVE_BLUEZ=0
821 AC_SUBST(BLUEZ_CFLAGS)
822 AC_SUBST(BLUEZ_LIBS)
823 AC_SUBST(HAVE_BLUEZ)
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]),
830         [
831             case "${enableval}" in
832                 yes) dbus=yes ;;
833                 no) dbus=no ;;
834                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-dbus) ;;
835             esac
836         ],
837         [dbus=auto])
839 if test "x$HAVE_HAL" = x1 ; then
840    dbus=yes
843 if test "x${dbus}" != xno || test "x${bluez}" != xno || "x${hal}" != xno ; then
845     PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 1.0.0 ],
846         [
847             HAVE_DBUS=1
848             saved_LIBS="$LIBS"
849             LIBS="$LIBS $DBUS_LIBS"
850             AC_CHECK_FUNCS(dbus_watch_get_unix_fd)
851             LIBS="$saved_LIBS"
852             AC_DEFINE([HAVE_DBUS], 1, [Have D-Bus.])
853         ],
854         [
855             HAVE_DBUS=0
856             if test "x$dbus" = xyes ; then
857                 AC_MSG_ERROR([*** D-Bus support not found])
858             fi
859         ])
860 else
861     HAVE_DBUS=0
864 AC_SUBST(DBUS_CFLAGS)
865 AC_SUBST(DBUS_LIBS)
866 AC_SUBST(HAVE_DBUS)
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]),
873         [
874             case "${enableval}" in
875                 yes) polkit=yes ;;
876                 no) polkit=no ;;
877                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-polkit) ;;
878             esac
879         ],
880         [polkit=auto])
882 if test "x${polkit}" != xno ; then
884     PKG_CHECK_MODULES(POLKIT, [ polkit-dbus ],
885         [
886             HAVE_POLKIT=1
887             saved_LIBS="$LIBS"
888             LIBS="$LIBS $POLKIT_LIBS"
889             AC_CHECK_FUNCS(polkit_context_is_caller_authorized)
890             LIBS="$saved_LIBS"
891             AC_DEFINE([HAVE_POLKIT], 1, [Have PolicyKit])
892             policydir=`pkg-config polkit-dbus --variable prefix`/share/PolicyKit/policy/
893             AC_SUBST(policydir)
894         ],
895         [
896             HAVE_POLKIT=0
897             if test "x$polkit" = xyes ; then
898                 AC_MSG_ERROR([*** PolicyKit support not found])
899             fi
900         ])
901 else
902     HAVE_POLKIT=0
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
914   yes) manpages=yes ;;
915   no)  manpages=no ;;
916   *) AC_MSG_ERROR([bad value ${enableval} for --disable-manpages]) ;;
917 esac],[manpages=yes])
919 if test x$manpages = xyes ; then
920     #
921     # XMLTOMAN manpage generation
922     #
923     AC_ARG_ENABLE(xmltoman,
924     AS_HELP_STRING([--disable-xmltoman],[Enable rebuilding of man pages with xmltoman]),
925     [case "${enableval}" in
926       yes) xmltoman=yes ;;
927       no)  xmltoman=no ;;
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)
933     fi
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])
938             exit 1
939         fi
940         AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***])
941         xmltoman=no
942     fi
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
951     PA_SYSTEM_USER=pulse
952 else
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
961 else
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
970 else
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
979 else
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 ###################################
996 #            Output               #
997 ###################################
999 AC_ARG_ENABLE(
1000         [static-bins],
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"])
1005 AC_ARG_WITH(
1006         [preopen-mods],
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
1011     tmpLIBS=""
1012     for mod in $PREOPEN_MODS; do
1013         tmpLIBS="$tmpLIBS module-$mod.la"
1014     done
1015     PREOPEN_MODS="$tmpLIBS"
1016     AC_SUBST(PREOPEN_MODS)
1019 AC_ARG_WITH(
1020         [module-dir],
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)
1026 AC_ARG_ENABLE(
1027         [force-preopen],
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"])
1032 AC_CONFIG_FILES([
1033 Makefile
1034 src/Makefile
1035 man/Makefile
1036 libpulse.pc
1037 libpulse-simple.pc
1038 libpulse-browse.pc
1039 libpulse-mainloop-glib.pc
1040 doxygen/Makefile
1041 doxygen/doxygen.conf
1042 src/pulse/version.h
1044 AC_OUTPUT
1046 # ==========================================================================
1047 ENABLE_X11=no
1048 if test "x$HAVE_X11" = "x1" ; then
1049    ENABLE_X11=yes
1052 ENABLE_OSS=no
1053 if test "x$HAVE_OSS" = "x1" ; then
1054    ENABLE_OSS=yes
1057 ENABLE_ALSA=no
1058 if test "x$HAVE_ALSA" = "x1" ; then
1059    ENABLE_ALSA=yes
1062 ENABLE_SOLARIS=no
1063 if test "x$HAVE_SOLARIS" = "x1" ; then
1064    ENABLE_SOLARIS=yes
1067 ENABLE_GLIB20=no
1068 if test "x$HAVE_GLIB20" = "x1" ; then
1069    ENABLE_GLIB20=yes
1072 ENABLE_GCONF=no
1073 if test "x$HAVE_GCONF" = "x1" ; then
1074    ENABLE_GCONF=yes
1077 ENABLE_AVAHI=no
1078 if test "x$HAVE_AVAHI" = "x1" ; then
1079    ENABLE_AVAHI=yes
1082 ENABLE_JACK=no
1083 if test "x$HAVE_JACK" = "x1" ; then
1084    ENABLE_JACK=yes
1087 ENABLE_LIBASYNCNS=no
1088 if test "x$HAVE_LIBASYNCNS" = "x1" ; then
1089    ENABLE_LIBASYNCNS=yes
1092 ENABLE_LIRC=no
1093 if test "x$HAVE_LIRC" = "x1" ; then
1094    ENABLE_LIRC=yes
1097 ENABLE_HAL=no
1098 if test "x$HAVE_HAL" = "x1" ; then
1099    ENABLE_HAL=yes
1102 ENABLE_TCPWRAP=no
1103 if test "x${LIBWRAP_LIBS}" != x ; then
1104    ENABLE_TCPWRAP=yes
1107 ENABLE_LIBSAMPLERATE=no
1108 if test "x${HAVE_LIBSAMPLERATE}" = "x1" ; then
1109    ENABLE_LIBSAMPLERATE=yes
1112 ENABLE_BLUEZ=no
1113 if test "x${HAVE_BLUEZ}" = "x1" ; then
1114    ENABLE_BLUEZ=yes
1117 ENABLE_POLKIT=no
1118 if test "x${HAVE_POLKIT}" = "x1" ; then
1119    ENABLE_POLKIT=yes
1122 echo "
1123  ---{ $PACKAGE_NAME $VERSION }---
1125     prefix:                 ${prefix}
1126     sysconfdir:             ${sysconfdir}
1127     localstatedir:          ${localstatedir}
1128     System Runtime Path:    ${PA_SYSTEM_RUNTIME_PATH}
1129     Compiler:               ${CC}
1130     CFLAGS:                 ${CFLAGS}
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}