]> code.delx.au - pulseaudio/blob - configure.ac
unify static TLS support, make use of gcc __thread attribute if available
[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-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, [7])
30
31 AC_INIT([pulseaudio], PA_MAJOR.PA_MINOR.PA_MICRO,[mzcbylcnhqvb (at) 0pointer (dot) de])
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://0pointer.de/lennart/projects/pulseaudio/])
38
39 AC_SUBST(PA_API_VERSION, 10)
40 AC_SUBST(PA_PROTOCOL_VERSION, 11)
41
42 AC_SUBST(LIBPULSE_VERSION_INFO, [3:0:3])
43 AC_SUBST(LIBPULSECORE_VERSION_INFO, [4:0:0])
44 AC_SUBST(LIBPULSE_SIMPLE_VERSION_INFO, [0:0:0])
45 AC_SUBST(LIBPULSE_BROWSE_VERSION_INFO, [1:0:1])
46 AC_SUBST(LIBPULSE_MAINLOOP_GLIB_VERSION_INFO, [0:2:0])
47
48 AC_CANONICAL_HOST
49
50 if type -p stow > /dev/null && test -d /usr/local/stow ; then
51 AC_MSG_NOTICE([*** Found /usr/local/stow: default install prefix set to /usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION} ***])
52 ac_default_prefix="/usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION}"
53 fi
54
55 #### Platform hacks ####
56
57 case $host in
58 *-*-solaris* )
59 AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
60 AC_DEFINE(_XOPEN_SOURCE, 2, Needed to get declarations for msg_control and msg_controllen on Solaris)
61 AC_DEFINE(__EXTENSIONS__, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
62 ;;
63 esac
64
65 #### Checks for programs. ####
66
67 # CC
68
69 AC_PROG_CC
70 AM_PROG_CC_C_O
71 AC_PROG_GCC_TRADITIONAL
72 AC_GNU_SOURCE
73
74 # M4
75
76 AC_PATH_PROG([M4], [m4 gm4], [no])
77 if test "x$M4" = xno ; then
78 AC_MSG_ERROR([m4 missing])
79 fi
80
81 # GCC flags
82
83 test_gcc_flag() {
84 AC_LANG_CONFTEST([int main(int argc, char*argv[]) {}])
85 $CC -c conftest.c $CFLAGS -o conftest.o > /dev/null 2> /dev/null
86 ret=$?
87 rm -f conftest.o
88 return $ret
89 }
90
91 # If using GCC specify some additional parameters
92 if test "x$GCC" = "xyes" ; then
93
94 # We use gnu99 instead of c99 because many have interpreted the standard
95 # in a way that int64_t isn't defined on non-64 bit platforms.
96 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"
97
98 for flag in $DESIRED_FLAGS ; do
99 AC_MSG_CHECKING([whether $CC accepts $flag])
100 if test_gcc_flag $flag ; then
101 CFLAGS="$CFLAGS $flag"
102 AC_MSG_RESULT([yes])
103 else
104 AC_MSG_RESULT([no])
105 fi
106 done
107 fi
108
109 AC_MSG_CHECKING([whether $CC knows __sync_bool_compare_and_swap()])
110 AC_LANG_CONFTEST([int main() { int a = 4; __sync_bool_compare_and_swap(&a, 4, 5); }])
111 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
112 ret=$?
113 rm -f conftest.o conftest
114 if test $ret -eq 0 ; then
115 AC_DEFINE([HAVE_ATOMIC_BUILTINS], 1, [Have __sync_bool_compare_and_swap() and friends.])
116 AC_MSG_RESULT([yes])
117 else
118 AC_MSG_RESULT([no])
119 fi
120
121 AC_MSG_CHECKING([whether $CC knows __thread])
122 AC_LANG_CONFTEST([static __thread int a = 6; int main() { a = 5; }])
123 $CC conftest.c $CFLAGS -o conftest > /dev/null 2> /dev/null
124 ret=$?
125 rm -f conftest.o conftest
126 if test $ret -eq 0 ; then
127 AC_DEFINE([HAVE_TLS_BUILTIN], 1, [Have __thread().])
128 AC_MSG_RESULT([yes])
129 else
130 AC_MSG_RESULT([no])
131 fi
132
133 #### libtool stuff ####
134
135 AC_LTDL_ENABLE_INSTALL
136 AC_LIBLTDL_INSTALLABLE
137 AC_LIBTOOL_DLOPEN
138 AC_LIBTOOL_WIN32_DLL
139 AC_PROG_LIBTOOL
140 AC_SUBST(LTDLINCL)
141 AC_SUBST(LIBLTDL)
142 AC_CONFIG_SUBDIRS(libltdl)
143
144 if test "x$enable_ltdl_install" = "xno" && test "x$ac_cv_lib_ltdl_lt_dlinit" = "xno" ; then
145 AC_MSG_ERROR([[
146
147 *** Cannot find the libltdl development files.
148 *** Maybe you need to install the libltdl-dev package.
149 ]])
150 fi
151
152 #### Determine build environment ####
153
154 os_is_win32=0
155
156 case "$host_os" in
157 mingw*)
158 AC_DEFINE([OS_IS_WIN32], 1, [Build target is Windows.])
159 os_is_win32=1
160 ;;
161 esac
162
163 AM_CONDITIONAL(OS_IS_WIN32, test "x$os_is_win32" = "x1")
164
165 ###################################
166 # Basic environment checks #
167 ###################################
168
169 #### Checks for header files. ####
170
171 # ISO
172 AC_HEADER_STDC
173
174 # POSIX
175 AC_CHECK_HEADERS([arpa/inet.h glob.h grp.h netdb.h netinet/in.h \
176 netinet/in_systm.h netinet/tcp.h pwd.h sched.h \
177 sys/mman.h sys/resource.h sys/select.h sys/socket.h sys/wait.h \
178 syslog.h])
179 AC_CHECK_HEADERS([netinet/ip.h], [], [],
180 [#include <sys/types.h>
181 #if HAVE_NETINET_IN_H
182 # include <netinet/in.h>
183 #endif
184 #if HAVE_NETINET_IN_SYSTM_H
185 # include <netinet/in_systm.h>
186 #endif
187 ])
188 AC_CHECK_HEADERS([regex.h], [HAVE_REGEX=1], [HAVE_REGEX=0])
189 AC_CHECK_HEADERS([sys/un.h], [HAVE_AF_UNIX=1], [HAVE_AF_UNIX=0])
190
191 AM_CONDITIONAL(HAVE_REGEX, test "x$HAVE_REGEX" = "x1")
192 AM_CONDITIONAL(HAVE_AF_UNIX, test "x$HAVE_AF_UNIX" = "x1")
193
194 # XPG4-UNIX
195 AC_CHECK_HEADERS([sys/poll.h])
196
197 # Linux
198 AC_CHECK_HEADERS([linux/input.h], [HAVE_EVDEV=1], [HAVE_EVDEV=0])
199
200 AM_CONDITIONAL([HAVE_EVDEV], [test "x$HAVE_EVDEV" = "x1"])
201
202 AC_CHECK_HEADERS([sys/prctl.h])
203
204 # Solaris
205 AC_CHECK_HEADERS([sys/filio.h])
206
207 # Windows
208 AC_CHECK_HEADERS([windows.h winsock2.h ws2tcpip.h])
209
210 # Other
211 AC_CHECK_HEADERS([sys/ioctl.h])
212
213 #### Typdefs, structures, etc. ####
214
215 AC_C_CONST
216 AC_C_BIGENDIAN
217 AC_TYPE_PID_T
218 AC_TYPE_SIZE_T
219 AC_CHECK_TYPES(ssize_t, , [AC_DEFINE([ssize_t], [signed long],
220 [Define ssize_t if it is not done by the standard libs.])])
221 AC_TYPE_OFF_T
222 AC_TYPE_SIGNAL
223 AC_TYPE_UID_T
224
225 AC_CHECK_DEFINE([SIGXCPU], [signal.h], [
226 HAVE_SIGXCPU=1
227 AC_DEFINE([HAVE_SIGXCPU], 1, [Have SIGXCPU?])
228 ], [HAVE_SIGXCPU=0])
229 AM_CONDITIONAL(HAVE_SIGXCPU, test "x$HAVE_SIGXCPU" = "x1")
230
231 # Solaris lacks this
232 AC_CHECK_DEFINE([INADDR_NONE], [netinet/in.h], [],
233 [AC_CHECK_DEFINE([INADDR_NONE], [winsock2.h], [],
234 [AC_DEFINE([INADDR_NONE], [0xffffffff], [Define INADDR_NONE if not found in <netinet/in.h>])])])
235
236 #### Check for libs ####
237
238 # ISO
239 AC_SEARCH_LIBS([pow], [m])
240
241 # POSIX
242 AC_SEARCH_LIBS([sched_setscheduler], [rt])
243 AC_SEARCH_LIBS([dlopen], [dl])
244 AC_SEARCH_LIBS([shm_open], [rt])
245
246 # BSD
247 AC_SEARCH_LIBS([connect], [socket])
248
249 # Non-standard
250
251 # This magic is needed so we do not needlessly add static libs to the win32
252 # build, disabling its ability to make dlls.
253 AC_CHECK_FUNCS([getopt_long], [], [AC_CHECK_LIB([iberty], [getopt_long])])
254
255 #### Check for functions ####
256
257 # POSIX
258 AC_FUNC_FORK
259 AC_FUNC_GETGROUPS
260 AC_FUNC_SELECT_ARGTYPES
261 AC_CHECK_FUNCS([chmod chown getaddrinfo getgrgid_r getpwuid_r gettimeofday \
262 getuid inet_ntop inet_pton nanosleep pipe posix_fadvise posix_madvise \
263 posix_memalign setpgid setsid shm_open sigaction sleep sysconf])
264 AC_CHECK_FUNCS([mkfifo], [HAVE_MKFIFO=1], [HAVE_MKFIFO=0])
265
266 AM_CONDITIONAL(HAVE_MKFIFO, test "x$HAVE_MKFIFO" = "x1")
267
268 # X/OPEN
269 AC_CHECK_FUNCS([readlink])
270
271 # SUSv2
272 AC_CHECK_FUNCS([ctime_r usleep])
273
274 # SUSv3
275 AC_CHECK_FUNCS([strerror_r])
276
277 # BSD
278 AC_CHECK_FUNCS([lstat])
279
280 # Non-standard
281
282 AC_CHECK_FUNCS([setresuid setresgid setreuid setregid seteuid setegid ppoll])
283
284 #### POSIX threads ####
285
286 ACX_PTHREAD
287
288 #### Large File-Support (LFS) ####
289
290 AC_SYS_LARGEFILE
291
292 # Check for open64 to know if the current system does have open64() and similar functions
293 AC_CHECK_FUNCS([open64])
294
295 #### [lib]iconv ####
296
297 AM_ICONV
298
299 ###################################
300 # External libraries #
301 ###################################
302
303 #### X11 (optional) ####
304
305 HAVE_X11=0
306
307 # The macro tests the host, not the build target
308 if test "x$os_is_win32" != "x1" ; then
309 AC_PATH_XTRA
310 test "x$no_x" != "xyes" && HAVE_X11=1
311 fi
312
313 AC_SUBST(HAVE_X11)
314 AM_CONDITIONAL(HAVE_X11, test "x$HAVE_X11" = "x1")
315 if test "x$HAVE_X11" = "x1" ; then
316 AC_DEFINE([HAVE_X11], 1, [Have X11])
317 fi
318
319 #### Capabilities (optional) ####
320
321 CAP_LIBS=''
322
323 AC_ARG_WITH(
324 [caps],
325 AC_HELP_STRING([--without-caps],[Omit support for POSIX capabilities.]))
326
327 if test "x${with_caps}" != "xno"; then
328 AC_SEARCH_LIBS([cap_init], [cap], [], [
329 if test "x${with_caps}" = "xyes" ; then
330 AC_MSG_ERROR([*** POSIX caps libraries not found])
331 fi])
332 AC_CHECK_HEADERS([sys/capability.h], [], [
333 if test "x${with_caps}" = "xyes" ; then
334 AC_MSG_ERROR([*** POSIX caps headers not found])
335 fi])
336 fi
337
338 #### pkg-config ####
339
340 # Check for pkg-config manually first, as if its not installed the
341 # PKG_PROG_PKG_CONFIG macro won't be defined.
342 AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
343
344 if test x"$have_pkg_config" = "xno"; then
345 AC_MSG_ERROR(pkg-config is required to install this program)
346 fi
347
348 PKG_PROG_PKG_CONFIG
349
350 #### Sound file ####
351
352 PKG_CHECK_MODULES(LIBSNDFILE, [ sndfile >= 1.0.10 ])
353 AC_SUBST(LIBSNDFILE_CFLAGS)
354 AC_SUBST(LIBSNDFILE_LIBS)
355
356 #### atomic-ops ###
357
358 AC_CHECK_HEADERS([atomic_ops.h], [], [
359 AC_MSG_ERROR([*** libatomic-ops headers not found])
360 ])
361
362 # Win32 does not need the lib and breaks horribly if we try to include it
363 if test "x$os_is_win32" != "x1" ; then
364 LIBS="$LIBS -latomic_ops"
365 fi
366
367 #### Libsamplerate support (optional) ####
368
369 AC_ARG_ENABLE([samplerate],
370 AC_HELP_STRING([--disable-samplerate], [Disable optional libsamplerate support]),
371 [
372 case "${enableval}" in
373 yes) samplerate=yes ;;
374 no) samplerate=no ;;
375 *) AC_MSG_ERROR(bad value ${enableval} for --disable-samplerate) ;;
376 esac
377 ],
378 [samplerate=auto])
379
380 if test "x${samplerate}" != xno ; then
381 PKG_CHECK_MODULES(LIBSAMPLERATE, [ samplerate >= 0.1.0 ],
382 HAVE_LIBSAMPLERATE=1,
383 [
384 HAVE_LIBSAMPLERATE=0
385 if test "x$samplerate" = xyes ; then
386 AC_MSG_ERROR([*** Libsamplerate not found])
387 fi
388 ])
389 else
390 HAVE_LIBSAMPLERATE=0
391 fi
392
393 if test "x${HAVE_LIBSAMPLERATE}" = x1 ; then
394 AC_DEFINE([HAVE_LIBSAMPLERATE], 1, [Have libsamplerate?])
395 fi
396
397 AC_SUBST(LIBSAMPLERATE_CFLAGS)
398 AC_SUBST(LIBSAMPLERATE_LIBS)
399 AC_SUBST(HAVE_LIBSAMPLERATE)
400 AM_CONDITIONAL([HAVE_LIBSAMPLERATE], [test "x$HAVE_LIBSAMPLERATE" = x1])
401
402 #### OSS support (optional) ####
403
404 AC_ARG_ENABLE([oss],
405 AC_HELP_STRING([--disable-oss], [Disable optional OSS support]),
406 [
407 case "${enableval}" in
408 yes) oss=yes ;;
409 no) oss=no ;;
410 *) AC_MSG_ERROR(bad value ${enableval} for --disable-oss) ;;
411 esac
412 ],
413 [oss=auto])
414
415 if test "x${oss}" != xno ; then
416 AC_CHECK_HEADERS([sys/soundcard.h],
417 [
418 HAVE_OSS=1
419 AC_DEFINE([HAVE_OSS], 1, [Have OSS?])
420 ],
421 [
422 HAVE_OSS=0
423 if test "x$oss" = xyes ; then
424 AC_MSG_ERROR([*** OSS support not found])
425 fi
426 ])
427 else
428 HAVE_OSS=0
429 fi
430
431 AC_SUBST(HAVE_OSS)
432 AM_CONDITIONAL([HAVE_OSS], [test "x$HAVE_OSS" = x1])
433
434
435 #### ALSA support (optional) ####
436
437 AC_ARG_ENABLE([alsa],
438 AC_HELP_STRING([--disable-alsa], [Disable optional ALSA support]),
439 [
440 case "${enableval}" in
441 yes) alsa=yes ;;
442 no) alsa=no ;;
443 *) AC_MSG_ERROR(bad value ${enableval} for --disable-alsa) ;;
444 esac
445 ],
446 [alsa=auto])
447
448 if test "x${alsa}" != xno ; then
449 PKG_CHECK_MODULES(ASOUNDLIB, [ alsa >= 1.0.0 ],
450 [
451 HAVE_ALSA=1
452 AC_DEFINE([HAVE_ALSA], 1, [Have ALSA?])
453 ],
454 [
455 HAVE_ALSA=0
456 if test "x$alsa" = xyes ; then
457 AC_MSG_ERROR([*** ALSA support not found])
458 fi
459 ])
460 else
461 HAVE_ALSA=0
462 fi
463
464 AC_SUBST(ASOUNDLIB_CFLAGS)
465 AC_SUBST(ASOUNDLIB_LIBS)
466 AC_SUBST(HAVE_ALSA)
467 AM_CONDITIONAL([HAVE_ALSA], [test "x$HAVE_ALSA" = x1])
468
469 #### Solaris audio support (optional) ####
470
471 AC_ARG_ENABLE([solaris],
472 AC_HELP_STRING([--disable-solaris], [Disable optional Solaris audio support]),
473 [
474 case "${enableval}" in
475 yes) solaris=yes ;;
476 no) solaris=no ;;
477 *) AC_MSG_ERROR(bad value ${enableval} for --disable-solaris) ;;
478 esac
479 ],
480 [solaris=auto])
481
482 if test "x${solaris}" != xno ; then
483 AC_CHECK_HEADERS([sys/audio.h],
484 [
485 HAVE_SOLARIS=1
486 AC_DEFINE([HAVE_SOLARIS], 1, [Have Solaris audio?])
487 ],
488 [
489 HAVE_SOLARIS=0
490 if test "x$solaris" = xyes ; then
491 AC_MSG_ERROR([*** Solaris audio support not found])
492 fi
493 ])
494 else
495 HAVE_SOLARIS=0
496 fi
497
498 AC_SUBST(HAVE_SOLARIS)
499 AM_CONDITIONAL([HAVE_SOLARIS], [test "x$HAVE_SOLARIS" = x1])
500
501 #### GLib 2 support (optional) ####
502
503 AC_ARG_ENABLE([glib2],
504 AC_HELP_STRING([--disable-glib2], [Disable optional GLib 2 support]),
505 [
506 case "${enableval}" in
507 yes) glib2=yes ;;
508 no) glib2=no ;;
509 *) AC_MSG_ERROR(bad value ${enableval} for --disable-glib2) ;;
510 esac
511 ],
512 [glib2=auto])
513
514 if test "x${glib2}" != xno ; then
515 PKG_CHECK_MODULES(GLIB20, [ glib-2.0 >= 2.4.0 ],
516 HAVE_GLIB20=1,
517 [
518 HAVE_GLIB20=0
519 if test "x$glib2" = xyes ; then
520 AC_MSG_ERROR([*** GLib 2 support not found])
521 fi
522 ])
523 else
524 HAVE_GLIB20=0
525 fi
526
527 AC_SUBST(GLIB20_CFLAGS)
528 AC_SUBST(GLIB20_LIBS)
529 AC_SUBST(HAVE_GLIB20)
530 AM_CONDITIONAL([HAVE_GLIB20], [test "x$HAVE_GLIB20" = x1])
531
532 #### GConf support (optional) ####
533
534 AC_ARG_ENABLE([gconf],
535 AC_HELP_STRING([--disable-gconf], [Disable optional GConf support]),
536 [
537 case "${enableval}" in
538 yes) gconf=yes ;;
539 no) gconf=no ;;
540 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gconf) ;;
541 esac
542 ],
543 [glib=auto])
544
545 if test "x${gconf}" != xno ; then
546 PKG_CHECK_MODULES(GCONF, [ gconf-2.0 >= 2.4.0 ],
547 HAVE_GCONF=1,
548 [
549 HAVE_GCONF=0
550 if test "x$gconf" = xyes ; then
551 AC_MSG_ERROR([*** GConf support not found])
552 fi
553 ])
554 else
555 HAVE_GCONF=0
556 fi
557
558 AC_SUBST(GCONF_CFLAGS)
559 AC_SUBST(GCONF_LIBS)
560 AC_SUBST(HAVE_GCONF)
561 AM_CONDITIONAL([HAVE_GCONF], [test "x$HAVE_GCONF" = x1])
562
563 #### Avahi support (optional) ####
564
565 AC_ARG_ENABLE([avahi],
566 AC_HELP_STRING([--disable-avahi], [Disable optional Avahi support]),
567 [
568 case "${enableval}" in
569 yes) avahi=yes ;;
570 no) avahi=no ;;
571 *) AC_MSG_ERROR(bad value ${enableval} for --disable-avahi) ;;
572 esac
573 ],
574 [avahi=auto])
575
576 if test "x${avahi}" != xno ; then
577 PKG_CHECK_MODULES(AVAHI, [ avahi-client >= 0.6.0 ],
578 HAVE_AVAHI=1,
579 [
580 HAVE_AVAHI=0
581 if test "x$avahi" = xyes ; then
582 AC_MSG_ERROR([*** Avahi support not found])
583 fi
584 ])
585 else
586 HAVE_AVAHI=0
587 fi
588
589 AC_SUBST(AVAHI_CFLAGS)
590 AC_SUBST(AVAHI_LIBS)
591 AC_SUBST(HAVE_AVAHI)
592 AM_CONDITIONAL([HAVE_AVAHI], [test "x$HAVE_AVAHI" = x1])
593
594 ### LIBOIL ####
595
596 PKG_CHECK_MODULES(LIBOIL, [ liboil-0.3 >= 0.3.0 ])
597 AC_SUBST(LIBOIL_CFLAGS)
598 AC_SUBST(LIBOIL_LIBS)
599
600 ### JACK (optional) ####
601
602 AC_ARG_ENABLE([jack],
603 AC_HELP_STRING([--disable-jack], [Disable optional JACK support]),
604 [
605 case "${enableval}" in
606 yes) jack=yes ;;
607 no) jack=no ;;
608 *) AC_MSG_ERROR(bad value ${enableval} for --disable-jack) ;;
609 esac
610 ],
611 [jack=auto])
612
613 if test "x${jack}" != xno ; then
614 PKG_CHECK_MODULES(JACK, [ jack >= 0.100 ],
615 HAVE_JACK=1,
616 [
617 HAVE_JACK=0
618 if test "x$jack" = xyes ; then
619 AC_MSG_ERROR([*** JACK support not found])
620 fi
621 ])
622 else
623 HAVE_JACK=0
624 fi
625
626 AC_SUBST(JACK_CFLAGS)
627 AC_SUBST(JACK_LIBS)
628 AC_SUBST(HAVE_JACK)
629 AM_CONDITIONAL([HAVE_JACK], [test "x$HAVE_JACK" = x1])
630
631 #### Async DNS support (optional) ####
632
633 AC_ARG_ENABLE([asyncns],
634 AC_HELP_STRING([--disable-asyncns], [Disable optional Async DNS support]),
635 [
636 case "${enableval}" in
637 yes) asyncns=yes ;;
638 no) asyncns=no ;;
639 *) AC_MSG_ERROR(bad value ${enableval} for --disable-asyncns) ;;
640 esac
641 ],
642 [asyncns=auto])
643
644 if test "x${asyncns}" != xno ; then
645 PKG_CHECK_MODULES(LIBASYNCNS, [ libasyncns >= 0.1 ],
646 HAVE_LIBASYNCNS=1,
647 [
648 HAVE_LIBASYNCNS=0
649 if test "x$asyncns" = xyes ; then
650 AC_MSG_ERROR([*** Async DNS support not found])
651 fi
652 ])
653 else
654 HAVE_LIBASYNCNS=0
655 fi
656
657 AC_SUBST(LIBASYNCNS_CFLAGS)
658 AC_SUBST(LIBASYNCNS_LIBS)
659 AC_SUBST(HAVE_LIBASYNCNS)
660 AM_CONDITIONAL([HAVE_LIBASYNCNS], [test "x$HAVE_LIBASYNCNS" = x1])
661
662 if test "x$HAVE_LIBASYNCNS" != "x0" ; then
663 AC_DEFINE([HAVE_LIBASYNCNS], 1, [Have libasyncns?])
664 fi
665
666 #### TCP wrappers (optional) ####
667
668 AC_ARG_ENABLE([tcpwrap],
669 AC_HELP_STRING([--disable-tcpwrap], [Disable optional TCP wrappers support]),
670 [
671 case "${enableval}" in
672 yes) tcpwrap=yes ;;
673 no) tcpwrap=no ;;
674 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
675 esac
676 ],
677 [tcpwrap=auto])
678
679 if test "x${tcpwrap}" != xno ; then
680 ACX_LIBWRAP
681 if test "x${LIBWRAP_LIBS}" = x && test "x$tcpwrap" = xyes ; then
682 AC_MSG_ERROR([*** TCP wrappers support not found])
683 fi
684 else
685 LIBWRAP_LIBS=
686 fi
687
688 AC_SUBST(LIBWRAP_LIBS)
689
690 #### LIRC support (optional) ####
691
692 AC_ARG_ENABLE([lirc],
693 AC_HELP_STRING([--disable-lirc], [Disable optional LIRC support]),
694 [
695 case "${enableval}" in
696 yes) lirc=yes ;;
697 no) lirc=no ;;
698 *) AC_MSG_ERROR(bad value ${enableval} for --disable-lirc) ;;
699 esac
700 ],
701 [lirc=auto])
702
703 if test "x${lirc}" != xno ; then
704 ACX_LIRC
705 if test "x${HAVE_LIRC}" = x0 && test "x$lirc" = xyes ; then
706 AC_MSG_ERROR([*** LIRC support not found])
707 fi
708 else
709 HAVE_LIRC=0
710 fi
711
712 AC_SUBST(LIRC_CFLAGS)
713 AC_SUBST(LIRC_LIBS)
714 AM_CONDITIONAL([HAVE_LIRC], [test "x$HAVE_LIRC" = x1])
715
716 #### HAL support (optional) ####
717
718 AC_ARG_ENABLE([hal],
719 AC_HELP_STRING([--disable-hal], [Disable optional HAL support]),
720 [
721 case "${enableval}" in
722 yes) hal=yes ;;
723 no) hal=no ;;
724 *) AC_MSG_ERROR(bad value ${enableval} for --disable-hal) ;;
725 esac
726 ],
727 [hal=auto])
728 if test "x${hal}" != xno -a \( "x$HAVE_OSS" = "x1" -o "x$HAVE_ALSA" = "x1" \) ; then
729 PKG_CHECK_MODULES(HAL, [ hal >= 0.5.7 ],
730 HAVE_HAL=1,
731 [
732 HAVE_HAL=0
733 if test "x$hal" = xyes ; then
734 AC_MSG_ERROR([*** HAL support not found])
735 fi
736 ])
737 else
738 HAVE_HAL=0
739 fi
740
741 AC_SUBST(HAL_CFLAGS)
742 AC_SUBST(HAL_LIBS)
743 AC_SUBST(HAVE_HAL)
744 AM_CONDITIONAL([HAVE_HAL], [test "x$HAVE_HAL" = x1])
745
746 #### D-Bus support (optional) ####
747
748 AC_ARG_ENABLE([dbus],
749 AC_HELP_STRING([--disable-dbus], [Disable optional D-Bus support]),
750 [
751 case "${enableval}" in
752 yes) dbus=yes ;;
753 no) dbus=no ;;
754 *) AC_MSG_ERROR(bad value ${enableval} for --disable-dbus) ;;
755 esac
756 ],
757 [dbus=auto])
758
759 if test "x$HAVE_HAL" = x1 ; then
760 dbus=yes
761 fi
762
763 if test "x${dbus}" != xno ; then
764
765 PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 1.0.0 ],
766 [
767 HAVE_DBUS=1
768 saved_LIBS="$LIBS"
769 LIBS="$LIBS $DBUS_LIBS"
770 AC_CHECK_FUNCS(dbus_watch_get_unix_fd)
771 LIBS="$saved_LIBS"
772
773 ],
774 [
775 HAVE_DBUS=0
776 if test "x$dbus" = xyes ; then
777 AC_MSG_ERROR([*** D-Bus support not found])
778 fi
779 ])
780 else
781 HAVE_DBUS=0
782 fi
783
784 AC_SUBST(DBUS_CFLAGS)
785 AC_SUBST(DBUS_LIBS)
786 AC_SUBST(HAVE_DBUS)
787 AM_CONDITIONAL([HAVE_DBUS], [test "x$HAVE_DBUS" = x1])
788
789 #### PulseAudio system group & user #####
790
791 AC_ARG_WITH(system_user, AS_HELP_STRING([--with-system-user=<user>],[User for running the PulseAudio daemon as a system-wide instance (pulse)]))
792 if test -z "$with_system_user" ; then
793 PA_SYSTEM_USER=pulse
794 else
795 PA_SYSTEM_USER=$with_system_user
796 fi
797 AC_SUBST(PA_SYSTEM_USER)
798 AC_DEFINE_UNQUOTED(PA_SYSTEM_USER,"$PA_SYSTEM_USER", [User for running the PulseAudio system daemon])
799
800 AC_ARG_WITH(system_group,AS_HELP_STRING([--with-system-group=<group>],[Group for running the PulseAudio daemon as a system-wide instance (pulse)]))
801 if test -z "$with_system_group" ; then
802 PA_SYSTEM_GROUP=pulse
803 else
804 PA_SYSTEM_GROUP=$with_system_group
805 fi
806 AC_SUBST(PA_SYSTEM_GROUP)
807 AC_DEFINE_UNQUOTED(PA_SYSTEM_GROUP,"$PA_SYSTEM_GROUP", [Group for the PulseAudio system daemon])
808
809 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)]))
810 if test -z "$with_realtime_group" ; then
811 PA_REALTIME_GROUP=pulse-rt
812 else
813 PA_REALTIME_GROUP=$with_realtime_group
814 fi
815 AC_SUBST(PA_REALTIME_GROUP)
816 AC_DEFINE_UNQUOTED(PA_REALTIME_GROUP,"$PA_REALTIME_GROUP", [Realtime group])
817
818 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)]))
819 if test -z "$with_access_group" ; then
820 PA_ACCESS_GROUP=pulse-access
821 else
822 PA_ACCESS_GROUP=$with_access_group
823 fi
824 AC_SUBST(PA_ACCESS_GROUP)
825 AC_DEFINE_UNQUOTED(PA_ACCESS_GROUP,"$PA_ACCESS_GROUP", [Access group])
826
827 #### PulseAudio system runtime dir ####
828 PA_SYSTEM_RUNTIME_PATH="${localstatedir}/run/pulse"
829 AC_SUBST(PA_SYSTEM_RUNTIME_PATH)
830
831 ###################################
832 # Output #
833 ###################################
834
835 AC_ARG_ENABLE(
836 [static-bins],
837 AC_HELP_STRING([--enable-static-bins],[Statically link executables.]),
838 [STATIC_BINS=1], [STATIC_BINS=0])
839 AM_CONDITIONAL([STATIC_BINS], [test "x$STATIC_BINS" = "x1"])
840
841 AC_ARG_WITH(
842 [preopen-mods],
843 AC_HELP_STRING([--with-preopen-mods],[Modules to preopen in daemon (default: all).]),
844 [PREOPEN_MODS=$withval], [PREOPEN_MODS="all"])
845 AM_CONDITIONAL([PREOPEN_MODS], [test "x$PREOPEN_MODS" != "xall"])
846 if test "x$PREOPEN_MODS" != "xall" ; then
847 tmpLIBS=""
848 for mod in $PREOPEN_MODS; do
849 tmpLIBS="$tmpLIBS module-$mod.la"
850 done
851 PREOPEN_MODS="$tmpLIBS"
852 AC_SUBST(PREOPEN_MODS)
853 fi
854
855 AC_ARG_WITH(
856 [module-dir],
857 AC_HELP_STRING([--with-module-dir],[Directory where to install the modules to (defaults to ${libdir}/pulse-${PA_MAJORMINOR}/modules/]),
858 [modlibexecdir=$withval], [modlibexecdir="${libdir}/pulse-${PA_MAJORMINOR}/modules/"])
859
860 AC_SUBST(modlibexecdir)
861
862 AC_ARG_ENABLE(
863 [force-preopen],
864 AC_HELP_STRING([--enable-force-preopen],[Preopen modules, even when dlopen() is supported.]),
865 [FORCE_PREOPEN=1], [FORCE_PREOPEN=0])
866 AM_CONDITIONAL([FORCE_PREOPEN], [test "x$FORCE_PREOPEN" = "x1"])
867
868 AC_CONFIG_FILES([
869 Makefile
870 src/Makefile
871 libpulse.pc
872 libpulse-simple.pc
873 libpulse-browse.pc
874 libpulse-mainloop-glib.pc
875 doxygen/Makefile
876 doxygen/doxygen.conf
877 src/pulse/version.h
878 ])
879 AC_OUTPUT
880
881 # ==========================================================================
882 ENABLE_X11=no
883 if test "x$HAVE_X11" = "x1" ; then
884 ENABLE_X11=yes
885 fi
886
887 ENABLE_OSS=no
888 if test "x$HAVE_OSS" = "x1" ; then
889 ENABLE_OSS=yes
890 fi
891
892 ENABLE_ALSA=no
893 if test "x$HAVE_ALSA" = "x1" ; then
894 ENABLE_ALSA=yes
895 fi
896
897 ENABLE_SOLARIS=no
898 if test "x$HAVE_SOLARIS" = "x1" ; then
899 ENABLE_SOLARIS=yes
900 fi
901
902 ENABLE_GLIB20=no
903 if test "x$HAVE_GLIB20" = "x1" ; then
904 ENABLE_GLIB20=yes
905 fi
906
907 ENABLE_GCONF=no
908 if test "x$HAVE_GCONF" = "x1" ; then
909 ENABLE_GCONF=yes
910 fi
911
912 ENABLE_AVAHI=no
913 if test "x$HAVE_AVAHI" = "x1" ; then
914 ENABLE_AVAHI=yes
915 fi
916
917 ENABLE_JACK=no
918 if test "x$HAVE_JACK" = "x1" ; then
919 ENABLE_JACK=yes
920 fi
921
922 ENABLE_LIBASYNCNS=no
923 if test "x$HAVE_LIBASYNCNS" = "x1" ; then
924 ENABLE_LIBASYNCNS=yes
925 fi
926
927 ENABLE_LIRC=no
928 if test "x$HAVE_LIRC" = "x1" ; then
929 ENABLE_LIRC=yes
930 fi
931
932 ENABLE_HAL=no
933 if test "x$HAVE_HAL" = "x1" ; then
934 ENABLE_HAL=yes
935 fi
936
937 ENABLE_TCPWRAP=no
938 if test "x${LIBWRAP_LIBS}" != x ; then
939 ENABLE_TCPWRAP=yes
940 fi
941
942 ENABLE_LIBSAMPLERATE=no
943 if test "x${HAVE_LIBSAMPLERATE}" = "x1" ; then
944 ENABLE_LIBSAMPLERATE=yes
945 fi
946
947 echo "
948 ---{ $PACKAGE_NAME $VERSION }---
949
950 prefix: ${prefix}
951 sysconfdir: ${sysconfdir}
952 localstatedir: ${localstatedir}
953 System Runtime Path: ${PA_SYSTEM_RUNTIME_PATH}
954 Compiler: ${CC}
955 CFLAGS: ${CFLAGS}
956 Have X11: ${ENABLE_X11}
957 Enable OSS: ${ENABLE_OSS}
958 Enable Alsa: ${ENABLE_ALSA}
959 Enable Solaris: ${ENABLE_SOLARIS}
960 Enable GLib 2.0: ${ENABLE_GLIB20}
961 Enable GConf: ${ENABLE_GCONF}
962 Enable Avahi: ${ENABLE_AVAHI}
963 Enable Jack: ${ENABLE_JACK}
964 Enable Async DNS: ${ENABLE_LIBASYNCNS}
965 Enable LIRC: ${ENABLE_LIRC}
966 Enable HAL: ${ENABLE_HAL}
967 Enable TCP Wrappers: ${ENABLE_TCPWRAP}
968 Enable libsamplerate: ${ENABLE_LIBSAMPLERATE}
969 System User: ${PA_SYSTEM_USER}
970 System Group: ${PA_SYSTEM_GROUP}
971 Realtime Group: ${PA_REALTIME_GROUP}
972 Access Group: ${PA_ACCESS_GROUP}
973 "