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