2 # Process this file with autoconf to produce a configure script.
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.
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 ####
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)
60 #### Checks for programs. ####
65 AC_PROG_GCC_TRADITIONAL
70 AC_PATH_PROG([M4], [m4 gm4], [no])
71 if test "x$M4" = xno ; then
72 AC_MSG_ERROR([m4 missing])
78 AC_LANG_CONFTEST([int main() {}])
79 $CC -c conftest.c $CFLAGS $@ > /dev/null 2> /dev/null
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"
103 #### libtool stuff ####
105 AC_LTDL_ENABLE_INSTALL
106 AC_LIBLTDL_INSTALLABLE
112 AC_CONFIG_SUBDIRS(libltdl)
114 if test "x$enable_ltdl_install" = "xno" && test "x$ac_cv_lib_ltdl_lt_dlinit" = "xno" ; then
117 *** Cannot find the libltdl development files.
118 *** Maybe you need to install the libltdl-dev package.
122 #### Determine build environment ####
128 AC_DEFINE([OS_IS_WIN32], 1, [Build target is Windows.])
133 AM_CONDITIONAL(OS_IS_WIN32, test "x$os_is_win32" = "x1")
135 ###################################
136 # Basic environment checks #
137 ###################################
139 #### Checks for header files. ####
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 \
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")
156 AC_CHECK_HEADERS([sys/poll.h])
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])
166 AC_CHECK_HEADERS([sys/filio.h])
169 AC_CHECK_HEADERS([windows.h winsock2.h ws2tcpip.h])
172 AC_CHECK_HEADERS([sys/ioctl.h])
174 #### Typdefs, structures, etc. ####
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.])])
186 AC_CHECK_DEFINE([SIGXCPU], [signal.h], [
188 AC_DEFINE([HAVE_SIGXCPU], 1, [Have SIGXCPU?])
190 AM_CONDITIONAL(HAVE_SIGXCPU, test "x$HAVE_SIGXCPU" = "x1")
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 ####
200 AC_SEARCH_LIBS([pow], [m])
203 AC_SEARCH_LIBS([sched_setscheduler], [rt])
204 AC_SEARCH_LIBS([dlopen], [dl])
205 AC_SEARCH_LIBS([shm_open], [rt])
208 AC_SEARCH_LIBS([connect], [socket])
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 ####
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")
230 AC_CHECK_FUNCS([readlink])
233 AC_CHECK_FUNCS([ctime_r usleep])
236 AC_CHECK_FUNCS([strerror_r])
239 AC_CHECK_FUNCS([lstat])
243 AC_CHECK_FUNCS([setresuid setresgid setreuid setregid seteuid setegid])
245 #### POSIX threads ####
249 #### Large File-Support (LFS) ####
253 # Check for open64 to know if the current system does have open64() and similar functions
254 AC_CHECK_FUNCS([open64])
260 ###################################
261 # External libraries #
262 ###################################
264 #### X11 (optional) ####
268 # The macro tests the host, not the build target
269 if test "x$os_is_win32" != "x1" ; then
271 test "x$no_x" != "xyes" && HAVE_X11=1
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) ####
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])
293 AC_CHECK_HEADERS([sys/capability.h], [], [
294 if test "x${with_caps}" = "xyes" ; then
295 AC_MSG_ERROR([*** POSIX caps headers not found])
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)
311 #### Sample rate conversion ####
313 PKG_CHECK_MODULES(LIBSAMPLERATE, [ samplerate >= 0.1.0 ])
314 AC_SUBST(LIBSAMPLERATE_CFLAGS)
315 AC_SUBST(LIBSAMPLERATE_LIBS)
319 PKG_CHECK_MODULES(LIBSNDFILE, [ sndfile >= 1.0.10 ])
320 AC_SUBST(LIBSNDFILE_CFLAGS)
321 AC_SUBST(LIBSNDFILE_LIBS)
325 AC_CHECK_HEADERS([atomic_ops.h], [], [
326 AC_MSG_ERROR([*** libatomic-ops headers not found])
329 # Win32 does not need the lib and breaks horribly if we try to include it
330 if test "x$os_is_win32" != "x1" ; then
331 LIBS="$LIBS -latomic_ops"
334 #### OSS support (optional) ####
337 AC_HELP_STRING([--disable-oss], [Disable optional OSS support]),
339 case "${enableval}" in
342 *) AC_MSG_ERROR(bad value ${enableval} for --disable-oss) ;;
347 if test "x${oss}" != xno ; then
348 AC_CHECK_HEADERS([sys/soundcard.h],
351 AC_DEFINE([HAVE_OSS], 1, [Have OSS?])
355 if test "x$oss" = xyes ; then
356 AC_MSG_ERROR([*** OSS support not found])
364 AM_CONDITIONAL([HAVE_OSS], [test "x$HAVE_OSS" = x1])
367 #### ALSA support (optional) ####
369 AC_ARG_ENABLE([alsa],
370 AC_HELP_STRING([--disable-alsa], [Disable optional ALSA support]),
372 case "${enableval}" in
375 *) AC_MSG_ERROR(bad value ${enableval} for --disable-alsa) ;;
380 if test "x${alsa}" != xno ; then
381 PKG_CHECK_MODULES(ASOUNDLIB, [ alsa >= 1.0.0 ],
384 AC_DEFINE([HAVE_ALSA], 1, [Have ALSA?])
388 if test "x$alsa" = xyes ; then
389 AC_MSG_ERROR([*** ALSA support not found])
396 AC_SUBST(ASOUNDLIB_CFLAGS)
397 AC_SUBST(ASOUNDLIB_LIBS)
399 AM_CONDITIONAL([HAVE_ALSA], [test "x$HAVE_ALSA" = x1])
401 #### Solaris audio support (optional) ####
403 AC_ARG_ENABLE([solaris],
404 AC_HELP_STRING([--disable-solaris], [Disable optional Solaris audio support]),
406 case "${enableval}" in
409 *) AC_MSG_ERROR(bad value ${enableval} for --disable-solaris) ;;
414 if test "x${solaris}" != xno ; then
415 AC_CHECK_HEADERS([sys/audio.h],
418 AC_DEFINE([HAVE_SOLARIS], 1, [Have Solaris audio?])
422 if test "x$solaris" = xyes ; then
423 AC_MSG_ERROR([*** Solaris audio support not found])
430 AC_SUBST(HAVE_SOLARIS)
431 AM_CONDITIONAL([HAVE_SOLARIS], [test "x$HAVE_SOLARIS" = x1])
433 #### GLib 2 support (optional) ####
435 AC_ARG_ENABLE([glib2],
436 AC_HELP_STRING([--disable-glib2], [Disable optional GLib 2 support]),
438 case "${enableval}" in
441 *) AC_MSG_ERROR(bad value ${enableval} for --disable-glib2) ;;
446 if test "x${glib2}" != xno ; then
447 PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ],
451 if test "x$glib2" = xyes ; then
452 AC_MSG_ERROR([*** GLib 2 support not found])
459 AC_SUBST(GLIB20_CFLAGS)
460 AC_SUBST(GLIB20_LIBS)
461 AC_SUBST(HAVE_GLIB20)
462 AM_CONDITIONAL([HAVE_GLIB20], [test "x$HAVE_GLIB20" = x1])
464 #### GConf support (optional) ####
466 AC_ARG_ENABLE([gconf],
467 AC_HELP_STRING([--disable-gconf], [Disable optional GConf support]),
469 case "${enableval}" in
472 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gconf) ;;
477 if test "x${gconf}" != xno ; then
478 PKG_CHECK_MODULES(GCONF, [ gconf-2.0 >= 2.4.0 ],
482 if test "x$gconf" = xyes ; then
483 AC_MSG_ERROR([*** GConf support not found])
490 AC_SUBST(GCONF_CFLAGS)
493 AM_CONDITIONAL([HAVE_GCONF], [test "x$HAVE_GCONF" = x1])
495 #### Avahi support (optional) ####
497 AC_ARG_ENABLE([avahi],
498 AC_HELP_STRING([--disable-avahi], [Disable optional Avahi support]),
500 case "${enableval}" in
503 *) AC_MSG_ERROR(bad value ${enableval} for --disable-avahi) ;;
508 if test "x${avahi}" != xno ; then
509 PKG_CHECK_MODULES(AVAHI, [ avahi-client >= 0.6.0 ],
513 if test "x$avahi" = xyes ; then
514 AC_MSG_ERROR([*** Avahi support not found])
521 AC_SUBST(AVAHI_CFLAGS)
524 AM_CONDITIONAL([HAVE_AVAHI], [test "x$HAVE_AVAHI" = x1])
528 PKG_CHECK_MODULES(LIBOIL, [ liboil-0.3 >= 0.3.0 ])
529 AC_SUBST(LIBOIL_CFLAGS)
530 AC_SUBST(LIBOIL_LIBS)
532 ### JACK (optional) ####
534 AC_ARG_ENABLE([jack],
535 AC_HELP_STRING([--disable-jack], [Disable optional JACK support]),
537 case "${enableval}" in
540 *) AC_MSG_ERROR(bad value ${enableval} for --disable-jack) ;;
545 if test "x${jack}" != xno ; then
546 PKG_CHECK_MODULES(JACK, [ jack >= 0.100 ],
550 if test "x$jack" = xyes ; then
551 AC_MSG_ERROR([*** JACK support not found])
558 AC_SUBST(JACK_CFLAGS)
561 AM_CONDITIONAL([HAVE_JACK], [test "x$HAVE_JACK" = x1])
563 #### Async DNS support (optional) ####
565 AC_ARG_ENABLE([asyncns],
566 AC_HELP_STRING([--disable-asyncns], [Disable optional Async DNS support]),
568 case "${enableval}" in
571 *) AC_MSG_ERROR(bad value ${enableval} for --disable-asyncns) ;;
576 if test "x${asyncns}" != xno ; then
577 PKG_CHECK_MODULES(LIBASYNCNS, [ libasyncns >= 0.1 ],
581 if test "x$asyncns" = xyes ; then
582 AC_MSG_ERROR([*** Async DNS support not found])
589 AC_SUBST(LIBASYNCNS_CFLAGS)
590 AC_SUBST(LIBASYNCNS_LIBS)
591 AC_SUBST(HAVE_LIBASYNCNS)
592 AM_CONDITIONAL([HAVE_LIBASYNCNS], [test "x$HAVE_LIBASYNCNS" = x1])
594 if test "x$HAVE_LIBASYNCNS" != "x0" ; then
595 AC_DEFINE([HAVE_LIBASYNCNS], 1, [Have libasyncns?])
598 #### TCP wrappers (optional) ####
600 AC_ARG_ENABLE([tcpwrap],
601 AC_HELP_STRING([--disable-tcpwrap], [Disable optional TCP wrappers support]),
603 case "${enableval}" in
606 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
611 if test "x${tcpwrap}" != xno ; then
613 if test "x${LIBWRAP_LIBS}" = x && test "x$tcpwrap" = xyes ; then
614 AC_MSG_ERROR([*** TCP wrappers support not found])
620 AC_SUBST(LIBWRAP_LIBS)
622 #### LIRC support (optional) ####
624 AC_ARG_ENABLE([lirc],
625 AC_HELP_STRING([--disable-lirc], [Disable optional LIRC support]),
627 case "${enableval}" in
630 *) AC_MSG_ERROR(bad value ${enableval} for --disable-lirc) ;;
635 if test "x${lirc}" != xno ; then
637 if test "x${HAVE_LIRC}" = x0 && test "x$lirc" = xyes ; then
638 AC_MSG_ERROR([*** LIRC support not found])
644 AC_SUBST(LIRC_CFLAGS)
646 AM_CONDITIONAL([HAVE_LIRC], [test "x$HAVE_LIRC" = x1])
648 #### HAL support (optional) ####
651 AC_HELP_STRING([--disable-hal], [Disable optional HAL support]),
653 case "${enableval}" in
656 *) AC_MSG_ERROR(bad value ${enableval} for --disable-hal) ;;
661 if test "x${hal}" != xno -a \( "x$HAVE_OSS" = "x1" -o "x$HAVE_ALSA" = "x1" \) ; then
662 PKG_CHECK_MODULES(HAL, [ hal >= 0.5.7 ],
666 if test "x$hal" = xyes ; then
667 AC_MSG_ERROR([*** HAL support not found])
677 AM_CONDITIONAL([HAVE_HAL], [test "x$HAVE_HAL" = x1])
679 #### PulseAudio system group & user #####
681 AC_ARG_WITH(system_user, AS_HELP_STRING([--with-system-user=<user>],[User for running the PulseAudio daemon as a system-wide instance (pulse)]))
682 if test -z "$with_system_user" ; then
685 PA_SYSTEM_USER=$with_system_user
687 AC_SUBST(PA_SYSTEM_USER)
688 AC_DEFINE_UNQUOTED(PA_SYSTEM_USER,"$PA_SYSTEM_USER", [User for running the PulseAudio system daemon])
690 AC_ARG_WITH(system_group,AS_HELP_STRING([--with-system-group=<group>],[Group for running the PulseAudio daemon as a system-wide instance (pulse)]))
691 if test -z "$with_system_group" ; then
692 PA_SYSTEM_GROUP=pulse
694 PA_SYSTEM_GROUP=$with_system_group
696 AC_SUBST(PA_SYSTEM_GROUP)
697 AC_DEFINE_UNQUOTED(PA_SYSTEM_GROUP,"$PA_SYSTEM_GROUP", [Group for the PulseAudio system daemon])
699 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)]))
700 if test -z "$with_realtime_group" ; then
701 PA_REALTIME_GROUP=realtime
703 PA_REALTIME_GROUP=$with_realtime_group
705 AC_SUBST(PA_REALTIME_GROUP)
706 AC_DEFINE_UNQUOTED(PA_REALTIME_GROUP,"$PA_REALTIME_GROUP", [Realtime group])
708 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)]))
709 if test -z "$with_access_group" ; then
710 PA_ACCESS_GROUP=pulse-access
712 PA_ACCESS_GROUP=$with_access_group
714 AC_SUBST(PA_ACCESS_GROUP)
715 AC_DEFINE_UNQUOTED(PA_ACCESS_GROUP,"$PA_ACCESS_GROUP", [Access group])
717 #### PulseAudio system runtime dir ####
718 PA_SYSTEM_RUNTIME_PATH="${localstatedir}/run/pulse"
719 AC_SUBST(PA_SYSTEM_RUNTIME_PATH)
721 ###################################
723 ###################################
727 AC_HELP_STRING([--enable-static-bins],[Statically link executables.]),
728 [STATIC_BINS=1], [STATIC_BINS=0])
729 AM_CONDITIONAL([STATIC_BINS], [test "x$STATIC_BINS" = "x1"])
733 AC_HELP_STRING([--with-preopen-mods],[Modules to preopen in daemon (default: all).]),
734 [PREOPEN_MODS=$withval], [PREOPEN_MODS="all"])
735 AM_CONDITIONAL([PREOPEN_MODS], [test "x$PREOPEN_MODS" != "xall"])
736 if test "x$PREOPEN_MODS" != "xall" ; then
738 for mod in $PREOPEN_MODS; do
739 tmpLIBS="$tmpLIBS module-$mod.la"
741 PREOPEN_MODS="$tmpLIBS"
742 AC_SUBST(PREOPEN_MODS)
747 AC_HELP_STRING([--with-module-dir],[Directory where to install the modules to (defaults to ${libdir}/pulse-${PA_MAJORMINOR}/modules/]),
748 [modlibexecdir=$withval], [modlibexecdir="${libdir}/pulse-${PA_MAJORMINOR}/modules/"])
750 AC_SUBST(modlibexecdir)
754 AC_HELP_STRING([--enable-force-preopen],[Preopen modules, even when dlopen() is supported.]),
755 [FORCE_PREOPEN=1], [FORCE_PREOPEN=0])
756 AM_CONDITIONAL([FORCE_PREOPEN], [test "x$FORCE_PREOPEN" = "x1"])
764 libpulse-mainloop-glib.pc
771 # ==========================================================================
773 if test "x$HAVE_X11" = "x1" ; then
778 if test "x$HAVE_OSS" = "x1" ; then
783 if test "x$HAVE_ALSA" = "x1" ; then
788 if test "x$HAVE_SOLARIS" = "x1" ; then
793 if test "x$HAVE_GLIB20" = "x1" ; then
798 if test "x$HAVE_GCONF" = "x1" ; then
803 if test "x$HAVE_AVAHI" = "x1" ; then
808 if test "x$HAVE_JACK" = "x1" ; then
813 if test "x$HAVE_LIBASYNCNS" = "x1" ; then
814 ENABLE_LIBASYNCNS=yes
818 if test "x$HAVE_LIRC" = "x1" ; then
823 if test "x$HAVE_HAL" = "x1" ; then
828 if test "x${LIBWRAP_LIBS}" != x ; then
833 ---{ $PACKAGE_NAME $VERSION }---
836 sysconfdir: ${sysconfdir}
837 localstatedir: ${localstatedir}
838 System Runtime Path: ${PA_SYSTEM_RUNTIME_PATH}
841 Have X11: ${ENABLE_X11}
842 Enable OSS: ${ENABLE_OSS}
843 Enable Alsa: ${ENABLE_ALSA}
844 Enable Solaris: ${ENABLE_SOLARIS}
845 Enable GLib 2.0: ${ENABLE_GLIB20}
846 Enable GConf: ${ENABLE_GCONF}
847 Enable Avahi: ${ENABLE_AVAHI}
848 Enable Jack: ${ENABLE_JACK}
849 Enable Async DNS: ${ENABLE_LIBASYNCNS}
850 Enable LIRC: ${ENABLE_LIRC}
851 Enable HAL: ${ENABLE_HAL}
852 Enable TCP Wrappers: ${ENABLE_TCPWRAP}
853 System User: ${PA_SYSTEM_USER}
854 System Group: ${PA_SYSTEM_GROUP}
855 Realtime Group: ${PA_REALTIME_GROUP}
856 Access Group: ${PA_ACCESS_GROUP}