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