add a threading primitive API
[pulseaudio.git] / configure.ac
blob42bee9a85b40f64301515f9f91ebcaf3af606de9
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 # $Id$
6 # This file is part of PulseAudio.
8 # PulseAudio is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU Lesser General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # PulseAudio is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 # General Public License for more details.
18 # You should have received a copy of the GNU Lesser General Public License
19 # along with PulseAudio; if not, write to the Free Software Foundation,
20 # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 AC_PREREQ(2.57)
24 m4_define(PA_MAJOR, [0])
25 m4_define(PA_MINOR, [9])
26 m4_define(PA_MICRO, [5])
28 AC_INIT([pulseaudio], PA_MAJOR.PA_MINOR.PA_MICRO,[mzcbylcnhqvb (at) 0pointer (dot) de])
29 AC_CONFIG_SRCDIR([src/daemon/main.c])
30 AC_CONFIG_HEADERS([config.h])
31 AM_INIT_AUTOMAKE([foreign -Wall])
33 AC_SUBST(PA_MAJORMINOR, "PA_MAJOR.PA_MINOR")
34 AC_SUBST(PACKAGE_URL, [http://0pointer.de/lennart/projects/pulseaudio/])
36 AC_SUBST(PA_API_VERSION, 10)
37 AC_SUBST(PA_PROTOCOL_VERSION, 10)
39 AC_SUBST(LIBPULSE_VERSION_INFO, [1:0:1])
40 AC_SUBST(LIBPULSECORE_VERSION_INFO, [2:0:0])
41 AC_SUBST(LIBPULSE_SIMPLE_VERSION_INFO, [0:0:0])
42 AC_SUBST(LIBPULSE_BROWSE_VERSION_INFO, [1:0:1])
43 AC_SUBST(LIBPULSE_MAINLOOP_GLIB_VERSION_INFO, [0:2:0])
45 if type -p stow > /dev/null && test -d /usr/local/stow ; then
46    AC_MSG_NOTICE([*** Found /usr/local/stow: default install prefix set to /usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION} ***])
47    ac_default_prefix="/usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION}"
50 #### Platform hacks ####
52 case $host in
53    *-*-solaris* )
54       AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
55       AC_DEFINE(_XOPEN_SOURCE,          2, Needed to get declarations for msg_control and msg_controllen on Solaris)
56       AC_DEFINE(__EXTENSIONS__,         1, Needed to get declarations for msg_control and msg_controllen on Solaris)
57       ;;
58 esac
60 #### Checks for programs. ####
62 # CC
64 AC_PROG_CC
65 AC_PROG_GCC_TRADITIONAL
66 AC_GNU_SOURCE
68 # M4
70 AC_PATH_PROG([M4], [m4 gm4], [no])
71 if test "x$M4" = xno ; then
72    AC_MSG_ERROR([m4 missing])
75 # GCC flags
77 test_gcc_flag() {
78     AC_LANG_CONFTEST([int main() {}])
79     $CC -c conftest.c $CFLAGS $@ > /dev/null 2> /dev/null
80     ret=$?
81     rm -f conftest.o
82     return $ret
85 # If using GCC specify some additional parameters
86 if test "x$GCC" = "xyes" ; then
88     # We use gnu99 instead of c99 because many have interpreted the standard
89     # in a way that int64_t isn't defined on non-64 bit platforms.
90     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"
92     for flag in $DESIRED_FLAGS ; do
93         AC_MSG_CHECKING([whether $CC accepts $flag])
94         if test_gcc_flag $flag ; then 
95            CFLAGS="$CFLAGS $flag"
96            AC_MSG_RESULT([yes])
97         else
98            AC_MSG_RESULT([no])
99         fi
100     done 
103 #### libtool stuff ####
105 AC_LTDL_ENABLE_INSTALL
106 AC_LIBLTDL_INSTALLABLE
107 AC_SUBST(LTDLINCL)
108 AC_SUBST(LIBLTDL)
109 AC_LIBTOOL_DLOPEN
110 AC_LIBTOOL_WIN32_DLL
111 AC_PROG_LIBTOOL
112 AC_CONFIG_SUBDIRS(libltdl)
114 if test "x$enable_ltdl_install" = "xno" && test "x$ac_cv_lib_ltdl_lt_dlinit" = "xno" ; then
115     AC_MSG_ERROR([[
117         *** Cannot find the libltdl development files.
118         *** Maybe you need to install the libltdl-dev package.
119         ]])
122 #### Determine build environment ####
124 os_is_win32=0
126 case "$host_os" in
127         mingw*)
128         AC_DEFINE([OS_IS_WIN32], 1, [Build target is Windows.])
129         os_is_win32=1
130                 ;;
131         esac
133 AM_CONDITIONAL(OS_IS_WIN32, test "x$os_is_win32" = "x1")
135 ###################################
136 #   Basic environment checks      #
137 ###################################
139 #### Checks for header files. ####
141 # ISO
142 AC_HEADER_STDC
144 # POSIX
145 AC_CHECK_HEADERS([arpa/inet.h glob.h grp.h netdb.h netinet/in.h \
146     netinet/in_systm.h netinet/ip.h netinet/tcp.h pwd.h sched.h \
147     sys/mman.h sys/resource.h sys/select.h sys/socket.h sys/wait.h \
148     syslog.h])
149 AC_CHECK_HEADERS([regex.h], [HAVE_REGEX=1], [HAVE_REGEX=0])
150 AC_CHECK_HEADERS([sys/un.h], [HAVE_AF_UNIX=1], [HAVE_AF_UNIX=0])
152 AM_CONDITIONAL(HAVE_REGEX, test "x$HAVE_REGEX" = "x1")
153 AM_CONDITIONAL(HAVE_AF_UNIX, test "x$HAVE_AF_UNIX" = "x1")
155 # XPG4-UNIX
156 AC_CHECK_HEADERS([sys/poll.h])
158 # Linux
159 AC_CHECK_HEADERS([linux/input.h], [HAVE_EVDEV=1], [HAVE_EVDEV=0])
161 AM_CONDITIONAL([HAVE_EVDEV], [test "x$HAVE_EVDEV" = "x1"])
163 AC_CHECK_HEADERS([sys/prctl.h])
165 # Solaris
166 AC_CHECK_HEADERS([sys/filio.h])
168 # Windows
169 AC_CHECK_HEADERS([windows.h winsock2.h ws2tcpip.h])
171 # Other
172 AC_CHECK_HEADERS([sys/ioctl.h])
174 #### Typdefs, structures, etc. ####
176 AC_C_CONST
177 AC_C_BIGENDIAN
178 AC_TYPE_PID_T
179 AC_TYPE_SIZE_T
180 AC_CHECK_TYPES(ssize_t, , [AC_DEFINE([ssize_t], [signed long],
181     [Define ssize_t if it is not done by the standard libs.])])
182 AC_TYPE_OFF_T
183 AC_TYPE_SIGNAL
184 AC_TYPE_UID_T
186 AC_CHECK_DEFINE([SIGXCPU], [signal.h], [
187 HAVE_SIGXCPU=1
188 AC_DEFINE([HAVE_SIGXCPU], 1, [Have SIGXCPU?])
189 ], [HAVE_SIGXCPU=0])
190 AM_CONDITIONAL(HAVE_SIGXCPU, test "x$HAVE_SIGXCPU" = "x1")
192 # Solaris lacks this
193 AC_CHECK_DEFINE([INADDR_NONE], [netinet/in.h], [],
194     [AC_CHECK_DEFINE([INADDR_NONE], [winsock2.h], [],
195         [AC_DEFINE([INADDR_NONE],  [0xffffffff], [Define INADDR_NONE if not found in <netinet/in.h>])])])
197 #### Check for libs ####
199 # ISO
200 AC_SEARCH_LIBS([pow], [m])
202 # POSIX
203 AC_SEARCH_LIBS([sched_setscheduler], [rt])
204 AC_SEARCH_LIBS([dlopen], [dl])
205 AC_SEARCH_LIBS([shm_open], [rt])
207 # BSD
208 AC_SEARCH_LIBS([connect], [socket])
210 # Non-standard
212 # This magic is needed so we do not needlessly add static libs to the win32
213 # build, disabling its ability to make dlls.
214 AC_CHECK_FUNCS([getopt_long], [], [AC_CHECK_LIB([iberty], [getopt_long])])
216 #### Check for functions ####
218 # POSIX
219 AC_FUNC_FORK
220 AC_FUNC_GETGROUPS
221 AC_FUNC_SELECT_ARGTYPES
222 AC_CHECK_FUNCS([chmod chown getaddrinfo getgrgid_r getpwuid_r gettimeofday \
223     getuid inet_ntop inet_pton nanosleep pipe posix_memalign setpgid setsid \
224     shm_open sigaction sleep sysconf])
225 AC_CHECK_FUNCS([mkfifo], [HAVE_MKFIFO=1], [HAVE_MKFIFO=0])
227 AM_CONDITIONAL(HAVE_MKFIFO, test "x$HAVE_MKFIFO" = "x1")
229 # X/OPEN
230 AC_CHECK_FUNCS([readlink])
232 # SUSv2
233 AC_CHECK_FUNCS([ctime_r usleep])
235 # SUSv3
236 AC_CHECK_FUNCS([strerror_r])
238 # BSD
239 AC_CHECK_FUNCS([lstat])
241 # Non-standard
243 AC_CHECK_FUNCS([setresuid setresgid setreuid setregid seteuid setegid])
245 #### POSIX threads ####
247 ACX_PTHREAD
249 #### Large File-Support (LFS) ####
251 AC_SYS_LARGEFILE
253 # Check for open64 to know if the current system does have open64() and similar functions
254 AC_CHECK_FUNCS([open64])
256 #### [lib]iconv ####
258 AM_ICONV
260 ###################################
261 #      External libraries         #
262 ###################################
264 #### X11 (optional) ####
266 HAVE_X11=0
268 # The macro tests the host, not the build target
269 if test "x$os_is_win32" != "x1" ; then
270     AC_PATH_XTRA
271     test "x$no_x" != "xyes" && HAVE_X11=1
274 AC_SUBST(HAVE_X11)
275 AM_CONDITIONAL(HAVE_X11, test "x$HAVE_X11" = "x1")
276 if test "x$HAVE_X11" = "x1" ; then
277     AC_DEFINE([HAVE_X11], 1, [Have X11])
280 #### Capabilities (optional) ####
282 CAP_LIBS=''
284 AC_ARG_WITH(
285         [caps],
286         AC_HELP_STRING([--without-caps],[Omit support for POSIX capabilities.]))
288 if test "x${with_caps}" != "xno"; then
289     AC_SEARCH_LIBS([cap_init], [cap], [], [
290                     if test "x${with_caps}" = "xyes" ; then
291                         AC_MSG_ERROR([*** POSIX caps libraries not found])
292                     fi])
293     AC_CHECK_HEADERS([sys/capability.h], [], [
294                     if test "x${with_caps}" = "xyes" ; then
295                         AC_MSG_ERROR([*** POSIX caps headers not found])
296                     fi])
299 #### pkg-config ####
301 # Check for pkg-config manually first, as if its not installed the
302 # PKG_PROG_PKG_CONFIG macro won't be defined.
303 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
305 if test x"$have_pkg_config" = "xno"; then
306     AC_MSG_ERROR(pkg-config is required to install this program)
309 PKG_PROG_PKG_CONFIG
311 #### Sample rate conversion ####
313 PKG_CHECK_MODULES(LIBSAMPLERATE, [ samplerate >= 0.1.0 ])
314 AC_SUBST(LIBSAMPLERATE_CFLAGS)
315 AC_SUBST(LIBSAMPLERATE_LIBS)
317 #### Sound file ####
319 PKG_CHECK_MODULES(LIBSNDFILE, [ sndfile >= 1.0.10 ])
320 AC_SUBST(LIBSNDFILE_CFLAGS)
321 AC_SUBST(LIBSNDFILE_LIBS)
323 #### atomic-ops ###
325 AC_CHECK_HEADERS([atomic_ops.h], [], [
326 AC_MSG_ERROR([*** libatomic-ops headers not found])
329 AC_SEARCH_LIBS([AO_spin], [atomic_ops], [], [
330 AC_MSG_ERROR([*** libatomic-ops library file not found])
335 #### OSS support (optional) ####
337 AC_ARG_ENABLE([oss], 
338     AC_HELP_STRING([--disable-oss], [Disable optional OSS support]), 
339         [
340             case "${enableval}" in
341                 yes) oss=yes ;;
342                 no) oss=no ;;
343                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-oss) ;;
344             esac
345         ],
346         [oss=auto])
348 if test "x${oss}" != xno ; then
349     AC_CHECK_HEADERS([sys/soundcard.h],
350         [
351             HAVE_OSS=1
352             AC_DEFINE([HAVE_OSS], 1, [Have OSS?])
353         ],
354         [
355             HAVE_OSS=0
356             if test "x$oss" = xyes ; then
357                 AC_MSG_ERROR([*** OSS support not found])
358             fi
359         ])
360 else
361     HAVE_OSS=0
364 AC_SUBST(HAVE_OSS)
365 AM_CONDITIONAL([HAVE_OSS], [test "x$HAVE_OSS" = x1])
368 #### ALSA support (optional) ####
370 AC_ARG_ENABLE([alsa], 
371     AC_HELP_STRING([--disable-alsa], [Disable optional ALSA support]), 
372         [
373             case "${enableval}" in
374                 yes) alsa=yes ;;
375                 no) alsa=no ;;
376                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-alsa) ;;
377             esac
378         ],
379         [alsa=auto])
381 if test "x${alsa}" != xno ; then
382     PKG_CHECK_MODULES(ASOUNDLIB, [ alsa >= 1.0.0 ],
383         [
384             HAVE_ALSA=1
385             AC_DEFINE([HAVE_ALSA], 1, [Have ALSA?])
386         ],
387         [
388             HAVE_ALSA=0
389             if test "x$alsa" = xyes ; then
390                 AC_MSG_ERROR([*** ALSA support not found])
391             fi
392         ])
393 else
394     HAVE_ALSA=0
397 AC_SUBST(ASOUNDLIB_CFLAGS)
398 AC_SUBST(ASOUNDLIB_LIBS) 
399 AC_SUBST(HAVE_ALSA)
400 AM_CONDITIONAL([HAVE_ALSA], [test "x$HAVE_ALSA" = x1])
402 #### Solaris audio support (optional) ####
404 AC_ARG_ENABLE([solaris], 
405     AC_HELP_STRING([--disable-solaris], [Disable optional Solaris audio support]), 
406         [
407             case "${enableval}" in
408                 yes) solaris=yes ;;
409                 no) solaris=no ;;
410                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-solaris) ;;
411             esac
412         ],
413         [solaris=auto])
415 if test "x${solaris}" != xno ; then
416     AC_CHECK_HEADERS([sys/audio.h],
417         [
418             HAVE_SOLARIS=1
419             AC_DEFINE([HAVE_SOLARIS], 1, [Have Solaris audio?])
420         ],
421         [
422             HAVE_SOLARIS=0
423             if test "x$solaris" = xyes ; then
424                 AC_MSG_ERROR([*** Solaris audio support not found])
425             fi
426         ])
427 else
428     HAVE_SOLARIS=0
431 AC_SUBST(HAVE_SOLARIS)
432 AM_CONDITIONAL([HAVE_SOLARIS], [test "x$HAVE_SOLARIS" = x1])
434 #### GLib 2 support (optional) ####
436 AC_ARG_ENABLE([glib2], 
437     AC_HELP_STRING([--disable-glib2], [Disable optional GLib 2 support]), 
438         [
439             case "${enableval}" in
440                 yes) glib2=yes ;;
441                 no) glib2=no ;;
442                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-glib2) ;;
443             esac
444         ],
445         [glib2=auto])
447 if test "x${glib2}" != xno ; then
448     PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ],
449         HAVE_GLIB20=1,
450         [
451             HAVE_GLIB20=0
452             if test "x$glib2" = xyes ; then
453                 AC_MSG_ERROR([*** GLib 2 support not found])
454             fi
455         ])
456 else
457     HAVE_GLIB20=0
460 AC_SUBST(GLIB20_CFLAGS)
461 AC_SUBST(GLIB20_LIBS)
462 AC_SUBST(HAVE_GLIB20)
463 AM_CONDITIONAL([HAVE_GLIB20], [test "x$HAVE_GLIB20" = x1])
465 #### GConf support (optional) ####
467 AC_ARG_ENABLE([gconf], 
468     AC_HELP_STRING([--disable-gconf], [Disable optional GConf support]), 
469         [
470             case "${enableval}" in
471                 yes) gconf=yes ;;
472                 no) gconf=no ;;
473                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gconf) ;;
474             esac
475         ],
476         [glib=auto])
478 if test "x${gconf}" != xno ; then
479     PKG_CHECK_MODULES(GCONF, [ gconf-2.0 >= 2.4.0 ],
480         HAVE_GCONF=1,
481         [
482             HAVE_GCONF=0
483             if test "x$gconf" = xyes ; then
484                 AC_MSG_ERROR([*** GConf support not found])
485             fi
486         ])
487 else
488     HAVE_GCONF=0
491 AC_SUBST(GCONF_CFLAGS)
492 AC_SUBST(GCONF_LIBS)
493 AC_SUBST(HAVE_GCONF)
494 AM_CONDITIONAL([HAVE_GCONF], [test "x$HAVE_GCONF" = x1])
496 #### Avahi support (optional) ####
498 AC_ARG_ENABLE([avahi], 
499     AC_HELP_STRING([--disable-avahi], [Disable optional Avahi support]), 
500         [
501             case "${enableval}" in
502                 yes) avahi=yes ;;
503                 no) avahi=no ;;
504                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-avahi) ;;
505             esac
506         ],
507         [avahi=auto])
509 if test "x${avahi}" != xno ; then
510     PKG_CHECK_MODULES(AVAHI, [ avahi-client >= 0.6.0 ],
511         HAVE_AVAHI=1,
512         [
513                 HAVE_AVAHI=0
514                 if test "x$avahi" = xyes ; then
515                         AC_MSG_ERROR([*** Avahi support not found])
516                 fi
517         ])
518 else
519     HAVE_AVAHI=0
522 AC_SUBST(AVAHI_CFLAGS)
523 AC_SUBST(AVAHI_LIBS)
524 AC_SUBST(HAVE_AVAHI)
525 AM_CONDITIONAL([HAVE_AVAHI], [test "x$HAVE_AVAHI" = x1])
527 ### LIBOIL ####
529 PKG_CHECK_MODULES(LIBOIL, [ liboil-0.3 >= 0.3.0 ])
530 AC_SUBST(LIBOIL_CFLAGS)
531 AC_SUBST(LIBOIL_LIBS)
533 ### JACK (optional) ####
535 AC_ARG_ENABLE([jack], 
536     AC_HELP_STRING([--disable-jack], [Disable optional JACK support]), 
537         [
538             case "${enableval}" in
539                 yes) jack=yes ;;
540                 no) jack=no ;;
541                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-jack) ;;
542             esac
543         ],
544         [jack=auto])
546 if test "x${jack}" != xno ; then
547     PKG_CHECK_MODULES(JACK, [ jack >= 0.100 ],
548         HAVE_JACK=1,
549         [
550             HAVE_JACK=0
551             if test "x$jack" = xyes ; then
552                 AC_MSG_ERROR([*** JACK support not found])
553             fi
554         ])
555 else
556     HAVE_JACK=0
559 AC_SUBST(JACK_CFLAGS)
560 AC_SUBST(JACK_LIBS)
561 AC_SUBST(HAVE_JACK)
562 AM_CONDITIONAL([HAVE_JACK], [test "x$HAVE_JACK" = x1])
564 #### Async DNS support (optional) ####
566 AC_ARG_ENABLE([asyncns], 
567     AC_HELP_STRING([--disable-asyncns], [Disable optional Async DNS support]), 
568         [
569             case "${enableval}" in
570                 yes) asyncns=yes ;;
571                 no) asyncns=no ;;
572                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-asyncns) ;;
573             esac
574         ],
575         [asyncns=auto])
577 if test "x${asyncns}" != xno ; then
578     PKG_CHECK_MODULES(LIBASYNCNS, [ libasyncns >= 0.1 ],
579         HAVE_LIBASYNCNS=1,
580         [
581             HAVE_LIBASYNCNS=0
582             if test "x$asyncns" = xyes ; then
583                 AC_MSG_ERROR([*** Async DNS support not found])
584             fi
585         ])
586 else
587     HAVE_LIBASYNCNS=0
590 AC_SUBST(LIBASYNCNS_CFLAGS)
591 AC_SUBST(LIBASYNCNS_LIBS)
592 AC_SUBST(HAVE_LIBASYNCNS)
593 AM_CONDITIONAL([HAVE_LIBASYNCNS], [test "x$HAVE_LIBASYNCNS" = x1])
595 if test "x$HAVE_LIBASYNCNS" != "x0" ; then
596    AC_DEFINE([HAVE_LIBASYNCNS], 1, [Have libasyncns?])
599 #### TCP wrappers (optional) ####
601 AC_ARG_ENABLE([tcpwrap], 
602     AC_HELP_STRING([--disable-tcpwrap], [Disable optional TCP wrappers support]), 
603         [
604             case "${enableval}" in
605                 yes) tcpwrap=yes ;;
606                 no) tcpwrap=no ;;
607                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
608             esac
609         ],
610         [tcpwrap=auto])
612 if test "x${tcpwrap}" != xno ; then
613     ACX_LIBWRAP
614     if test "x${LIBWRAP_LIBS}" = x && test "x$tcpwrap" = xyes ; then
615         AC_MSG_ERROR([*** TCP wrappers support not found])
616     fi
617 else
618     LIBWRAP_LIBS=
621 AC_SUBST(LIBWRAP_LIBS)
623 #### LIRC support (optional) ####
625 AC_ARG_ENABLE([lirc], 
626     AC_HELP_STRING([--disable-lirc], [Disable optional LIRC support]), 
627         [
628             case "${enableval}" in
629                 yes) lirc=yes ;;
630                 no) lirc=no ;;
631                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-lirc) ;;
632             esac
633         ],
634         [lirc=auto])
636 if test "x${lirc}" != xno ; then
637     ACX_LIRC
638     if test "x${HAVE_LIRC}" = x0 && test "x$lirc" = xyes ; then
639         AC_MSG_ERROR([*** LIRC support not found])
640     fi
641 else
642     HAVE_LIRC=0
645 AC_SUBST(LIRC_CFLAGS)
646 AC_SUBST(LIRC_LIBS)
647 AM_CONDITIONAL([HAVE_LIRC], [test "x$HAVE_LIRC" = x1])
649 #### HAL support (optional) ####
651 AC_ARG_ENABLE([hal], 
652     AC_HELP_STRING([--disable-hal], [Disable optional HAL support]), 
653         [
654             case "${enableval}" in
655                 yes) hal=yes ;;
656                 no) hal=no ;;
657                 *) AC_MSG_ERROR(bad value ${enableval} for --disable-hal) ;;
658             esac
659         ],
660         [hal=auto])
662 if test "x${hal}" != xno -a \( "x$HAVE_OSS" = "x1" -o "x$HAVE_ALSA" = "x1" \) ; then
663     PKG_CHECK_MODULES(HAL, [ hal >= 0.5.7 ],
664         HAVE_HAL=1,
665         [
666             HAVE_HAL=0
667             if test "x$hal" = xyes ; then
668                 AC_MSG_ERROR([*** HAL support not found])
669             fi
670         ])
671 else
672     HAVE_HAL=0
675 AC_SUBST(HAL_CFLAGS)
676 AC_SUBST(HAL_LIBS)
677 AC_SUBST(HAVE_HAL)
678 AM_CONDITIONAL([HAVE_HAL], [test "x$HAVE_HAL" = x1])
680 #### PulseAudio system group & user  #####
682 AC_ARG_WITH(system_user, AS_HELP_STRING([--with-system-user=<user>],[User for running the PulseAudio daemon as a system-wide instance (pulse)]))
683 if test -z "$with_system_user" ; then
684     PA_SYSTEM_USER=pulse
685 else
686     PA_SYSTEM_USER=$with_system_user
688 AC_SUBST(PA_SYSTEM_USER)
689 AC_DEFINE_UNQUOTED(PA_SYSTEM_USER,"$PA_SYSTEM_USER", [User for running the PulseAudio system daemon])
691 AC_ARG_WITH(system_group,AS_HELP_STRING([--with-system-group=<group>],[Group for running the PulseAudio daemon as a system-wide instance (pulse)]))
692 if test -z "$with_system_group" ; then
693     PA_SYSTEM_GROUP=pulse
694 else
695     PA_SYSTEM_GROUP=$with_system_group
697 AC_SUBST(PA_SYSTEM_GROUP)
698 AC_DEFINE_UNQUOTED(PA_SYSTEM_GROUP,"$PA_SYSTEM_GROUP", [Group for the PulseAudio system daemon])
700 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)]))
701 if test -z "$with_realtime_group" ; then
702     PA_REALTIME_GROUP=realtime
703 else
704     PA_REALTIME_GROUP=$with_realtime_group
706 AC_SUBST(PA_REALTIME_GROUP)
707 AC_DEFINE_UNQUOTED(PA_REALTIME_GROUP,"$PA_REALTIME_GROUP", [Realtime group])
709 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)]))
710 if test -z "$with_access_group" ; then
711     PA_ACCESS_GROUP=pulse-access
712 else
713     PA_ACCESS_GROUP=$with_access_group
715 AC_SUBST(PA_ACCESS_GROUP)
716 AC_DEFINE_UNQUOTED(PA_ACCESS_GROUP,"$PA_ACCESS_GROUP", [Access group])
718 #### PulseAudio system runtime dir ####
719 PA_SYSTEM_RUNTIME_PATH="${localstatedir}/run/pulse"
720 AC_SUBST(PA_SYSTEM_RUNTIME_PATH)
722 ###################################
723 #            Output               #
724 ###################################
726 AC_ARG_ENABLE(
727         [static-bins],
728         AC_HELP_STRING([--enable-static-bins],[Statically link executables.]),
729         [STATIC_BINS=1], [STATIC_BINS=0])
730 AM_CONDITIONAL([STATIC_BINS], [test "x$STATIC_BINS" = "x1"])
732 AC_ARG_WITH(
733         [preopen-mods],
734         AC_HELP_STRING([--with-preopen-mods],[Modules to preopen in daemon (default: all).]),
735         [PREOPEN_MODS=$withval], [PREOPEN_MODS="all"])
736 AM_CONDITIONAL([PREOPEN_MODS], [test "x$PREOPEN_MODS" != "xall"])
737 if test "x$PREOPEN_MODS" != "xall" ; then
738     tmpLIBS=""
739     for mod in $PREOPEN_MODS; do
740         tmpLIBS="$tmpLIBS module-$mod.la"
741     done
742     PREOPEN_MODS="$tmpLIBS"
743     AC_SUBST(PREOPEN_MODS)
746 AC_ARG_WITH(
747         [module-dir],
748         AC_HELP_STRING([--with-module-dir],[Directory where to install the modules to (defaults to ${libdir}/pulse-${PA_MAJORMINOR}/modules/]),
749         [modlibexecdir=$withval], [modlibexecdir="${libdir}/pulse-${PA_MAJORMINOR}/modules/"])
751 AC_SUBST(modlibexecdir)
753 AC_ARG_ENABLE(
754         [force-preopen],
755         AC_HELP_STRING([--enable-force-preopen],[Preopen modules, even when dlopen() is supported.]),
756         [FORCE_PREOPEN=1], [FORCE_PREOPEN=0])
757 AM_CONDITIONAL([FORCE_PREOPEN], [test "x$FORCE_PREOPEN" = "x1"])
759 AC_CONFIG_FILES([
760 Makefile
761 src/Makefile
762 libpulse.pc
763 libpulse-simple.pc
764 libpulse-browse.pc
765 libpulse-mainloop-glib.pc
766 doxygen/Makefile
767 doxygen/doxygen.conf
768 src/pulse/version.h
770 AC_OUTPUT
772 # ==========================================================================
773 ENABLE_X11=no
774 if test "x$HAVE_X11" = "x1" ; then
775    ENABLE_X11=yes
778 ENABLE_OSS=no
779 if test "x$HAVE_OSS" = "x1" ; then
780    ENABLE_OSS=yes
783 ENABLE_ALSA=no
784 if test "x$HAVE_ALSA" = "x1" ; then
785    ENABLE_ALSA=yes
788 ENABLE_SOLARIS=no
789 if test "x$HAVE_SOLARIS" = "x1" ; then
790    ENABLE_SOLARIS=yes
793 ENABLE_GLIB20=no
794 if test "x$HAVE_GLIB20" = "x1" ; then
795    ENABLE_GLIB20=yes
798 ENABLE_GCONF=no
799 if test "x$HAVE_GCONF" = "x1" ; then
800    ENABLE_GCONF=yes
803 ENABLE_AVAHI=no
804 if test "x$HAVE_AVAHI" = "x1" ; then
805    ENABLE_AVAHI=yes
808 ENABLE_JACK=no
809 if test "x$HAVE_JACK" = "x1" ; then
810    ENABLE_JACK=yes
813 ENABLE_LIBASYNCNS=no
814 if test "x$HAVE_LIBASYNCNS" = "x1" ; then
815    ENABLE_LIBASYNCNS=yes
818 ENABLE_LIRC=no
819 if test "x$HAVE_LIRC" = "x1" ; then
820    ENABLE_LIRC=yes
823 ENABLE_HAL=no
824 if test "x$HAVE_HAL" = "x1" ; then
825    ENABLE_HAL=yes
828 ENABLE_TCPWRAP=no
829 if test "x${LIBWRAP_LIBS}" != x ; then
830    ENABLE_TCPWRAP=yes
833 echo "
834  ---{ $PACKAGE_NAME $VERSION }---
836     prefix:                 ${prefix}
837     sysconfdir:             ${sysconfdir}
838     localstatedir:          ${localstatedir}
839     System Runtime Path:    ${PA_SYSTEM_RUNTIME_PATH}
840     Compiler:               ${CC}
841     CFLAGS:                 ${CFLAGS}
842     Have X11:               ${ENABLE_X11}
843     Enable OSS:             ${ENABLE_OSS}
844     Enable Alsa:            ${ENABLE_ALSA}
845     Enable Solaris:         ${ENABLE_SOLARIS}
846     Enable GLib 2.0:        ${ENABLE_GLIB20}
847     Enable GConf:           ${ENABLE_GCONF}
848     Enable Avahi:           ${ENABLE_AVAHI}
849     Enable Jack:            ${ENABLE_JACK}
850     Enable Async DNS:       ${ENABLE_LIBASYNCNS}
851     Enable LIRC:            ${ENABLE_LIRC}
852     Enable HAL:             ${ENABLE_HAL}
853     Enable TCP Wrappers:    ${ENABLE_TCPWRAP}
854     System User:            ${PA_SYSTEM_USER}
855     System Group:           ${PA_SYSTEM_GROUP}
856     Realtime Group:         ${PA_REALTIME_GROUP}
857     Access Group:           ${PA_ACCESS_GROUP}