pa_boolization
[pulseaudio.git] / configure.ac
blob07db98234d3d7b99529c19e29c9de49fc453518d
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, [7])
31 AC_INIT([pulseaudio], PA_MAJOR.PA_MINOR.PA_MICRO,[mzcbylcnhqvb (at) 0pointer (dot) de])
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, 10)
40 AC_SUBST(PA_PROTOCOL_VERSION, 11)
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, [3:0:3])
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, [4: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 # CC
84 AC_PROG_CC
85 AM_PROG_CC_C_O
86 AC_PROG_GCC_TRADITIONAL
87 AC_GNU_SOURCE
89 # M4
91 AC_PATH_PROG([M4], [m4 gm4], [no])
92 if test "x$M4" = xno ; then
93    AC_MSG_ERROR([m4 missing])
96 # GCC flags
98 test_gcc_flag() {
99     AC_LANG_CONFTEST([int main(int argc, char*argv[]) {}])
100     $CC -c conftest.c $CFLAGS -o conftest.o > /dev/null 2> /dev/null
101     ret=$?
102     rm -f conftest.o
103     return $ret
106 # If using GCC specify some additional parameters
107 if test "x$GCC" = "xyes" ; then
109     # We use gnu99 instead of c99 because many have interpreted the standard
110     # in a way that int64_t isn't defined on non-64 bit platforms.
111     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"
113     for flag in $DESIRED_FLAGS ; do
114         AC_MSG_CHECKING([whether $CC accepts $flag])
115         if test_gcc_flag $flag ; then
116            CFLAGS="$CFLAGS $flag"
117            AC_MSG_RESULT([yes])
118         else
119            AC_MSG_RESULT([no])
120         fi
121     done
124 AC_MSG_CHECKING([whether $CC knows __sync_bool_compare_and_swap()])
125 AC_LANG_CONFTEST([int main() { int a = 4; __sync_bool_compare_and_swap(&a, 4, 5); }])
126 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
127 ret=$?
128 rm -f conftest.o conftest
129 if test $ret -eq 0 ; then
130     AC_DEFINE([HAVE_ATOMIC_BUILTINS], 1, [Have __sync_bool_compare_and_swap() and friends.])
131     AC_MSG_RESULT([yes])
132 else
133     AC_MSG_RESULT([no])
136 AC_MSG_CHECKING([whether $CC knows __thread])
137 AC_LANG_CONFTEST([static __thread int a = 6; int main() { a = 5; }])
138 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
139 ret=$?
140 rm -f conftest.o conftest
141 if test $ret -eq 0 ; then
142     AC_DEFINE([HAVE_TLS_BUILTIN], 1, [Have __thread().])
143     AC_MSG_RESULT([yes])
144 else
145     AC_MSG_RESULT([no])
148 AC_MSG_CHECKING([whether $CC knows _Bool])
149 AC_LANG_CONFTEST([int main() { _Bool b; }])
150 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
151 ret=$?
152 rm -f conftest.o conftest
153 if test $ret -eq 0 ; then
154     AC_DEFINE([HAVE_STD_BOOL], 1, [Have _Bool.])
155     AC_MSG_RESULT([yes])
156 else
157     AC_MSG_RESULT([no])
160 #### libtool stuff ####
162 AC_LTDL_ENABLE_INSTALL
163 AC_LIBLTDL_INSTALLABLE
164 AC_LIBTOOL_DLOPEN
165 AC_LIBTOOL_WIN32_DLL
166 AC_PROG_LIBTOOL
167 AC_SUBST(LTDLINCL)
168 AC_SUBST(LIBLTDL)
169 AC_CONFIG_SUBDIRS(libltdl)
171 if test "x$enable_ltdl_install" = "xno" && test "x$ac_cv_lib_ltdl_lt_dlinit" = "xno" ; then
172     AC_MSG_ERROR([[
174         *** Cannot find the libltdl development files.
175         *** Maybe you need to install the libltdl-dev package.
176         ]])
179 #### Determine build environment ####
181 os_is_win32=0
183 case "$host_os" in
184         mingw*)
185         AC_DEFINE([OS_IS_WIN32], 1, [Build target is Windows.])
186         os_is_win32=1
187                 ;;
188         esac
190 AM_CONDITIONAL(OS_IS_WIN32, test "x$os_is_win32" = "x1")
192 ###################################
193 #   Basic environment checks      #
194 ###################################
196 #### Checks for header files. ####
198 # ISO
199 AC_HEADER_STDC
201 # POSIX
202 AC_CHECK_HEADERS([arpa/inet.h glob.h grp.h netdb.h netinet/in.h \
203     netinet/in_systm.h netinet/tcp.h poll.h pwd.h sched.h \
204     sys/mman.h sys/resource.h sys/select.h sys/socket.h sys/wait.h \
205     syslog.h sys/dl.h dlfcn.h linux/sockios.h])
206 AC_CHECK_HEADERS([netinet/ip.h], [], [],
207                  [#include <sys/types.h>
208                   #if HAVE_NETINET_IN_H
209                   # include <netinet/in.h>
210                   #endif
211                   #if HAVE_NETINET_IN_SYSTM_H
212                   # include <netinet/in_systm.h>
213                   #endif
214                  ])
215 AC_CHECK_HEADERS([regex.h], [HAVE_REGEX=1], [HAVE_REGEX=0])
216 AC_CHECK_HEADERS([sys/un.h], [HAVE_AF_UNIX=1], [HAVE_AF_UNIX=0])
218 AM_CONDITIONAL(HAVE_REGEX, test "x$HAVE_REGEX" = "x1")
219 AM_CONDITIONAL(HAVE_AF_UNIX, test "x$HAVE_AF_UNIX" = "x1")
221 # Linux
222 AC_CHECK_HEADERS([linux/input.h], [HAVE_EVDEV=1], [HAVE_EVDEV=0])
224 AM_CONDITIONAL([HAVE_EVDEV], [test "x$HAVE_EVDEV" = "x1"])
226 AC_CHECK_HEADERS([sys/prctl.h])
228 # Solaris
229 AC_CHECK_HEADERS([sys/filio.h])
231 # Windows
232 AC_CHECK_HEADERS([windows.h winsock2.h ws2tcpip.h])
234 # Other
235 AC_CHECK_HEADERS([sys/ioctl.h])
236 AC_CHECK_HEADERS([byteswap.h])
237 AC_CHECK_HEADERS([sys/syscall.h])
239 #### Typdefs, structures, etc. ####
241 AC_C_CONST
242 AC_C_BIGENDIAN
243 AC_TYPE_PID_T
244 AC_TYPE_SIZE_T
245 AC_CHECK_TYPES(ssize_t, , [AC_DEFINE([ssize_t], [signed long],
246     [Define ssize_t if it is not done by the standard libs.])])
247 AC_TYPE_OFF_T
248 AC_TYPE_SIGNAL
249 AC_TYPE_UID_T
251 AC_CHECK_DEFINE([SIGXCPU], [signal.h], [
252 HAVE_SIGXCPU=1
253 AC_DEFINE([HAVE_SIGXCPU], 1, [Have SIGXCPU?])
254 ], [HAVE_SIGXCPU=0])
255 AM_CONDITIONAL(HAVE_SIGXCPU, test "x$HAVE_SIGXCPU" = "x1")
257 # Solaris lacks this
258 AC_CHECK_DEFINE([INADDR_NONE], [netinet/in.h], [],
259     [AC_CHECK_DEFINE([INADDR_NONE], [winsock2.h], [],
260         [AC_DEFINE([INADDR_NONE],  [0xffffffff], [Define INADDR_NONE if not found in <netinet/in.h>])])])
262 #### POSIX threads ####
264 ACX_PTHREAD
266 #### Check for libs ####
268 # ISO
269 AC_SEARCH_LIBS([pow], [m])
271 # POSIX
272 AC_SEARCH_LIBS([sched_setscheduler], [rt])
273 AC_SEARCH_LIBS([dlopen], [dl])
274 AC_SEARCH_LIBS([shm_open], [rt])
275 AC_SEARCH_LIBS([inet_ntop], [nsl])
277 # BSD
278 AC_SEARCH_LIBS([connect], [socket])
280 # Non-standard
282 # This magic is needed so we do not needlessly add static libs to the win32
283 # build, disabling its ability to make dlls.
284 AC_CHECK_FUNCS([getopt_long], [], [AC_CHECK_LIB([iberty], [getopt_long])])
286 #### Check for functions ####
288 # ISO
289 AC_CHECK_FUNCS([lrintf strtof])
291 # POSIX
292 AC_FUNC_FORK
293 AC_FUNC_GETGROUPS
294 AC_FUNC_SELECT_ARGTYPES
295 AC_CHECK_FUNCS([chmod chown clock_gettime getaddrinfo getgrgid_r \
296     getpwuid_r gettimeofday getuid inet_ntop inet_pton mlock nanosleep \
297     pipe posix_fadvise posix_madvise posix_memalign setpgid setsid shm_open \
298     sigaction sleep sysconf])
299 AC_CHECK_FUNCS([mkfifo], [HAVE_MKFIFO=1], [HAVE_MKFIFO=0])
301 AM_CONDITIONAL(HAVE_MKFIFO, test "x$HAVE_MKFIFO" = "x1")
303 # X/OPEN
304 AC_CHECK_FUNCS([readlink])
306 # SUSv2
307 AC_CHECK_FUNCS([ctime_r usleep])
309 # SUSv3
310 AC_CHECK_FUNCS([strerror_r])
312 # BSD
313 AC_CHECK_FUNCS([lstat])
315 # Non-standard
317 AC_CHECK_FUNCS([setresuid setresgid setreuid setregid seteuid setegid ppoll strsignal sig2str strtof_l])
319 AC_MSG_CHECKING([for PTHREAD_PRIO_INHERIT])
320 AC_LANG_CONFTEST([AC_LANG_SOURCE([[
321 #include <pthread.h>
322 int main() { int i = PTHREAD_PRIO_INHERIT; }]])])
323 $PTHREAD_CC conftest.c $PTHREAD_CFLAGS $CFLAGS $PTHREAD_LIBS -o conftest > /dev/null 2> /dev/null
324 ret=$?
325 rm -f conftest.o conftest
327 if test $ret -eq 0 ; then
328     AC_DEFINE([HAVE_PTHREAD_PRIO_INHERIT], 1, [Have PTHREAD_PRIO_INHERIT.])
329     AC_MSG_RESULT([yes])
330 else
331     AC_MSG_RESULT([no])
334 #### Large File-Support (LFS) ####
336 AC_SYS_LARGEFILE
338 # Check for open64 to know if the current system does have open64() and similar functions
339 AC_CHECK_FUNCS([open64])
341 #### [lib]iconv ####
343 AM_ICONV
345 ###################################
346 #      External libraries         #
347 ###################################
349 #### X11 (optional) ####
351 HAVE_X11=0
353 # The macro tests the host, not the build target
354 if test "x$os_is_win32" != "x1" ; then
355     AC_PATH_XTRA
356     test "x$no_x" != "xyes" && HAVE_X11=1
359 AC_SUBST(HAVE_X11)
360 AM_CONDITIONAL(HAVE_X11, test "x$HAVE_X11" = "x1")
361 if test "x$HAVE_X11" = "x1" ; then
362     AC_DEFINE([HAVE_X11], 1, [Have X11])
365 #### Capabilities (optional) ####
367 CAP_LIBS=''
369 AC_ARG_WITH(
370         [caps],
371         AC_HELP_STRING([--without-caps],[Omit support for POSIX capabilities.]))
373 if test "x${with_caps}" != "xno"; then
374     AC_SEARCH_LIBS([cap_init], [cap], [], [
375                     if test "x${with_caps}" = "xyes" ; then
376                         AC_MSG_ERROR([*** POSIX caps libraries not found])
377                     fi])
378     AC_CHECK_HEADERS([sys/capability.h], [], [
379                     if test "x${with_caps}" = "xyes" ; then
380                         AC_MSG_ERROR([*** POSIX caps headers not found])
381                     fi])
384 #### pkg-config ####
386 # Check for pkg-config manually first, as if its not installed the
387 # PKG_PROG_PKG_CONFIG macro won't be defined.
388 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
390 if test x"$have_pkg_config" = "xno"; then
391     AC_MSG_ERROR(pkg-config is required to install this program)
394 PKG_PROG_PKG_CONFIG
396 #### Sound file ####
398 PKG_CHECK_MODULES(LIBSNDFILE, [ sndfile >= 1.0.10 ])
399 AC_SUBST(LIBSNDFILE_CFLAGS)
400 AC_SUBST(LIBSNDFILE_LIBS)
402 #### atomic-ops ###
404 AC_CHECK_HEADERS([atomic_ops.h], [], [
405 AC_MSG_ERROR([*** libatomic-ops headers not found])
408 # Win32 does not need the lib and breaks horribly if we try to include it
409 if test "x$os_is_win32" != "x1" ; then
410     LIBS="$LIBS -latomic_ops"
413 #### Libsamplerate support (optional) ####
415 AC_ARG_ENABLE([samplerate],
416     AC_HELP_STRING([--disable-samplerate], [Disable optional libsamplerate support]),
417         [
418             case "${enableval}" in
419                 yes) samplerate=yes ;;
420                 no) samplerate=no ;;
421                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-samplerate) ;;
422             esac
423         ],
424         [samplerate=auto])
426 if test "x${samplerate}" != xno ; then
427     PKG_CHECK_MODULES(LIBSAMPLERATE, [ samplerate >= 0.1.0 ],
428         HAVE_LIBSAMPLERATE=1,
429         [
430             HAVE_LIBSAMPLERATE=0
431             if test "x$samplerate" = xyes ; then
432                 AC_MSG_ERROR([*** Libsamplerate not found])
433             fi
434         ])
435 else
436     HAVE_LIBSAMPLERATE=0
439 if test "x${HAVE_LIBSAMPLERATE}" = x1 ; then
440    AC_DEFINE([HAVE_LIBSAMPLERATE], 1, [Have libsamplerate?])
443 AC_SUBST(LIBSAMPLERATE_CFLAGS)
444 AC_SUBST(LIBSAMPLERATE_LIBS)
445 AC_SUBST(HAVE_LIBSAMPLERATE)
446 AM_CONDITIONAL([HAVE_LIBSAMPLERATE], [test "x$HAVE_LIBSAMPLERATE" = x1])
448 #### OSS support (optional) ####
450 AC_ARG_ENABLE([oss],
451     AC_HELP_STRING([--disable-oss], [Disable optional OSS support]),
452         [
453             case "${enableval}" in
454                 yes) oss=yes ;;
455                 no) oss=no ;;
456                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-oss) ;;
457             esac
458         ],
459         [oss=auto])
461 if test "x${oss}" != xno ; then
462     AC_CHECK_HEADERS([sys/soundcard.h],
463         [
464             HAVE_OSS=1
465             AC_DEFINE([HAVE_OSS], 1, [Have OSS?])
466         ],
467         [
468             HAVE_OSS=0
469             if test "x$oss" = xyes ; then
470                 AC_MSG_ERROR([*** OSS support not found])
471             fi
472         ])
473 else
474     HAVE_OSS=0
477 AC_SUBST(HAVE_OSS)
478 AM_CONDITIONAL([HAVE_OSS], [test "x$HAVE_OSS" = x1])
481 #### ALSA support (optional) ####
483 AC_ARG_ENABLE([alsa],
484     AC_HELP_STRING([--disable-alsa], [Disable optional ALSA support]),
485         [
486             case "${enableval}" in
487                 yes) alsa=yes ;;
488                 no) alsa=no ;;
489                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-alsa) ;;
490             esac
491         ],
492         [alsa=auto])
494 if test "x${alsa}" != xno ; then
495     PKG_CHECK_MODULES(ASOUNDLIB, [ alsa >= 1.0.0 ],
496         [
497             HAVE_ALSA=1
498             AC_DEFINE([HAVE_ALSA], 1, [Have ALSA?])
499         ],
500         [
501             HAVE_ALSA=0
502             if test "x$alsa" = xyes ; then
503                 AC_MSG_ERROR([*** ALSA support not found])
504             fi
505         ])
506 else
507     HAVE_ALSA=0
510 AC_SUBST(ASOUNDLIB_CFLAGS)
511 AC_SUBST(ASOUNDLIB_LIBS)
512 AC_SUBST(HAVE_ALSA)
513 AM_CONDITIONAL([HAVE_ALSA], [test "x$HAVE_ALSA" = x1])
515 #### Solaris audio support (optional) ####
517 AC_ARG_ENABLE([solaris],
518     AC_HELP_STRING([--disable-solaris], [Disable optional Solaris audio support]),
519         [
520             case "${enableval}" in
521                 yes) solaris=yes ;;
522                 no) solaris=no ;;
523                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-solaris) ;;
524             esac
525         ],
526         [solaris=auto])
528 if test "x${solaris}" != xno ; then
529     AC_CHECK_HEADERS([sys/audio.h],
530         [
531             HAVE_SOLARIS=1
532             AC_DEFINE([HAVE_SOLARIS], 1, [Have Solaris audio?])
533         ],
534         [
535             HAVE_SOLARIS=0
536             if test "x$solaris" = xyes ; then
537                 AC_MSG_ERROR([*** Solaris audio support not found])
538             fi
539         ])
540 else
541     HAVE_SOLARIS=0
544 AC_SUBST(HAVE_SOLARIS)
545 AM_CONDITIONAL([HAVE_SOLARIS], [test "x$HAVE_SOLARIS" = x1])
547 #### GLib 2 support (optional) ####
549 AC_ARG_ENABLE([glib2],
550     AC_HELP_STRING([--disable-glib2], [Disable optional GLib 2 support]),
551         [
552             case "${enableval}" in
553                 yes) glib2=yes ;;
554                 no) glib2=no ;;
555                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-glib2) ;;
556             esac
557         ],
558         [glib2=auto])
560 if test "x${glib2}" != xno ; then
561     PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ],
562         HAVE_GLIB20=1,
563         [
564             HAVE_GLIB20=0
565             if test "x$glib2" = xyes ; then
566                 AC_MSG_ERROR([*** GLib 2 support not found])
567             fi
568         ])
569 else
570     HAVE_GLIB20=0
573 AC_SUBST(GLIB20_CFLAGS)
574 AC_SUBST(GLIB20_LIBS)
575 AC_SUBST(HAVE_GLIB20)
576 AM_CONDITIONAL([HAVE_GLIB20], [test "x$HAVE_GLIB20" = x1])
578 #### GConf support (optional) ####
580 AC_ARG_ENABLE([gconf],
581     AC_HELP_STRING([--disable-gconf], [Disable optional GConf support]),
582         [
583             case "${enableval}" in
584                 yes) gconf=yes ;;
585                 no) gconf=no ;;
586                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gconf) ;;
587             esac
588         ],
589         [glib=auto])
591 if test "x${gconf}" != xno ; then
592     PKG_CHECK_MODULES(GCONF, [ gconf-2.0 >= 2.4.0 ],
593         HAVE_GCONF=1,
594         [
595             HAVE_GCONF=0
596             if test "x$gconf" = xyes ; then
597                 AC_MSG_ERROR([*** GConf support not found])
598             fi
599         ])
600 else
601     HAVE_GCONF=0
604 AC_SUBST(GCONF_CFLAGS)
605 AC_SUBST(GCONF_LIBS)
606 AC_SUBST(HAVE_GCONF)
607 AM_CONDITIONAL([HAVE_GCONF], [test "x$HAVE_GCONF" = x1])
609 #### Avahi support (optional) ####
611 AC_ARG_ENABLE([avahi],
612     AC_HELP_STRING([--disable-avahi], [Disable optional Avahi support]),
613         [
614             case "${enableval}" in
615                 yes) avahi=yes ;;
616                 no) avahi=no ;;
617                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-avahi) ;;
618             esac
619         ],
620         [avahi=auto])
622 if test "x${avahi}" != xno ; then
623     PKG_CHECK_MODULES(AVAHI, [ avahi-client >= 0.6.0 ],
624         HAVE_AVAHI=1,
625         [
626                 HAVE_AVAHI=0
627                 if test "x$avahi" = xyes ; then
628                         AC_MSG_ERROR([*** Avahi support not found])
629                 fi
630         ])
631 else
632     HAVE_AVAHI=0
635 AC_SUBST(AVAHI_CFLAGS)
636 AC_SUBST(AVAHI_LIBS)
637 AC_SUBST(HAVE_AVAHI)
638 AM_CONDITIONAL([HAVE_AVAHI], [test "x$HAVE_AVAHI" = x1])
640 ### LIBOIL ####
642 PKG_CHECK_MODULES(LIBOIL, [ liboil-0.3 >= 0.3.0 ])
643 AC_SUBST(LIBOIL_CFLAGS)
644 AC_SUBST(LIBOIL_LIBS)
646 ### JACK (optional) ####
648 AC_ARG_ENABLE([jack],
649     AC_HELP_STRING([--disable-jack], [Disable optional JACK support]),
650         [
651             case "${enableval}" in
652                 yes) jack=yes ;;
653                 no) jack=no ;;
654                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-jack) ;;
655             esac
656         ],
657         [jack=auto])
659 if test "x${jack}" != xno ; then
660     PKG_CHECK_MODULES(JACK, [ jack >= 0.100 ],
661         HAVE_JACK=1,
662         [
663             HAVE_JACK=0
664             if test "x$jack" = xyes ; then
665                 AC_MSG_ERROR([*** JACK support not found])
666             fi
667         ])
668 else
669     HAVE_JACK=0
672 AC_SUBST(JACK_CFLAGS)
673 AC_SUBST(JACK_LIBS)
674 AC_SUBST(HAVE_JACK)
675 AM_CONDITIONAL([HAVE_JACK], [test "x$HAVE_JACK" = x1])
677 #### Async DNS support (optional) ####
679 AC_ARG_ENABLE([asyncns],
680     AC_HELP_STRING([--disable-asyncns], [Disable optional Async DNS support]),
681         [
682             case "${enableval}" in
683                 yes) asyncns=yes ;;
684                 no) asyncns=no ;;
685                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-asyncns) ;;
686             esac
687         ],
688         [asyncns=auto])
690 if test "x${asyncns}" != xno ; then
691     PKG_CHECK_MODULES(LIBASYNCNS, [ libasyncns >= 0.1 ],
692         HAVE_LIBASYNCNS=1,
693         [
694             HAVE_LIBASYNCNS=0
695             if test "x$asyncns" = xyes ; then
696                 AC_MSG_ERROR([*** Async DNS support not found])
697             fi
698         ])
699 else
700     HAVE_LIBASYNCNS=0
703 AC_SUBST(LIBASYNCNS_CFLAGS)
704 AC_SUBST(LIBASYNCNS_LIBS)
705 AC_SUBST(HAVE_LIBASYNCNS)
706 AM_CONDITIONAL([HAVE_LIBASYNCNS], [test "x$HAVE_LIBASYNCNS" = x1])
708 if test "x$HAVE_LIBASYNCNS" != "x0" ; then
709    AC_DEFINE([HAVE_LIBASYNCNS], 1, [Have libasyncns?])
712 #### TCP wrappers (optional) ####
714 AC_ARG_ENABLE([tcpwrap],
715     AC_HELP_STRING([--disable-tcpwrap], [Disable optional TCP wrappers support]),
716         [
717             case "${enableval}" in
718                 yes) tcpwrap=yes ;;
719                 no) tcpwrap=no ;;
720                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
721             esac
722         ],
723         [tcpwrap=auto])
725 if test "x${tcpwrap}" != xno ; then
726     ACX_LIBWRAP
727     if test "x${LIBWRAP_LIBS}" = x && test "x$tcpwrap" = xyes ; then
728         AC_MSG_ERROR([*** TCP wrappers support not found])
729     fi
730 else
731     LIBWRAP_LIBS=
734 AC_SUBST(LIBWRAP_LIBS)
736 #### LIRC support (optional) ####
738 AC_ARG_ENABLE([lirc],
739     AC_HELP_STRING([--disable-lirc], [Disable optional LIRC support]),
740         [
741             case "${enableval}" in
742                 yes) lirc=yes ;;
743                 no) lirc=no ;;
744                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-lirc) ;;
745             esac
746         ],
747         [lirc=auto])
749 if test "x${lirc}" != xno ; then
750     ACX_LIRC
751     if test "x${HAVE_LIRC}" = x0 && test "x$lirc" = xyes ; then
752         AC_MSG_ERROR([*** LIRC support not found])
753     fi
754 else
755     HAVE_LIRC=0
758 AC_SUBST(LIRC_CFLAGS)
759 AC_SUBST(LIRC_LIBS)
760 AM_CONDITIONAL([HAVE_LIRC], [test "x$HAVE_LIRC" = x1])
762 #### HAL support (optional) ####
764 AC_ARG_ENABLE([hal],
765     AC_HELP_STRING([--disable-hal], [Disable optional HAL support]),
766         [
767             case "${enableval}" in
768                 yes) hal=yes ;;
769                 no) hal=no ;;
770                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-hal) ;;
771             esac
772         ],
773         [hal=auto])
774 if test "x${hal}" != xno -a \( "x$HAVE_OSS" = "x1" -o "x$HAVE_ALSA" = "x1" \) ; then
775     PKG_CHECK_MODULES(HAL, [ hal >= 0.5.7 ],
776         HAVE_HAL=1,
777         [
778             HAVE_HAL=0
779             if test "x$hal" = xyes ; then
780                 AC_MSG_ERROR([*** HAL support not found])
781             fi
782         ])
783 else
784     HAVE_HAL=0
787 AC_SUBST(HAL_CFLAGS)
788 AC_SUBST(HAL_LIBS)
789 AC_SUBST(HAVE_HAL)
790 AM_CONDITIONAL([HAVE_HAL], [test "x$HAVE_HAL" = x1])
792 #### D-Bus support (optional) ####
794 AC_ARG_ENABLE([dbus],
795     AC_HELP_STRING([--disable-dbus], [Disable optional D-Bus support]),
796         [
797             case "${enableval}" in
798                 yes) dbus=yes ;;
799                 no) dbus=no ;;
800                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-dbus) ;;
801             esac
802         ],
803         [dbus=auto])
805 if test "x$HAVE_HAL" = x1 ; then
806    dbus=yes
809 if test "x${dbus}" != xno ; then
811     PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 1.0.0 ],
812         [
813             HAVE_DBUS=1
814             saved_LIBS="$LIBS"
815             LIBS="$LIBS $DBUS_LIBS"
816             AC_CHECK_FUNCS(dbus_watch_get_unix_fd)
817             LIBS="$saved_LIBS"
818             AC_DEFINE([HAVE_DBUS], 1, [Have D-Bus.])
819         ],
820         [
821             HAVE_DBUS=0
822             if test "x$dbus" = xyes ; then
823                 AC_MSG_ERROR([*** D-Bus support not found])
824             fi
825         ])
826 else
827     HAVE_DBUS=0
830 AC_SUBST(DBUS_CFLAGS)
831 AC_SUBST(DBUS_LIBS)
832 AC_SUBST(HAVE_DBUS)
833 AM_CONDITIONAL([HAVE_DBUS], [test "x$HAVE_DBUS" = x1])
835 #### PulseAudio system group & user  #####
837 AC_ARG_WITH(system_user, AS_HELP_STRING([--with-system-user=<user>],[User for running the PulseAudio daemon as a system-wide instance (pulse)]))
838 if test -z "$with_system_user" ; then
839     PA_SYSTEM_USER=pulse
840 else
841     PA_SYSTEM_USER=$with_system_user
843 AC_SUBST(PA_SYSTEM_USER)
844 AC_DEFINE_UNQUOTED(PA_SYSTEM_USER,"$PA_SYSTEM_USER", [User for running the PulseAudio system daemon])
846 AC_ARG_WITH(system_group,AS_HELP_STRING([--with-system-group=<group>],[Group for running the PulseAudio daemon as a system-wide instance (pulse)]))
847 if test -z "$with_system_group" ; then
848     PA_SYSTEM_GROUP=pulse
849 else
850     PA_SYSTEM_GROUP=$with_system_group
852 AC_SUBST(PA_SYSTEM_GROUP)
853 AC_DEFINE_UNQUOTED(PA_SYSTEM_GROUP,"$PA_SYSTEM_GROUP", [Group for the PulseAudio system daemon])
855 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)]))
856 if test -z "$with_realtime_group" ; then
857     PA_REALTIME_GROUP=pulse-rt
858 else
859     PA_REALTIME_GROUP=$with_realtime_group
861 AC_SUBST(PA_REALTIME_GROUP)
862 AC_DEFINE_UNQUOTED(PA_REALTIME_GROUP,"$PA_REALTIME_GROUP", [Realtime group])
864 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)]))
865 if test -z "$with_access_group" ; then
866     PA_ACCESS_GROUP=pulse-access
867 else
868     PA_ACCESS_GROUP=$with_access_group
870 AC_SUBST(PA_ACCESS_GROUP)
871 AC_DEFINE_UNQUOTED(PA_ACCESS_GROUP,"$PA_ACCESS_GROUP", [Access group])
873 #### PulseAudio system runtime dir ####
874 PA_SYSTEM_RUNTIME_PATH="${localstatedir}/run/pulse"
875 AC_SUBST(PA_SYSTEM_RUNTIME_PATH)
877 ###################################
878 #            Output               #
879 ###################################
881 AC_ARG_ENABLE(
882         [static-bins],
883         AC_HELP_STRING([--enable-static-bins],[Statically link executables.]),
884         [STATIC_BINS=1], [STATIC_BINS=0])
885 AM_CONDITIONAL([STATIC_BINS], [test "x$STATIC_BINS" = "x1"])
887 AC_ARG_WITH(
888         [preopen-mods],
889         AC_HELP_STRING([--with-preopen-mods],[Modules to preopen in daemon (default: all).]),
890         [PREOPEN_MODS=$withval], [PREOPEN_MODS="all"])
891 AM_CONDITIONAL([PREOPEN_MODS], [test "x$PREOPEN_MODS" != "xall"])
892 if test "x$PREOPEN_MODS" != "xall" ; then
893     tmpLIBS=""
894     for mod in $PREOPEN_MODS; do
895         tmpLIBS="$tmpLIBS module-$mod.la"
896     done
897     PREOPEN_MODS="$tmpLIBS"
898     AC_SUBST(PREOPEN_MODS)
901 AC_ARG_WITH(
902         [module-dir],
903         AC_HELP_STRING([--with-module-dir],[Directory where to install the modules to (defaults to ${libdir}/pulse-${PA_MAJORMINOR}/modules/]),
904         [modlibexecdir=$withval], [modlibexecdir="${libdir}/pulse-${PA_MAJORMINOR}/modules/"])
906 AC_SUBST(modlibexecdir)
908 AC_ARG_ENABLE(
909         [force-preopen],
910         AC_HELP_STRING([--enable-force-preopen],[Preopen modules, even when dlopen() is supported.]),
911         [FORCE_PREOPEN=1], [FORCE_PREOPEN=0])
912 AM_CONDITIONAL([FORCE_PREOPEN], [test "x$FORCE_PREOPEN" = "x1"])
914 AC_CONFIG_FILES([
915 Makefile
916 src/Makefile
917 libpulse.pc
918 libpulse-simple.pc
919 libpulse-browse.pc
920 libpulse-mainloop-glib.pc
921 doxygen/Makefile
922 doxygen/doxygen.conf
923 src/pulse/version.h
925 AC_OUTPUT
927 # ==========================================================================
928 ENABLE_X11=no
929 if test "x$HAVE_X11" = "x1" ; then
930    ENABLE_X11=yes
933 ENABLE_OSS=no
934 if test "x$HAVE_OSS" = "x1" ; then
935    ENABLE_OSS=yes
938 ENABLE_ALSA=no
939 if test "x$HAVE_ALSA" = "x1" ; then
940    ENABLE_ALSA=yes
943 ENABLE_SOLARIS=no
944 if test "x$HAVE_SOLARIS" = "x1" ; then
945    ENABLE_SOLARIS=yes
948 ENABLE_GLIB20=no
949 if test "x$HAVE_GLIB20" = "x1" ; then
950    ENABLE_GLIB20=yes
953 ENABLE_GCONF=no
954 if test "x$HAVE_GCONF" = "x1" ; then
955    ENABLE_GCONF=yes
958 ENABLE_AVAHI=no
959 if test "x$HAVE_AVAHI" = "x1" ; then
960    ENABLE_AVAHI=yes
963 ENABLE_JACK=no
964 if test "x$HAVE_JACK" = "x1" ; then
965    ENABLE_JACK=yes
968 ENABLE_LIBASYNCNS=no
969 if test "x$HAVE_LIBASYNCNS" = "x1" ; then
970    ENABLE_LIBASYNCNS=yes
973 ENABLE_LIRC=no
974 if test "x$HAVE_LIRC" = "x1" ; then
975    ENABLE_LIRC=yes
978 ENABLE_HAL=no
979 if test "x$HAVE_HAL" = "x1" ; then
980    ENABLE_HAL=yes
983 ENABLE_TCPWRAP=no
984 if test "x${LIBWRAP_LIBS}" != x ; then
985    ENABLE_TCPWRAP=yes
988 ENABLE_LIBSAMPLERATE=no
989 if test "x${HAVE_LIBSAMPLERATE}" = "x1" ; then
990    ENABLE_LIBSAMPLERATE=yes
993 echo "
994  ---{ $PACKAGE_NAME $VERSION }---
996     prefix:                 ${prefix}
997     sysconfdir:             ${sysconfdir}
998     localstatedir:          ${localstatedir}
999     System Runtime Path:    ${PA_SYSTEM_RUNTIME_PATH}
1000     Compiler:               ${CC}
1001     CFLAGS:                 ${CFLAGS}
1002     Have X11:               ${ENABLE_X11}
1003     Enable OSS:             ${ENABLE_OSS}
1004     Enable Alsa:            ${ENABLE_ALSA}
1005     Enable Solaris:         ${ENABLE_SOLARIS}
1006     Enable GLib 2.0:        ${ENABLE_GLIB20}
1007     Enable GConf:           ${ENABLE_GCONF}
1008     Enable Avahi:           ${ENABLE_AVAHI}
1009     Enable Jack:            ${ENABLE_JACK}
1010     Enable Async DNS:       ${ENABLE_LIBASYNCNS}
1011     Enable LIRC:            ${ENABLE_LIRC}
1012     Enable HAL:             ${ENABLE_HAL}
1013     Enable TCP Wrappers:    ${ENABLE_TCPWRAP}
1014     Enable libsamplerate:   ${ENABLE_LIBSAMPLERATE}
1015     System User:            ${PA_SYSTEM_USER}
1016     System Group:           ${PA_SYSTEM_GROUP}
1017     Realtime Group:         ${PA_REALTIME_GROUP}
1018     Access Group:           ${PA_ACCESS_GROUP}