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