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