]> code.delx.au - pulseaudio/blob - configure.ac
add i18n support
[pulseaudio] / configure.ac
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 # This file is part of PulseAudio.
5 #
6 # Copyright 2004-2008 Lennart Poettering
7 # Copyright 2006-2007 Pierre Ossman <ossman@cendio.se> for Cendio AB
8 #
9 # PulseAudio is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU Lesser General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
13 #
14 # PulseAudio is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # General Public License for more details.
18 #
19 # You should have received a copy of the GNU Lesser General Public License
20 # along with PulseAudio; if not, write to the Free Software Foundation,
21 # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22
23 AC_PREREQ(2.60)
24
25 m4_define(PA_MAJOR, [0])
26 m4_define(PA_MINOR, [9])
27 m4_define(PA_MICRO, [11])
28
29 AC_INIT([pulseaudio], PA_MAJOR.PA_MINOR.PA_MICRO,[mzchyfrnhqvb (at) 0pointer (dot) net])
30 AC_CONFIG_SRCDIR([src/daemon/main.c])
31 AC_CONFIG_HEADERS([config.h])
32 AM_INIT_AUTOMAKE([foreign 1.10 -Wall])
33
34 AC_SUBST(PA_MAJORMINOR, "PA_MAJOR.PA_MINOR")
35 AC_SUBST(PACKAGE_URL, [http://pulseaudio.org/])
36
37 AC_SUBST(PA_API_VERSION, 12)
38 AC_SUBST(PA_PROTOCOL_VERSION, 14)
39
40 # The stable ABI for client applications, for the version info x:y:z
41 # always will hold y=z
42 AC_SUBST(LIBPULSE_VERSION_INFO, [5:0:5])
43
44 # A simplified, synchronous, ABI-stable interface for client
45 # applications, for the version info x:y:z always will hold y=z
46 AC_SUBST(LIBPULSE_SIMPLE_VERSION_INFO, [0:1:0])
47
48 # The ABI-stable network browsing interface for client applications,
49 # for the version info x:y:z always will hold y=z
50 AC_SUBST(LIBPULSE_BROWSE_VERSION_INFO, [1:1:1])
51
52 # The ABI-stable GLib adapter for client applications, for the version
53 # info x:y:z always will hold y=z
54 AC_SUBST(LIBPULSE_MAINLOOP_GLIB_VERSION_INFO, [0:3:0])
55
56 # An internally used, ABI-unstable library that contains the
57 # PulseAudio core, SONAMEs are bumped on every release, version info
58 # suffix will always be 0:0
59 AC_SUBST(LIBPULSECORE_VERSION_INFO, [6:0:0])
60
61 AC_CANONICAL_HOST
62 AC_DEFINE_UNQUOTED([CANONICAL_HOST], "$host", [Canonical host string.])
63
64 if type -p stow > /dev/null && test -d /usr/local/stow ; then
65 AC_MSG_NOTICE([*** Found /usr/local/stow: default install prefix set to /usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION} ***])
66 ac_default_prefix="/usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION}"
67 fi
68
69 #### Platform hacks ####
70
71 case $host in
72 *-*-solaris* )
73 AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
74 AC_DEFINE(_XOPEN_SOURCE, 2, Needed to get declarations for msg_control and msg_controllen on Solaris)
75 AC_DEFINE(__EXTENSIONS__, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
76 ;;
77 esac
78
79 #### Checks for programs. ####
80
81 # mkdir -p
82
83 AC_PROG_MKDIR_P
84
85 # CC
86
87 AC_PROG_CC
88 AM_PROG_CC_C_O
89 AC_PROG_GCC_TRADITIONAL
90 AC_GNU_SOURCE
91
92 # M4
93
94 AC_PATH_PROG([M4], [m4 gm4], [no])
95 if test "x$M4" = xno ; then
96 AC_MSG_ERROR([m4 missing])
97 fi
98
99 # GCC flags
100
101 test_gcc_flag() {
102 AC_LANG_CONFTEST([int main(int argc, char*argv[]) {}])
103 $CC -c conftest.c $CFLAGS -o conftest.o > /dev/null 2> /dev/null
104 ret=$?
105 rm -f conftest.o
106 return $ret
107 }
108
109 # If using GCC specify some additional parameters
110 if test "x$GCC" = "xyes" ; then
111
112 # We use gnu99 instead of c99 because many have interpreted the standard
113 # in a way that int64_t isn't defined on non-64 bit platforms.
114 DESIRED_FLAGS="-std=gnu99 -Wall -W -Wextra -pedantic -pipe -Wformat -Wold-style-definition -Wdeclaration-after-statement -Wfloat-equal -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls -Wmissing-noreturn -Wshadow -Wendif-labels -Wpointer-arith -Wcast-align -Wwrite-strings -Winline -Wno-unused-parameter -ffast-math"
115
116 for flag in $DESIRED_FLAGS ; do
117 AC_MSG_CHECKING([whether $CC accepts $flag])
118 if test_gcc_flag $flag ; then
119 CFLAGS="$CFLAGS $flag"
120 AC_MSG_RESULT([yes])
121 else
122 AC_MSG_RESULT([no])
123 fi
124 done
125 fi
126
127 # Native atomic operation support
128 AC_ARG_ENABLE([atomic-arm-linux-helpers],
129 AC_HELP_STRING([--disable-atomic-arm-linux-helpers], [use inline asm or libatomic_ops instead]),
130 [
131 case "${enableval}" in
132 yes) atomic_arm_linux_helpers=yes ;;
133 no) atomic_arm_linux_helpers=no ;;
134 *) AC_MSG_ERROR(bad value ${enableval} for --disable-atomic-arm-linux-helpers) ;;
135 esac
136 ],
137 [atomic_arm_linux_helpers=auto])
138
139 AC_ARG_ENABLE([atomic-arm-memory-barrier],
140 AC_HELP_STRING([--enable-atomic-arm-memory-barrier], [only really needed in SMP arm systems]),
141 [
142 case "${enableval}" in
143 yes) AC_DEFINE_UNQUOTED(ATOMIC_ARM_MEMORY_BARRIER_ENABLED, 1, [Enable memory barriers]) ;;
144 no) ;;
145 *) AC_MSG_ERROR(bad value ${enableval} for --disable-atomic-arm-linux-helpers) ;;
146 esac
147 ],)
148
149 AC_MSG_CHECKING([target operating system])
150 case $host in
151 *-*-linux*)
152 AC_MSG_RESULT([linux])
153 pulse_target_os=linux
154 ;;
155 *)
156 AC_MSG_RESULT([unknown])
157 pulse_target_os=unknown
158 ;;
159 esac
160
161 # If everything else fails use libatomic_ops
162 need_libatomic_ops=yes
163
164 AC_MSG_CHECKING([whether $CC knows __sync_bool_compare_and_swap()])
165 AC_LANG_CONFTEST([int main() { int a = 4; __sync_bool_compare_and_swap(&a, 4, 5); }])
166 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
167 ret=$?
168 rm -f conftest.o conftest
169 if test $ret -eq 0 ; then
170 AC_DEFINE([HAVE_ATOMIC_BUILTINS], 1, [Have __sync_bool_compare_and_swap() and friends.])
171 AC_MSG_RESULT([yes])
172 need_libatomic_ops=no
173 else
174 AC_MSG_RESULT([no])
175 # HW specific atomic ops stuff
176 AC_MSG_CHECKING([architecture for native atomic operations])
177 case $host_cpu in
178 arm*)
179 AC_MSG_RESULT([arm])
180 AC_MSG_CHECKING([whether we can use Linux kernel helpers])
181 # The Linux kernel helper functions have been there since 2.6.16. However
182 # compile time checking for kernel version in cross compile environment
183 # (which is usually the case for arm cpu) is tricky (or impossible).
184 if test "x$pulse_target_os" = "xlinux" && test "x$atomic_arm_linux_helpers" != "xno"; then
185 AC_MSG_RESULT([yes])
186 AC_DEFINE_UNQUOTED(ATOMIC_ARM_LINUX_HELPERS, 1, [special arm linux implementation])
187 need_libatomic_ops=no
188 else
189 AC_MSG_RESULT([no])
190 AC_MSG_CHECKING([compiler support for arm inline asm atomic operations])
191 AC_LANG_CONFTEST([[int main()
192 {
193 volatile int a=0;
194 int o=0, n=1, r;
195 asm volatile ("ldrex %0, [%1]\n"
196 "subs %0, %0, %2\n"
197 "strexeq %0, %3, [%1]\n"
198 : "=&r" (r)
199 : "r" (&a), "Ir" (o), "r" (n)
200 : "cc");
201 return (a==1 ? 0 : -1);
202 }]])
203 $CC conftest.c $CFLAGS -o conftest > /dev/null 2>&1
204 ret=$?
205 rm -f conftest.o conftest
206 if test $ret -eq 0 ; then
207 AC_DEFINE([ATOMIC_ARM_INLINE_ASM], 1, [Have ARMv6 instructions.])
208 AC_MSG_RESULT([yes])
209 need_libatomic_ops=no
210 else
211 AC_MSG_RESULT([no])
212 fi
213 fi
214 ;;
215 *)
216 AC_MSG_RESULT([unknown])
217 ;;
218 esac
219 fi
220
221 AC_MSG_CHECKING([whether $CC knows __thread])
222 AC_LANG_CONFTEST([static __thread int a = 6; int main() { a = 5; }])
223 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
224 ret=$?
225 rm -f conftest.o conftest
226 if test $ret -eq 0 ; then
227 AC_DEFINE([HAVE_TLS_BUILTIN], 1, [Have __thread().])
228 AC_MSG_RESULT([yes])
229 else
230 AC_MSG_RESULT([no])
231 fi
232
233 AC_MSG_CHECKING([whether $CC knows _Bool])
234 AC_LANG_CONFTEST([int main() { _Bool b; }])
235 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
236 ret=$?
237 rm -f conftest.o conftest
238 if test $ret -eq 0 ; then
239 AC_DEFINE([HAVE_STD_BOOL], 1, [Have _Bool.])
240 AC_MSG_RESULT([yes])
241 else
242 AC_MSG_RESULT([no])
243 fi
244
245 #### libtool stuff ####
246
247 AC_LTDL_ENABLE_INSTALL
248 AC_LIBLTDL_INSTALLABLE
249 AC_LIBTOOL_DLOPEN
250 AC_LIBTOOL_WIN32_DLL
251 AC_PROG_LIBTOOL
252 AC_SUBST(LTDLINCL)
253 AC_SUBST(LIBLTDL)
254 AC_CONFIG_SUBDIRS(libltdl)
255
256 old_LIBS=$LIBS
257 LIBS="$LIBS $LIBLTDL"
258 AC_CHECK_FUNCS([lt_dlmutex_register])
259 LIBS=$old_LIBS
260 AC_CHECK_TYPES([struct lt_user_dlloader, lt_dladvise], , , [#include <ltdl.h>])
261
262 if test "x$enable_ltdl_install" = "xno" && test "x$ac_cv_lib_ltdl_lt_dlinit" = "xno" ; then
263 AC_MSG_ERROR([[
264
265 *** Cannot find the libltdl development files.
266 *** Maybe you need to install the libltdl-dev package.
267 ]])
268 fi
269
270 #### Determine build environment ####
271
272 os_is_win32=0
273
274 case "$host_os" in
275 mingw*)
276 AC_DEFINE([OS_IS_WIN32], 1, [Build target is Windows.])
277 os_is_win32=1
278 ;;
279 esac
280
281 AM_CONDITIONAL(OS_IS_WIN32, test "x$os_is_win32" = "x1")
282
283 ###################################
284 # Basic environment checks #
285 ###################################
286
287 #### Checks for header files. ####
288
289 # ISO
290 AC_HEADER_STDC
291
292 # POSIX
293 AC_CHECK_HEADERS([arpa/inet.h glob.h grp.h netdb.h netinet/in.h \
294 netinet/in_systm.h netinet/tcp.h poll.h pwd.h sched.h \
295 sys/mman.h sys/resource.h sys/select.h sys/socket.h sys/wait.h \
296 syslog.h sys/dl.h dlfcn.h linux/sockios.h])
297 AC_CHECK_HEADERS([netinet/ip.h], [], [],
298 [#include <sys/types.h>
299 #if HAVE_NETINET_IN_H
300 # include <netinet/in.h>
301 #endif
302 #if HAVE_NETINET_IN_SYSTM_H
303 # include <netinet/in_systm.h>
304 #endif
305 ])
306 AC_CHECK_HEADERS([regex.h], [HAVE_REGEX=1], [HAVE_REGEX=0])
307 AC_CHECK_HEADERS([sys/un.h], [HAVE_AF_UNIX=1], [HAVE_AF_UNIX=0])
308
309 AM_CONDITIONAL(HAVE_REGEX, test "x$HAVE_REGEX" = "x1")
310 AM_CONDITIONAL(HAVE_AF_UNIX, test "x$HAVE_AF_UNIX" = "x1")
311
312 # Linux
313 AC_CHECK_HEADERS([linux/input.h], [HAVE_EVDEV=1], [HAVE_EVDEV=0])
314
315 AM_CONDITIONAL([HAVE_EVDEV], [test "x$HAVE_EVDEV" = "x1"])
316
317 AC_CHECK_HEADERS([sys/prctl.h])
318
319 # Solaris
320 AC_CHECK_HEADERS([sys/filio.h])
321
322 # Windows
323 AC_CHECK_HEADERS([windows.h winsock2.h ws2tcpip.h])
324
325 # Other
326 AC_CHECK_HEADERS([sys/ioctl.h])
327 AC_CHECK_HEADERS([byteswap.h])
328 AC_CHECK_HEADERS([sys/syscall.h])
329
330 #### Typdefs, structures, etc. ####
331
332 AC_C_CONST
333 AC_C_BIGENDIAN
334 AC_TYPE_PID_T
335 AC_TYPE_SIZE_T
336 AC_CHECK_TYPES(ssize_t, , [AC_DEFINE([ssize_t], [signed long],
337 [Define ssize_t if it is not done by the standard libs.])])
338 AC_TYPE_OFF_T
339 AC_TYPE_SIGNAL
340 AC_TYPE_UID_T
341 AC_CHECK_DECLS(environ)
342
343 AC_CHECK_DEFINE([SIGXCPU], [signal.h], [
344 HAVE_SIGXCPU=1
345 AC_DEFINE([HAVE_SIGXCPU], 1, [Have SIGXCPU?])
346 ], [HAVE_SIGXCPU=0])
347 AM_CONDITIONAL(HAVE_SIGXCPU, test "x$HAVE_SIGXCPU" = "x1")
348
349 # Solaris lacks this
350 AC_CHECK_DEFINE([INADDR_NONE], [netinet/in.h], [],
351 [AC_CHECK_DEFINE([INADDR_NONE], [winsock2.h], [],
352 [AC_DEFINE([INADDR_NONE], [0xffffffff], [Define INADDR_NONE if not found in <netinet/in.h>])])])
353
354 #### POSIX threads ####
355
356 ACX_PTHREAD
357
358 #### Check for libs ####
359
360 # ISO
361 AC_SEARCH_LIBS([pow], [m])
362
363 # POSIX
364 AC_SEARCH_LIBS([sched_setscheduler], [rt])
365 AC_SEARCH_LIBS([dlopen], [dl])
366 AC_SEARCH_LIBS([shm_open], [rt])
367 AC_SEARCH_LIBS([inet_ntop], [nsl])
368 AC_SEARCH_LIBS([timer_create], [rt])
369
370 # BSD
371 AC_SEARCH_LIBS([connect], [socket])
372
373 # Non-standard
374
375 # This magic is needed so we do not needlessly add static libs to the win32
376 # build, disabling its ability to make dlls.
377 AC_CHECK_FUNCS([getopt_long], [], [AC_CHECK_LIB([iberty], [getopt_long])])
378
379 AC_CHECK_LIB(gdbm, gdbm_open)
380 AC_CHECK_HEADERS(gdbm.h, [], [AC_MSG_ERROR([gdbm.h not found])])
381
382 #### Check for functions ####
383
384 # ISO
385 AC_CHECK_FUNCS([lrintf strtof])
386
387 # POSIX
388 AC_FUNC_FORK
389 AC_FUNC_GETGROUPS
390 AC_FUNC_SELECT_ARGTYPES
391 AC_CHECK_FUNCS([chmod chown clock_gettime getaddrinfo getgrgid_r \
392 getpwuid_r gettimeofday getuid inet_ntop inet_pton mlock nanosleep \
393 pipe posix_fadvise posix_madvise posix_memalign setpgid setsid shm_open \
394 sigaction sleep sysconf])
395 AC_CHECK_FUNCS([mkfifo], [HAVE_MKFIFO=1], [HAVE_MKFIFO=0])
396
397 AM_CONDITIONAL(HAVE_MKFIFO, test "x$HAVE_MKFIFO" = "x1")
398
399 # X/OPEN
400 AC_CHECK_FUNCS([readlink])
401
402 # SUSv2
403 AC_CHECK_FUNCS([ctime_r usleep])
404
405 # SUSv3
406 AC_CHECK_FUNCS([strerror_r])
407
408 # BSD
409 AC_CHECK_FUNCS([lstat])
410
411 # Non-standard
412
413 AC_CHECK_FUNCS([setresuid setresgid setreuid setregid seteuid setegid ppoll strsignal sig2str strtof_l])
414
415 AC_FUNC_ALLOCA
416
417 AC_MSG_CHECKING([for PTHREAD_PRIO_INHERIT])
418 AC_LANG_CONFTEST([AC_LANG_SOURCE([[
419 #include <pthread.h>
420 int main() { int i = PTHREAD_PRIO_INHERIT; }]])])
421 $PTHREAD_CC conftest.c $PTHREAD_CFLAGS $CFLAGS $PTHREAD_LIBS -o conftest > /dev/null 2> /dev/null
422 ret=$?
423 rm -f conftest.o conftest
424
425 if test $ret -eq 0 ; then
426 AC_DEFINE([HAVE_PTHREAD_PRIO_INHERIT], 1, [Have PTHREAD_PRIO_INHERIT.])
427 AC_MSG_RESULT([yes])
428 else
429 AC_MSG_RESULT([no])
430 fi
431
432 #### Large File-Support (LFS) ####
433
434 AC_SYS_LARGEFILE
435
436 # Check for open64 to know if the current system does have open64() and similar functions
437 AC_CHECK_FUNCS([open64])
438
439 #### [lib]iconv ####
440
441 AM_ICONV
442
443 AM_GNU_GETTEXT([external])
444
445 IT_PROG_INTLTOOL([0.35.0])
446 GETTEXT_PACKAGE=pulseaudio
447 AC_SUBST([GETTEXT_PACKAGE])
448 AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[Gettext package])
449 AM_GLIB_GNU_GETTEXT
450
451 pulselocaledir='${prefix}/${DATADIRNAME}/locale'
452 AC_SUBST(pulselocaledir)
453
454 ###################################
455 # External libraries #
456 ###################################
457
458 #### X11 (optional) ####
459
460 HAVE_X11=0
461
462 # The macro tests the host, not the build target
463 if test "x$os_is_win32" != "x1" ; then
464 AC_PATH_XTRA
465 test "x$no_x" != "xyes" && HAVE_X11=1
466 fi
467
468 AC_SUBST(HAVE_X11)
469 AM_CONDITIONAL(HAVE_X11, test "x$HAVE_X11" = "x1")
470 if test "x$HAVE_X11" = "x1" ; then
471 AC_DEFINE([HAVE_X11], 1, [Have X11])
472 fi
473
474 #### Capabilities (optional) ####
475
476 CAP_LIBS=''
477
478 AC_ARG_WITH(
479 [caps],
480 AC_HELP_STRING([--without-caps],[Omit support for POSIX capabilities.]))
481
482 if test "x${with_caps}" != "xno"; then
483 AC_SEARCH_LIBS([cap_init], [cap], [], [
484 if test "x${with_caps}" = "xyes" ; then
485 AC_MSG_ERROR([*** POSIX caps libraries not found])
486 fi])
487 AC_CHECK_HEADERS([sys/capability.h], [], [
488 if test "x${with_caps}" = "xyes" ; then
489 AC_MSG_ERROR([*** POSIX caps headers not found])
490 fi])
491 fi
492
493 #### pkg-config ####
494
495 # Check for pkg-config manually first, as if its not installed the
496 # PKG_PROG_PKG_CONFIG macro won't be defined.
497 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
498
499 if test x"$have_pkg_config" = "xno"; then
500 AC_MSG_ERROR(pkg-config is required to install this program)
501 fi
502
503 PKG_PROG_PKG_CONFIG
504
505 #### Sound file ####
506
507 PKG_CHECK_MODULES(LIBSNDFILE, [ sndfile >= 1.0.10 ])
508 AC_SUBST(LIBSNDFILE_CFLAGS)
509 AC_SUBST(LIBSNDFILE_LIBS)
510
511 PKG_CHECK_MODULES(LIBSPEEX, [ speexdsp >= 1.2 ])
512 AC_SUBST(LIBSPEEX_CFLAGS)
513 AC_SUBST(LIBSPEEX_LIBS)
514
515 #### atomic-ops ###
516
517 AC_MSG_CHECKING([whether we need libatomic_ops])
518 if test "x$need_libatomic_ops" = "xyes"; then
519 AC_MSG_RESULT([yes])
520 AC_CHECK_HEADERS([atomic_ops.h], [], [
521 AC_MSG_ERROR([*** libatomic-ops headers not found])
522 ])
523
524 # Win32 does not need the lib and breaks horribly if we try to include it
525 if test "x$os_is_win32" != "x1" ; then
526 LIBS="$LIBS -latomic_ops"
527 fi
528 else
529 AC_MSG_RESULT([no])
530 fi
531
532 #### Libsamplerate support (optional) ####
533
534 AC_ARG_ENABLE([samplerate],
535 AC_HELP_STRING([--disable-samplerate], [Disable optional libsamplerate support]),
536 [
537 case "${enableval}" in
538 yes) samplerate=yes ;;
539 no) samplerate=no ;;
540 *) AC_MSG_ERROR(bad value ${enableval} for --disable-samplerate) ;;
541 esac
542 ],
543 [samplerate=auto])
544
545 if test "x${samplerate}" != xno ; then
546 PKG_CHECK_MODULES(LIBSAMPLERATE, [ samplerate >= 0.1.0 ],
547 HAVE_LIBSAMPLERATE=1,
548 [
549 HAVE_LIBSAMPLERATE=0
550 if test "x$samplerate" = xyes ; then
551 AC_MSG_ERROR([*** Libsamplerate not found])
552 fi
553 ])
554 else
555 HAVE_LIBSAMPLERATE=0
556 fi
557
558 if test "x${HAVE_LIBSAMPLERATE}" = x1 ; then
559 AC_DEFINE([HAVE_LIBSAMPLERATE], 1, [Have libsamplerate?])
560 fi
561
562 AC_SUBST(LIBSAMPLERATE_CFLAGS)
563 AC_SUBST(LIBSAMPLERATE_LIBS)
564 AC_SUBST(HAVE_LIBSAMPLERATE)
565 AM_CONDITIONAL([HAVE_LIBSAMPLERATE], [test "x$HAVE_LIBSAMPLERATE" = x1])
566
567 #### OSS support (optional) ####
568
569 AC_ARG_ENABLE([oss],
570 AC_HELP_STRING([--disable-oss], [Disable optional OSS support]),
571 [
572 case "${enableval}" in
573 yes) oss=yes ;;
574 no) oss=no ;;
575 *) AC_MSG_ERROR(bad value ${enableval} for --disable-oss) ;;
576 esac
577 ],
578 [oss=auto])
579
580 if test "x${oss}" != xno ; then
581 AC_CHECK_HEADERS([sys/soundcard.h],
582 [
583 HAVE_OSS=1
584 AC_DEFINE([HAVE_OSS], 1, [Have OSS?])
585 ],
586 [
587 HAVE_OSS=0
588 if test "x$oss" = xyes ; then
589 AC_MSG_ERROR([*** OSS support not found])
590 fi
591 ])
592 else
593 HAVE_OSS=0
594 fi
595
596 AC_SUBST(HAVE_OSS)
597 AM_CONDITIONAL([HAVE_OSS], [test "x$HAVE_OSS" = x1])
598
599
600 #### ALSA support (optional) ####
601
602 AC_ARG_ENABLE([alsa],
603 AC_HELP_STRING([--disable-alsa], [Disable optional ALSA support]),
604 [
605 case "${enableval}" in
606 yes) alsa=yes ;;
607 no) alsa=no ;;
608 *) AC_MSG_ERROR(bad value ${enableval} for --disable-alsa) ;;
609 esac
610 ],
611 [alsa=auto])
612
613 if test "x${alsa}" != xno ; then
614 PKG_CHECK_MODULES(ASOUNDLIB, [ alsa >= 1.0.17 ],
615 [
616 HAVE_ALSA=1
617 AC_DEFINE([HAVE_ALSA], 1, [Have ALSA?])
618 ],
619 [
620 HAVE_ALSA=0
621 if test "x$alsa" = xyes ; then
622 AC_MSG_ERROR([*** Needed alsa >= 1.0.17 support not found])
623 fi
624 ])
625 else
626 HAVE_ALSA=0
627 fi
628
629 AC_SUBST(ASOUNDLIB_CFLAGS)
630 AC_SUBST(ASOUNDLIB_LIBS)
631 AC_SUBST(HAVE_ALSA)
632 AM_CONDITIONAL([HAVE_ALSA], [test "x$HAVE_ALSA" = x1])
633
634 #### Solaris audio support (optional) ####
635
636 AC_ARG_ENABLE([solaris],
637 AC_HELP_STRING([--disable-solaris], [Disable optional Solaris audio support]),
638 [
639 case "${enableval}" in
640 yes) solaris=yes ;;
641 no) solaris=no ;;
642 *) AC_MSG_ERROR(bad value ${enableval} for --disable-solaris) ;;
643 esac
644 ],
645 [solaris=auto])
646
647 if test "x${solaris}" != xno ; then
648 AC_CHECK_HEADERS([sys/audio.h],
649 [
650 HAVE_SOLARIS=1
651 AC_DEFINE([HAVE_SOLARIS], 1, [Have Solaris audio?])
652 ],
653 [
654 HAVE_SOLARIS=0
655 if test "x$solaris" = xyes ; then
656 AC_MSG_ERROR([*** Solaris audio support not found])
657 fi
658 ])
659 else
660 HAVE_SOLARIS=0
661 fi
662
663 AC_SUBST(HAVE_SOLARIS)
664 AM_CONDITIONAL([HAVE_SOLARIS], [test "x$HAVE_SOLARIS" = x1])
665
666 #### GLib 2 support (optional) ####
667
668 AC_ARG_ENABLE([glib2],
669 AC_HELP_STRING([--disable-glib2], [Disable optional GLib 2 support]),
670 [
671 case "${enableval}" in
672 yes) glib2=yes ;;
673 no) glib2=no ;;
674 *) AC_MSG_ERROR(bad value ${enableval} for --disable-glib2) ;;
675 esac
676 ],
677 [glib2=auto])
678
679 if test "x${glib2}" != xno ; then
680 PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ],
681 HAVE_GLIB20=1,
682 [
683 HAVE_GLIB20=0
684 if test "x$glib2" = xyes ; then
685 AC_MSG_ERROR([*** GLib 2 support not found])
686 fi
687 ])
688 else
689 HAVE_GLIB20=0
690 fi
691
692 AC_SUBST(GLIB20_CFLAGS)
693 AC_SUBST(GLIB20_LIBS)
694 AC_SUBST(HAVE_GLIB20)
695 AM_CONDITIONAL([HAVE_GLIB20], [test "x$HAVE_GLIB20" = x1])
696
697 #### GConf support (optional) ####
698
699 AC_ARG_ENABLE([gconf],
700 AC_HELP_STRING([--disable-gconf], [Disable optional GConf support]),
701 [
702 case "${enableval}" in
703 yes) gconf=yes ;;
704 no) gconf=no ;;
705 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gconf) ;;
706 esac
707 ],
708 [gconf=auto])
709
710 if test "x${gconf}" != xno ; then
711 PKG_CHECK_MODULES(GCONF, [ gconf-2.0 >= 2.4.0 ],
712 HAVE_GCONF=1,
713 [
714 HAVE_GCONF=0
715 if test "x$gconf" = xyes ; then
716 AC_MSG_ERROR([*** GConf support not found])
717 fi
718 ])
719 else
720 HAVE_GCONF=0
721 fi
722
723 AC_SUBST(GCONF_CFLAGS)
724 AC_SUBST(GCONF_LIBS)
725 AC_SUBST(HAVE_GCONF)
726 AM_CONDITIONAL([HAVE_GCONF], [test "x$HAVE_GCONF" = x1])
727
728 #### Avahi support (optional) ####
729
730 AC_ARG_ENABLE([avahi],
731 AC_HELP_STRING([--disable-avahi], [Disable optional Avahi support]),
732 [
733 case "${enableval}" in
734 yes) avahi=yes ;;
735 no) avahi=no ;;
736 *) AC_MSG_ERROR(bad value ${enableval} for --disable-avahi) ;;
737 esac
738 ],
739 [avahi=auto])
740
741 if test "x${avahi}" != xno ; then
742 PKG_CHECK_MODULES(AVAHI, [ avahi-client >= 0.6.0 ],
743 HAVE_AVAHI=1,
744 [
745 HAVE_AVAHI=0
746 if test "x$avahi" = xyes ; then
747 AC_MSG_ERROR([*** Avahi support not found])
748 fi
749 ])
750 else
751 HAVE_AVAHI=0
752 fi
753
754 AC_SUBST(AVAHI_CFLAGS)
755 AC_SUBST(AVAHI_LIBS)
756 AC_SUBST(HAVE_AVAHI)
757 AM_CONDITIONAL([HAVE_AVAHI], [test "x$HAVE_AVAHI" = x1])
758
759 ### LIBOIL ####
760
761 PKG_CHECK_MODULES(LIBOIL, [ liboil-0.3 >= 0.3.0 ])
762 AC_SUBST(LIBOIL_CFLAGS)
763 AC_SUBST(LIBOIL_LIBS)
764
765 ### JACK (optional) ####
766
767 AC_ARG_ENABLE([jack],
768 AC_HELP_STRING([--disable-jack], [Disable optional JACK support]),
769 [
770 case "${enableval}" in
771 yes) jack=yes ;;
772 no) jack=no ;;
773 *) AC_MSG_ERROR(bad value ${enableval} for --disable-jack) ;;
774 esac
775 ],
776 [jack=auto])
777
778 if test "x${jack}" != xno ; then
779 PKG_CHECK_MODULES(JACK, [ jack >= 0.100 ],
780 HAVE_JACK=1,
781 [
782 HAVE_JACK=0
783 if test "x$jack" = xyes ; then
784 AC_MSG_ERROR([*** JACK support not found])
785 fi
786 ])
787 else
788 HAVE_JACK=0
789 fi
790
791 AC_SUBST(JACK_CFLAGS)
792 AC_SUBST(JACK_LIBS)
793 AC_SUBST(HAVE_JACK)
794 AM_CONDITIONAL([HAVE_JACK], [test "x$HAVE_JACK" = x1])
795
796 #### Async DNS support (optional) ####
797
798 AC_ARG_ENABLE([asyncns],
799 AC_HELP_STRING([--disable-asyncns], [Disable optional Async DNS support]),
800 [
801 case "${enableval}" in
802 yes) asyncns=yes ;;
803 no) asyncns=no ;;
804 *) AC_MSG_ERROR(bad value ${enableval} for --disable-asyncns) ;;
805 esac
806 ],
807 [asyncns=auto])
808
809 if test "x${asyncns}" != xno ; then
810 PKG_CHECK_MODULES(LIBASYNCNS, [ libasyncns >= 0.1 ],
811 HAVE_LIBASYNCNS=1,
812 [
813 HAVE_LIBASYNCNS=0
814 if test "x$asyncns" = xyes ; then
815 AC_MSG_ERROR([*** Async DNS support not found])
816 fi
817 ])
818 else
819 HAVE_LIBASYNCNS=0
820 fi
821
822 AC_SUBST(LIBASYNCNS_CFLAGS)
823 AC_SUBST(LIBASYNCNS_LIBS)
824 AC_SUBST(HAVE_LIBASYNCNS)
825 AM_CONDITIONAL([HAVE_LIBASYNCNS], [test "x$HAVE_LIBASYNCNS" = x1])
826
827 if test "x$HAVE_LIBASYNCNS" != "x0" ; then
828 AC_DEFINE([HAVE_LIBASYNCNS], 1, [Have libasyncns?])
829 fi
830
831 #### TCP wrappers (optional) ####
832
833 AC_ARG_ENABLE([tcpwrap],
834 AC_HELP_STRING([--disable-tcpwrap], [Disable optional TCP wrappers support]),
835 [
836 case "${enableval}" in
837 yes) tcpwrap=yes ;;
838 no) tcpwrap=no ;;
839 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
840 esac
841 ],
842 [tcpwrap=auto])
843
844 if test "x${tcpwrap}" != xno ; then
845 ACX_LIBWRAP
846 if test "x${LIBWRAP_LIBS}" = x && test "x$tcpwrap" = xyes ; then
847 AC_MSG_ERROR([*** TCP wrappers support not found])
848 fi
849 else
850 LIBWRAP_LIBS=
851 fi
852
853 AC_SUBST(LIBWRAP_LIBS)
854
855 #### LIRC support (optional) ####
856
857 AC_ARG_ENABLE([lirc],
858 AC_HELP_STRING([--disable-lirc], [Disable optional LIRC support]),
859 [
860 case "${enableval}" in
861 yes) lirc=yes ;;
862 no) lirc=no ;;
863 *) AC_MSG_ERROR(bad value ${enableval} for --disable-lirc) ;;
864 esac
865 ],
866 [lirc=auto])
867
868 if test "x${lirc}" != xno ; then
869 ACX_LIRC
870 if test "x${HAVE_LIRC}" = x0 && test "x$lirc" = xyes ; then
871 AC_MSG_ERROR([*** LIRC support not found])
872 fi
873 else
874 HAVE_LIRC=0
875 fi
876
877 AC_SUBST(LIRC_CFLAGS)
878 AC_SUBST(LIRC_LIBS)
879 AM_CONDITIONAL([HAVE_LIRC], [test "x$HAVE_LIRC" = x1])
880
881 #### HAL support (optional) ####
882
883 AC_ARG_ENABLE([hal],
884 AC_HELP_STRING([--disable-hal], [Disable optional HAL support]),
885 [
886 case "${enableval}" in
887 yes) hal=yes ;;
888 no) hal=no ;;
889 *) AC_MSG_ERROR(bad value ${enableval} for --disable-hal) ;;
890 esac
891 ],
892 [hal=auto])
893 if test "x${hal}" != xno -a \( "x$HAVE_OSS" = "x1" -o "x$HAVE_ALSA" = "x1" \) ; then
894 PKG_CHECK_MODULES(HAL, [ hal >= 0.5.7 ],
895 HAVE_HAL=1,
896 [
897 HAVE_HAL=0
898 if test "x$hal" = xyes ; then
899 AC_MSG_ERROR([*** HAL support not found])
900 fi
901 ])
902 else
903 HAVE_HAL=0
904 fi
905
906 AC_SUBST(HAL_CFLAGS)
907 AC_SUBST(HAL_LIBS)
908 AC_SUBST(HAVE_HAL)
909 AM_CONDITIONAL([HAVE_HAL], [test "x$HAVE_HAL" = x1])
910
911 #### BlueZ support (optional) ####
912
913 AC_ARG_ENABLE([bluez],
914 AC_HELP_STRING([--disable-bluez], [Disable optional BlueZ support]),
915 [
916 case "${enableval}" in
917 yes) bluez=yes ;;
918 no) bluez=no ;;
919 *) AC_MSG_ERROR(bad value ${enableval} for --disable-bluez) ;;
920 esac
921 ],
922 [bluez=auto])
923 if test "x${bluez}" != xno ; then
924 PKG_CHECK_MODULES(BLUEZ, [ bluez >= 3.0 ],
925 HAVE_BLUEZ=1,
926 [
927 HAVE_BLUEZ=0
928 if test "x$bluez" = xyes ; then
929 AC_MSG_ERROR([*** BLUEZ support not found])
930 fi
931 ])
932 else
933 HAVE_BLUEZ=0
934 fi
935
936 AC_SUBST(BLUEZ_CFLAGS)
937 AC_SUBST(BLUEZ_LIBS)
938 AC_SUBST(HAVE_BLUEZ)
939 AM_CONDITIONAL([HAVE_BLUEZ], [test "x$HAVE_BLUEZ" = x1])
940
941 #### D-Bus support (optional) ####
942
943 AC_ARG_ENABLE([dbus],
944 AC_HELP_STRING([--disable-dbus], [Disable optional D-Bus support]),
945 [
946 case "${enableval}" in
947 yes) dbus=yes ;;
948 no) dbus=no ;;
949 *) AC_MSG_ERROR(bad value ${enableval} for --disable-dbus) ;;
950 esac
951 ],
952 [dbus=auto])
953
954 if test "x$HAVE_HAL" = x1 ; then
955 dbus=yes
956 fi
957
958 if test "x${dbus}" != xno || test "x${bluez}" != xno || "x${hal}" != xno ; then
959
960 PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 1.0.0 ],
961 [
962 HAVE_DBUS=1
963 saved_LIBS="$LIBS"
964 LIBS="$LIBS $DBUS_LIBS"
965 AC_CHECK_FUNCS(dbus_watch_get_unix_fd)
966 LIBS="$saved_LIBS"
967 AC_DEFINE([HAVE_DBUS], 1, [Have D-Bus.])
968 ],
969 [
970 HAVE_DBUS=0
971 if test "x$dbus" = xyes ; then
972 AC_MSG_ERROR([*** D-Bus support not found])
973 fi
974 ])
975 else
976 HAVE_DBUS=0
977 fi
978
979 AC_SUBST(DBUS_CFLAGS)
980 AC_SUBST(DBUS_LIBS)
981 AC_SUBST(HAVE_DBUS)
982 AM_CONDITIONAL([HAVE_DBUS], [test "x$HAVE_DBUS" = x1])
983
984 #### PolicyKit support (optional) ####
985
986 AC_ARG_ENABLE([polkit],
987 AC_HELP_STRING([--disable-polkit], [Disable optional PolicyKit support]),
988 [
989 case "${enableval}" in
990 yes) polkit=yes ;;
991 no) polkit=no ;;
992 *) AC_MSG_ERROR(bad value ${enableval} for --disable-polkit) ;;
993 esac
994 ],
995 [polkit=auto])
996
997 if test "x${polkit}" != xno ; then
998
999 PKG_CHECK_MODULES(POLKIT, [ polkit-dbus >= 0.7 ],
1000 [
1001 HAVE_POLKIT=1
1002 AC_DEFINE([HAVE_POLKIT], 1, [Have PolicyKit])
1003 policydir=`pkg-config polkit-dbus --variable prefix`/share/PolicyKit/policy/
1004 AC_SUBST(policydir)
1005 ],
1006 [
1007 HAVE_POLKIT=0
1008 if test "x$polkit" = xyes ; then
1009 AC_MSG_ERROR([*** PolicyKit support not found])
1010 fi
1011 ])
1012 else
1013 HAVE_POLKIT=0
1014 fi
1015
1016 AC_SUBST(POLKIT_CFLAGS)
1017 AC_SUBST(POLKIT_LIBS)
1018 AC_SUBST(HAVE_POLKIT)
1019 AM_CONDITIONAL([HAVE_POLKIT], [test "x$HAVE_POLKIT" = x1])
1020
1021 ### Build and Install man pages ###
1022 AC_ARG_ENABLE(manpages,
1023 AS_HELP_STRING([--disable-manpages],[Disable building and installation of man pages]),
1024 [case "${enableval}" in
1025 yes) manpages=yes ;;
1026 no) manpages=no ;;
1027 *) AC_MSG_ERROR([bad value ${enableval} for --disable-manpages]) ;;
1028 esac],[manpages=yes])
1029
1030 AM_CONDITIONAL([BUILD_MANPAGES], [test "x$manpages" = xyes])
1031
1032 #### PulseAudio system group & user #####
1033
1034 AC_ARG_WITH(system_user, AS_HELP_STRING([--with-system-user=<user>],[User for running the PulseAudio daemon as a system-wide instance (pulse)]))
1035 if test -z "$with_system_user" ; then
1036 PA_SYSTEM_USER=pulse
1037 else
1038 PA_SYSTEM_USER=$with_system_user
1039 fi
1040 AC_SUBST(PA_SYSTEM_USER)
1041 AC_DEFINE_UNQUOTED(PA_SYSTEM_USER,"$PA_SYSTEM_USER", [User for running the PulseAudio system daemon])
1042
1043 AC_ARG_WITH(system_group,AS_HELP_STRING([--with-system-group=<group>],[Group for running the PulseAudio daemon as a system-wide instance (pulse)]))
1044 if test -z "$with_system_group" ; then
1045 PA_SYSTEM_GROUP=pulse
1046 else
1047 PA_SYSTEM_GROUP=$with_system_group
1048 fi
1049 AC_SUBST(PA_SYSTEM_GROUP)
1050 AC_DEFINE_UNQUOTED(PA_SYSTEM_GROUP,"$PA_SYSTEM_GROUP", [Group for the PulseAudio system daemon])
1051
1052 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)]))
1053 if test -z "$with_realtime_group" ; then
1054 PA_REALTIME_GROUP=pulse-rt
1055 else
1056 PA_REALTIME_GROUP=$with_realtime_group
1057 fi
1058 AC_SUBST(PA_REALTIME_GROUP)
1059 AC_DEFINE_UNQUOTED(PA_REALTIME_GROUP,"$PA_REALTIME_GROUP", [Realtime group])
1060
1061 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)]))
1062 if test -z "$with_access_group" ; then
1063 PA_ACCESS_GROUP=pulse-access
1064 else
1065 PA_ACCESS_GROUP=$with_access_group
1066 fi
1067 AC_SUBST(PA_ACCESS_GROUP)
1068 AC_DEFINE_UNQUOTED(PA_ACCESS_GROUP,"$PA_ACCESS_GROUP", [Access group])
1069
1070 AC_ARG_ENABLE(
1071 per_user_esound_socket,
1072 AS_HELP_STRING([--disable-per-user-esound-socket], [Use global esound socket directory /tmp/.esd/socket.]),
1073 [
1074 case "${enableval}" in
1075 yes) per_user_esound_socket=1 ;;
1076 no) per_user_esound_socket=0 ;;
1077 *) AC_MSG_ERROR(bad value ${enableval} for --disable-per-user-esound-socket) ;;
1078 esac
1079 ],
1080 [per_user_esound_socket=1])
1081
1082 if test "x$per_user_esound_socket" = "x1"; then
1083 AC_DEFINE([USE_PER_USER_ESOUND_SOCKET], [1], [Define this if you want per-user esound socket directories])
1084 fi
1085
1086 #### PulseAudio system runtime dir ####
1087 PA_SYSTEM_RUNTIME_PATH="${localstatedir}/run/pulse"
1088 AC_SUBST(PA_SYSTEM_RUNTIME_PATH)
1089 PA_SYSTEM_CONFIG_PATH="${localstatedir}/lib/pulse"
1090 AC_SUBST(PA_SYSTEM_CONFIG_PATH)
1091 PA_SYSTEM_STATE_PATH="${localstatedir}/lib/pulse"
1092 AC_SUBST(PA_SYSTEM_STATE_PATH)
1093
1094 ###################################
1095 # Output #
1096 ###################################
1097
1098 AC_ARG_ENABLE(
1099 [static-bins],
1100 AC_HELP_STRING([--enable-static-bins],[Statically link executables.]),
1101 [STATIC_BINS=1], [STATIC_BINS=0])
1102 AM_CONDITIONAL([STATIC_BINS], [test "x$STATIC_BINS" = "x1"])
1103
1104 AC_ARG_WITH(
1105 [preopen-mods],
1106 AC_HELP_STRING([--with-preopen-mods],[Modules to preopen in daemon (default: all).]),
1107 [PREOPEN_MODS=$withval], [PREOPEN_MODS="all"])
1108 AM_CONDITIONAL([PREOPEN_MODS], [test "x$PREOPEN_MODS" != "xall"])
1109 if test "x$PREOPEN_MODS" != "xall" ; then
1110 tmpLIBS=""
1111 for mod in $PREOPEN_MODS; do
1112 tmpLIBS="$tmpLIBS module-$mod.la"
1113 done
1114 PREOPEN_MODS="$tmpLIBS"
1115 AC_SUBST(PREOPEN_MODS)
1116 fi
1117
1118 AC_ARG_WITH(
1119 [module-dir],
1120 AC_HELP_STRING([--with-module-dir],[Directory where to install the modules to (defaults to ${libdir}/pulse-${PA_MAJORMINOR}/modules/]),
1121 [modlibexecdir=$withval], [modlibexecdir="${libdir}/pulse-${PA_MAJORMINOR}/modules/"])
1122
1123 AC_SUBST(modlibexecdir)
1124
1125 AC_ARG_ENABLE(
1126 [force-preopen],
1127 AC_HELP_STRING([--enable-force-preopen],[Preopen modules, even when dlopen() is supported.]),
1128 [FORCE_PREOPEN=1], [FORCE_PREOPEN=0])
1129 AM_CONDITIONAL([FORCE_PREOPEN], [test "x$FORCE_PREOPEN" = "x1"])
1130
1131 AC_CONFIG_FILES([
1132 Makefile
1133 src/Makefile
1134 man/Makefile
1135 libpulse.pc
1136 libpulse-simple.pc
1137 libpulse-browse.pc
1138 libpulse-mainloop-glib.pc
1139 doxygen/Makefile
1140 doxygen/doxygen.conf
1141 src/pulse/version.h
1142 po/Makefile.in
1143 ])
1144 AC_OUTPUT
1145
1146 # ==========================================================================
1147 ENABLE_X11=no
1148 if test "x$HAVE_X11" = "x1" ; then
1149 ENABLE_X11=yes
1150 fi
1151
1152 ENABLE_OSS=no
1153 if test "x$HAVE_OSS" = "x1" ; then
1154 ENABLE_OSS=yes
1155 fi
1156
1157 ENABLE_ALSA=no
1158 if test "x$HAVE_ALSA" = "x1" ; then
1159 ENABLE_ALSA=yes
1160 fi
1161
1162 ENABLE_SOLARIS=no
1163 if test "x$HAVE_SOLARIS" = "x1" ; then
1164 ENABLE_SOLARIS=yes
1165 fi
1166
1167 ENABLE_GLIB20=no
1168 if test "x$HAVE_GLIB20" = "x1" ; then
1169 ENABLE_GLIB20=yes
1170 fi
1171
1172 ENABLE_GCONF=no
1173 if test "x$HAVE_GCONF" = "x1" ; then
1174 ENABLE_GCONF=yes
1175 fi
1176
1177 ENABLE_AVAHI=no
1178 if test "x$HAVE_AVAHI" = "x1" ; then
1179 ENABLE_AVAHI=yes
1180 fi
1181
1182 ENABLE_JACK=no
1183 if test "x$HAVE_JACK" = "x1" ; then
1184 ENABLE_JACK=yes
1185 fi
1186
1187 ENABLE_LIBASYNCNS=no
1188 if test "x$HAVE_LIBASYNCNS" = "x1" ; then
1189 ENABLE_LIBASYNCNS=yes
1190 fi
1191
1192 ENABLE_LIRC=no
1193 if test "x$HAVE_LIRC" = "x1" ; then
1194 ENABLE_LIRC=yes
1195 fi
1196
1197 ENABLE_HAL=no
1198 if test "x$HAVE_HAL" = "x1" ; then
1199 ENABLE_HAL=yes
1200 fi
1201
1202 ENABLE_TCPWRAP=no
1203 if test "x${LIBWRAP_LIBS}" != x ; then
1204 ENABLE_TCPWRAP=yes
1205 fi
1206
1207 ENABLE_LIBSAMPLERATE=no
1208 if test "x${HAVE_LIBSAMPLERATE}" = "x1" ; then
1209 ENABLE_LIBSAMPLERATE=yes
1210 fi
1211
1212 ENABLE_BLUEZ=no
1213 if test "x${HAVE_BLUEZ}" = "x1" ; then
1214 ENABLE_BLUEZ=yes
1215 fi
1216
1217 ENABLE_POLKIT=no
1218 if test "x${HAVE_POLKIT}" = "x1" ; then
1219 ENABLE_POLKIT=yes
1220 fi
1221
1222 ENABLE_PER_USER_ESOUND_SOCKET=no
1223 if test "x$per_user_esound_socket" = "x1" ; then
1224 ENABLE_PER_USER_ESOUND_SOCKET=yes
1225 fi
1226
1227 echo "
1228 ---{ $PACKAGE_NAME $VERSION }---
1229
1230 prefix: ${prefix}
1231 sysconfdir: ${sysconfdir}
1232 localstatedir: ${localstatedir}
1233 System Runtime Path: ${PA_SYSTEM_RUNTIME_PATH}
1234 System State Path: ${PA_SYSTEM_STATE_PATH}
1235 System Config Path: ${PA_SYSTEM_CONFIG_PATH}
1236 Compiler: ${CC}
1237 CFLAGS: ${CFLAGS}
1238 Have X11: ${ENABLE_X11}
1239 Enable OSS: ${ENABLE_OSS}
1240 Enable Alsa: ${ENABLE_ALSA}
1241 Enable Solaris: ${ENABLE_SOLARIS}
1242 Enable GLib 2.0: ${ENABLE_GLIB20}
1243 Enable GConf: ${ENABLE_GCONF}
1244 Enable Avahi: ${ENABLE_AVAHI}
1245 Enable Jack: ${ENABLE_JACK}
1246 Enable Async DNS: ${ENABLE_LIBASYNCNS}
1247 Enable LIRC: ${ENABLE_LIRC}
1248 Enable HAL: ${ENABLE_HAL}
1249 Enable BlueZ: ${ENABLE_BLUEZ}
1250 Enable TCP Wrappers: ${ENABLE_TCPWRAP}
1251 Enable libsamplerate: ${ENABLE_LIBSAMPLERATE}
1252 Enable PolicyKit: ${ENABLE_POLKIT}
1253 System User: ${PA_SYSTEM_USER}
1254 System Group: ${PA_SYSTEM_GROUP}
1255 Realtime Group: ${PA_REALTIME_GROUP}
1256 Access Group: ${PA_ACCESS_GROUP}
1257 Enable per-user EsounD socket: ${ENABLE_PER_USER_ESOUND_SOCKET}
1258 "