OSDN Git Service

pcm: plugin - fix status code for capture
[android-x86/external-alsa-lib.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2 AC_PREREQ(2.59)
3 AC_INIT(alsa-lib, 1.2.4)
4
5 AC_CONFIG_SRCDIR([src/control/control.c])
6 AC_CONFIG_MACRO_DIR([m4])
7
8 dnl *************************************************
9 dnl current:revision:age
10 dnl change (without API) = c:r+1:a
11 dnl change API = c+1:0:a
12 dnl add API = c+1:0:a+1
13 dnl remove API = c+1:0:0
14 dnl *************************************************
15 AC_CANONICAL_HOST
16 AM_INIT_AUTOMAKE
17 eval LIBTOOL_VERSION_INFO="2:0:0"
18 dnl *************************************************
19 AM_CONDITIONAL([INSTALL_M4], [test -n "${ACLOCAL}"])
20
21 AM_MAINTAINER_MODE([enable])
22
23 # Test for new silent rules and enable only if they are available
24 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
25
26 AC_PREFIX_DEFAULT(/usr)
27
28 dnl Checks for programs.
29
30 AC_PROG_CC
31 AC_PROG_CPP
32 AC_USE_SYSTEM_EXTENSIONS
33 AC_PROG_INSTALL
34 AC_PROG_LN_S 
35 AC_DISABLE_STATIC
36 AC_LIBTOOL_DLOPEN
37 AM_PROG_LIBTOOL
38
39 CC_NOUNDEFINED
40
41 dnl Checks for header files.
42 AC_HEADER_STDC
43 AC_CONFIG_HEADERS(include/config.h)
44
45 dnl Checks for typedefs, structures, and compiler characteristics.
46 AC_C_CONST
47 AC_C_INLINE
48 AC_HEADER_TIME
49
50 dnl Checks for library functions.
51 AC_PROG_GCC_TRADITIONAL
52 AC_CHECK_FUNCS([uselocale])
53
54 SAVE_LIBRARY_VERSION
55 AC_SUBST(LIBTOOL_VERSION_INFO)
56
57 test "x$prefix" = xNONE && prefix=$ac_default_prefix
58
59 dnl Do not build static and shared libraries together
60 if test "$enable_static" = "$enable_shared" -a "$enable_static" = "yes"; then
61 cat <<EOF
62   Please, do not try to compile static and shared libraries together.
63   See INSTALL file for more details (do not use --enable-shared=yes with
64   --enable-static=yes).
65 EOF
66   exit 1
67 fi
68
69 dnl ALSA configuration directory
70 AC_ARG_WITH(configdir,
71     AS_HELP_STRING([--with-configdir=dir],
72         [path where ALSA config files are stored]),
73     confdir="$withval", confdir="")
74 if test -z "$confdir"; then
75     eval dir="$datadir"
76     case "$dir" in
77     /*) ;;
78     *) dir="$prefix/share"
79     esac
80     confdir="$dir/alsa"
81 fi
82 ALSA_CONFIG_DIR="$confdir"
83 AC_DEFINE_UNQUOTED(ALSA_CONFIG_DIR, "$confdir", [directory containing ALSA configuration database])
84 AC_SUBST(ALSA_CONFIG_DIR)
85
86 dnl ALSA plugin directory
87 test "x$exec_prefix" = xNONE && exec_prefix=$prefix
88
89 AC_ARG_WITH(plugindir,
90     AS_HELP_STRING([--with-plugindir=dir],
91         [path where ALSA plugin files are stored]),
92     plugindir="$withval", plugindir="")
93 if test -z "$plugindir"; then
94     eval dir="$libdir"
95     case "$dir" in
96     /*) ;;
97     *) dir="$dir"
98     esac
99     plugindir="$dir/$PACKAGE"
100 fi
101 AC_DEFINE_UNQUOTED(ALSA_PLUGIN_DIR, "$plugindir", [directory containing ALSA add-on modules])
102 ALSA_PLUGIN_DIR="$plugindir"
103 AC_SUBST(ALSA_PLUGIN_DIR)
104
105 AC_ARG_WITH(pkgconfdir,
106     AS_HELP_STRING([--with-pkgconfdir=dir],
107         [path where pkgconfig files are stored]),
108     pkgconfdir="$withval", pkgconfdir="")
109 if test -z "$pkgconfdir"; then
110     eval dir="$libdir"
111     case "$dir" in
112     /*) ;;
113     *) dir="$dir"
114     esac
115     pkgconfdir="$dir/pkgconfig"
116 fi
117 AC_DEFINE_UNQUOTED(ALSA_PKGCONF_DIR, "$pkgconfdir", [directory containing pkgconfig files])
118 ALSA_PKGCONF_DIR="$pkgconfdir"
119 AC_SUBST(ALSA_PKGCONF_DIR)
120
121 dnl Check for versioned symbols
122 AC_MSG_CHECKING(for versioned symbols)
123 AC_ARG_WITH(versioned,
124   AS_HELP_STRING([--with-versioned],
125     [shared library will be compiled with versioned symbols (default = yes)]),
126   versioned="$withval", versioned="yes")
127 if test "$versioned" = "yes"; then
128   # it seems that GNU ld versions since 2.10 are not broken
129   xres=`grep '^VERSION=' ${srcdir}/ltmain.sh | cut -d = -f 2 | cut -d \" -f 2`
130   major=`echo $xres | cut -d . -f 1`
131   minor=`echo $xres | cut -d . -f 2`
132   pass=0
133   if test $major -eq 1 && test $minor -gt 3; then
134     pass=1
135   else
136     if test $major -gt 1; then
137       pass=1
138     fi
139   fi
140   if test $pass -eq 1; then
141     AC_DEFINE(VERSIONED_SYMBOLS,,[compiled with versioned symbols])
142     AC_MSG_RESULT(yes)
143   else
144     AC_MSG_RESULT(broken libtool - use libtool v1.4+; no versions)
145   fi
146 else
147   AC_MSG_RESULT(no)
148 fi
149 AM_CONDITIONAL([VERSIONED_SYMBOLS], [test x$versioned = xyes])
150
151 dnl Check for symbolic-functions
152 AC_MSG_CHECKING(for symbolic-functions)
153 AC_ARG_ENABLE(symbolic-functions,
154   AS_HELP_STRING([--enable-symbolic-functions],
155     [use -Bsymbolic-functions option if available (optmization for size and speed)]),
156   symfuncs="$enableval", symfuncs="no")
157 if test "$symfuncs" = "yes"; then
158   if ld --help | grep -q -- '-Bsymbolic-functions'; then
159     AC_MSG_RESULT(yes)
160   else
161     AC_MSG_RESULT(not supported by ld)
162     symfuncs="no"
163   fi
164 else
165   AC_MSG_RESULT(no)
166 fi
167 AM_CONDITIONAL([SYMBOLIC_FUNCTIONS], [test x"$symfuncs" = xyes])
168
169 dnl See if toolchain has a custom prefix for symbols ...
170 AC_MSG_CHECKING(for custom symbol prefixes)
171 SYMBOL_PREFIX=` \
172         echo "PREFIX=__USER_LABEL_PREFIX__" \
173                 | ${CPP-${CC-gcc} -E} - 2>&1 \
174                 | ${EGREP-grep} "^PREFIX=" \
175                 | ${SED-sed} "s:^PREFIX=::"`
176 AC_DEFINE_UNQUOTED([__SYMBOL_PREFIX], "$SYMBOL_PREFIX", [Toolchain Symbol Prefix])
177 AC_SUBST(SYMBOL_PREFIX)
178 AC_MSG_RESULT($SYMBOL_PREFIX)
179
180 dnl Check for debug...
181 AC_MSG_CHECKING(for debug)
182 AC_ARG_WITH(debug,
183   AS_HELP_STRING([--with-debug],
184     [library will be compiled with asserts (default = yes)]),
185   debug="$withval", debug="yes")
186 if test "$debug" = "yes"; then
187   AC_MSG_RESULT(yes)
188 else
189   AC_DEFINE(NDEBUG,,[No assert debug])
190   AC_MSG_RESULT(no)
191 fi
192
193 if test "$debug" = "yes"; then
194   AC_MSG_CHECKING(for debug assert)
195   AC_ARG_ENABLE(debug-assert,
196     AS_HELP_STRING([--enable-debug],
197       [enable assert call at the default error message handler]),
198     debug_assert="$enableval", debug_assert="no")
199   if test "$debug_assert" = "yes"; then
200     AC_MSG_RESULT(yes)
201     AC_DEFINE(ALSA_DEBUG_ASSERT,,[Enable assert at error message handler])
202   else
203     AC_MSG_RESULT(no)
204   fi
205 fi
206
207 dnl Temporary directory
208 AC_MSG_CHECKING(for tmpdir)
209 AC_ARG_WITH(tmpdir,
210   AS_HELP_STRING([--with-tmpdir=directory],
211     [directory to put tmp socket files (/tmp)]),
212   tmpdir="$withval", tmpdir="/tmp")
213 AC_MSG_RESULT($tmpdir)
214 AC_DEFINE_UNQUOTED(TMPDIR, "$tmpdir", [directory to put tmp socket files])
215
216 dnl Check for softfloat...
217 AC_MSG_CHECKING(for softfloat)
218 AC_ARG_WITH(softfloat,
219   AS_HELP_STRING([--with-softfloat],
220     [do you have floating point unit on this machine? (optional)]),
221   [case "$withval" in
222         y|yes) softfloat=yes ;;
223         *) softfloat=no ;;
224    esac],)
225 if test "$softfloat" = "yes" ; then
226   AC_DEFINE(HAVE_SOFT_FLOAT, "1", [Avoid calculation in float])
227   AC_MSG_RESULT(yes)
228 else
229   AC_MSG_RESULT(no)
230 fi
231
232 ALSA_DEPLIBS=""
233 if test "$softfloat" != "yes"; then
234   ALSA_DEPLIBS="-lm"
235 fi
236
237 dnl Check for libdl
238 AC_MSG_CHECKING(for libdl)
239 AC_ARG_WITH(libdl,
240   AS_HELP_STRING([--with-libdl], [Use libdl for plugins (default = yes)]),
241   [ have_libdl="$withval" ], [ have_libdl="yes" ])
242 HAVE_LIBDL=
243 if test "$have_libdl" = "yes"; then
244   AC_CHECK_LIB([dl], [dlsym], [HAVE_LIBDL="yes"])
245   if test "$HAVE_LIBDL" = "yes" ; then
246     ALSA_DEPLIBS="$ALSA_DEPLIBS -ldl"
247     AC_DEFINE([HAVE_LIBDL], 1, [Have libdl])
248   fi
249 else
250   AC_MSG_RESULT(no)
251 fi
252 AM_CONDITIONAL([BUILD_MODULES], [test "$HAVE_LIBDL" = "yes"])
253
254 dnl Check for pthread
255 AC_MSG_CHECKING(for pthread)
256 AC_ARG_WITH(pthread,
257   AS_HELP_STRING([--with-pthread], [Use pthread (default = yes)]),
258   [ have_pthread="$withval" ], [ have_pthread="yes" ])
259 if test "$have_pthread" = "yes"; then
260   AC_CHECK_LIB([pthread], [pthread_join], [HAVE_LIBPTHREAD="yes"])
261   if test "$HAVE_LIBPTHREAD" = "yes"; then
262     ALSA_DEPLIBS="$ALSA_DEPLIBS -lpthread"
263     AC_DEFINE([HAVE_LIBPTHREAD], 1, [Have libpthread])
264   fi
265 else
266   AC_MSG_RESULT(no)
267 fi
268
269 dnl Check for pthread
270 if test "$HAVE_LIBPTHREAD" = "yes"; then
271   AC_CHECK_DECL(PTHREAD_MUTEX_RECURSIVE,
272     AC_DEFINE(HAVE_PTHREAD_MUTEX_RECURSIVE, [],
273       [Define if your pthreads implementation have PTHREAD_MUTEX_RECURSIVE]),
274     ,
275     [#include <pthread.h>])
276 fi
277
278 dnl Check for __thread
279 AC_MSG_CHECKING([for __thread])
280 AC_LINK_IFELSE([AC_LANG_PROGRAM([#if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) && ((__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 1) || (__GNUC__ == 4 && __GNUC_MINOR__ == 1 && __GNUC_PATCHLEVEL__ < 2))
281 #error gcc has this bug: http://gcc.gnu.org/ml/gcc-bugs/2006-09/msg02275.html
282 #endif], [static __thread int p = 0])],
283 [AC_DEFINE(HAVE___THREAD, 1,
284 Define to 1 if compiler supports __thread)
285 AC_MSG_RESULT([yes])],
286 [AC_MSG_RESULT([no])])
287
288 dnl Check for librt
289 AC_MSG_CHECKING(for librt)
290 AC_ARG_WITH(librt,
291   AS_HELP_STRING([--with-librt], [Use librt for monotonic clock (default = yes)]),
292   [ have_librt="$withval" ], [ have_librt="yes" ])
293 if test "$have_librt" = "yes"; then
294   AC_CHECK_LIB([rt], [clock_gettime], [HAVE_LIBRT="yes"])
295   if test "$HAVE_LIBRT" = "yes" ; then
296     ALSA_DEPLIBS="$ALSA_DEPLIBS -lrt"
297     AC_DEFINE([HAVE_LIBRT], 1, [Have librt])
298     AC_DEFINE([HAVE_CLOCK_GETTIME], 1, [Have clock gettime])
299   fi
300 else
301   AC_MSG_RESULT(no)
302 fi
303
304 AC_SUBST(ALSA_DEPLIBS)
305
306 dnl Check for use of wordexp...
307 AC_MSG_CHECKING(for use of wordexp)
308 AC_ARG_WITH(wordexp,
309   AS_HELP_STRING([--with-wordexp],
310     [Use wordexp when expanding configs (default = no)]),
311   [case "$withval" in
312         y|yes) wordexp=yes ;;
313         *) wordexp=no ;;
314    esac],)
315 if test "$wordexp" = "yes" ; then
316   AC_DEFINE(HAVE_WORDEXP, "1", [Enable use of wordexp])
317   AC_MSG_RESULT(yes)
318   AC_CHECK_HEADER([wordexp.h],[], [AC_MSG_ERROR([Couldn't find wordexp.h])])
319 else
320   AC_MSG_RESULT(no)
321 fi
322
323 dnl Check for headers
324 AC_CHECK_HEADERS([endian.h sys/endian.h sys/shm.h])
325
326 dnl Check for resmgr support...
327 AC_MSG_CHECKING(for resmgr support)
328 AC_ARG_ENABLE(resmgr,
329   AS_HELP_STRING([--enable-resmgr], [support resmgr (optional)]),
330   resmgr="$enableval", resmgr="no")
331 AC_MSG_RESULT($resmgr)
332 if test "$resmgr" = "yes"; then
333   AC_CHECK_LIB(resmgr, rsm_open_device,,
334     AC_ERROR([Cannot find libresmgr]))
335   AC_DEFINE(SUPPORT_RESMGR, "1", [Support resmgr with alsa-lib])
336 fi
337
338 dnl Check for aload* support...
339 AC_MSG_CHECKING(for aload* support)
340 AC_ARG_ENABLE(aload,
341   AS_HELP_STRING([--disable-aload], [disable reading /dev/aload*]),
342   aload="$enableval", aload="yes")
343 AC_MSG_RESULT($aload)
344 if test "$aload" = "yes"; then
345   AC_DEFINE(SUPPORT_ALOAD, "1", [Support /dev/aload* access for auto-loading])
346 fi
347
348 dnl Check for non-standard /dev directory
349 AC_MSG_CHECKING([for ALSA device file directory])
350 AC_ARG_WITH(alsa-devdir,
351   AS_HELP_STRING([--with-alsa-devdir=dir],
352     [directory with ALSA device files (default /dev/snd)]),
353   [alsa_dev_dir="$withval"],
354   [alsa_dev_dir="/dev/snd"])
355 dnl make sure it has a trailing slash
356 if echo "$alsa_dev_dir" | grep -v '/$' > /dev/null; then
357   alsa_dev_dir="$alsa_dev_dir/"
358 fi
359 AC_DEFINE_UNQUOTED(ALSA_DEVICE_DIRECTORY, "$alsa_dev_dir", [Directory with ALSA device files])
360 AC_MSG_RESULT([$alsa_dev_dir])
361
362 AC_MSG_CHECKING([for aload* device file directory])
363 AC_ARG_WITH(aload-devdir,
364   AS_HELP_STRING([--with-aload-devdir=dir],
365     [directory with aload* device files (default /dev)]),
366   [aload_dev_dir="$withval"],
367   [aload_dev_dir="/dev"])
368 if echo "$aload_dev_dir" | grep -v '/$' > /dev/null; then
369   aload_dev_dir="$aload_dev_dir/"
370 fi
371 AC_DEFINE_UNQUOTED(ALOAD_DEVICE_DIRECTORY, "$aload_dev_dir", [Directory with aload* device files])
372 AC_MSG_RESULT([$aload_dev_dir])
373
374 dnl Build conditions
375 AC_ARG_ENABLE(mixer,
376   AS_HELP_STRING([--disable-mixer], [disable the mixer component]),
377   [build_mixer="$enableval"], [build_mixer="yes"])
378 AC_ARG_ENABLE(pcm,
379   AS_HELP_STRING([--disable-pcm], [disable the PCM component]),
380   [build_pcm="$enableval"], [build_pcm="yes"])
381 AC_ARG_ENABLE(rawmidi,
382   AS_HELP_STRING([--disable-rawmidi], [disable the raw MIDI component]),
383   [build_rawmidi="$enableval"], [build_rawmidi="yes"])
384 AC_ARG_ENABLE(hwdep,
385   AS_HELP_STRING([--disable-hwdep], [disable the hwdep component]),
386   [build_hwdep="$enableval"], [build_hwdep="yes"])
387 AC_ARG_ENABLE(seq,
388   AS_HELP_STRING([--disable-seq], [disable the sequencer component]),
389   [build_seq="$enableval"], [build_seq="yes"])
390 AC_ARG_ENABLE(ucm,
391   AS_HELP_STRING([--disable-ucm], [disable the use-case-manager component]),
392   [build_ucm="$enableval"], [build_ucm="yes"])
393 AC_ARG_ENABLE(topology,
394   AS_HELP_STRING([--disable-topology], [disable the DSP topology component]),
395   [build_topology="$enableval"], [build_topology="yes"])
396 AC_ARG_ENABLE(alisp,
397   AS_HELP_STRING([--enable-alisp], [enable the alisp component]),
398   [build_alisp="$enableval"], [build_alisp="no"])
399 test "$softfloat" = "yes" && build_alisp="no"
400 AC_ARG_ENABLE(old-symbols,
401   AS_HELP_STRING([--disable-old-symbols], [disable old obsoleted symbols]),
402   [keep_old_symbols="$enableval"], [keep_old_symbols="yes"])
403 AM_CONDITIONAL([KEEP_OLD_SYMBOLS], [test x$keep_old_symbols = xyes])
404
405 AC_ARG_ENABLE(mixer-modules,
406   AS_HELP_STRING([--enable-mixer-modules], [enable the additional mixer modules (experimental)]),
407   [build_mixer_modules="$enableval"], [build_mixer_modules="no"])
408
409 AC_ARG_ENABLE(mixer-pymods,
410   AS_HELP_STRING([--enable-mixer-pymods], [enable the mixer python modules (experimental)]),
411   [build_mixer_pymodules="$enableval"], [build_mixer_pymodules="no"])
412
413 AC_ARG_ENABLE(python,
414   AS_HELP_STRING([--disable-python], [disable the python components]),
415   [build_python="$enableval"], [build_python="yes"])
416
417 AC_ARG_ENABLE(python2,
418   AS_HELP_STRING([--enable-python2], [prefer python2]),
419   [build_python2="$enableval"], [build_python2="no"])
420 PYTHON_LIBS=""
421 PYTHON_INCLUDES=""
422 if test "$build_python" = "yes" -a "$build_mixer_pymodules" = "yes"; then
423   pythonlibs0=
424   pythoninc0=
425   if test "$build_python2" != "yes"; then
426     pythonlibs0=$(python3-config --libs --embed 2> /dev/null)
427     if test -z "$pythonlibs0"; then
428       pythonlibs0=$(python3-config --libs)
429     fi
430     pythoninc0=$(python3-config --includes)
431   fi
432   if test -z "$pythonlibs0"; then
433     pythonlibs0=$(python-config --libs)
434     pythoninc0=$(python-config --includes)
435   fi
436   AC_ARG_WITH(pythonlibs,
437     AS_HELP_STRING([--with-pythonlibs=ldflags],
438       [specify python libraries (-lpthread -lm -ldl -lpython2.4)]),
439     pythonlibs="$withval", pythonlibs=$pythonlibs0)
440   AC_ARG_WITH(pythonincludes,
441     AS_HELP_STRING([--with-pythonincludes=Cflags],
442       [specify python C header files (-I/usr/include/python)]),
443     pythonincludes="$withval", pythonincludes=$pythoninc0)
444   if test -z "$pythonlibs"; then
445     echo "Unable to determine python libraries! Probably python-config is not"
446     echo "available on this system. Please, use --with-pythonlibs and"
447     echo "--with-pythonincludes options. Python components are disabled in this build."
448     build_python="no"
449   else
450     PYTHON_LIBS="$pythonlibs"
451     PYTHON_INCLUDES="$pythonincludes"
452   fi
453 fi
454 if test "$build_python" != "yes"; then
455   build_mixer_pymodules=
456 fi
457 AC_SUBST(PYTHON_LIBS)
458 AC_SUBST(PYTHON_INCLUDES)
459
460 AM_CONDITIONAL([BUILD_MIXER], [test x$build_mixer = xyes])
461 AM_CONDITIONAL([BUILD_PCM], [test x$build_pcm = xyes])
462 AM_CONDITIONAL([BUILD_RAWMIDI], [test x$build_rawmidi = xyes])
463 AM_CONDITIONAL([BUILD_HWDEP], [test x$build_hwdep = xyes])
464 AM_CONDITIONAL([BUILD_SEQ], [test x$build_seq = xyes])
465 AM_CONDITIONAL([BUILD_UCM], [test x$build_ucm = xyes])
466 AM_CONDITIONAL([BUILD_TOPOLOGY], [test x$build_topology = xyes])
467 AM_CONDITIONAL([BUILD_ALISP], [test x$build_alisp = xyes])
468 AM_CONDITIONAL([BUILD_MIXER_MODULES], [test x$build_mixer_modules = xyes])
469 AM_CONDITIONAL([BUILD_MIXER_PYMODULES], [test x$build_mixer_pymodules = xyes])
470
471 if test "$build_mixer" = "yes"; then
472   AC_DEFINE([BUILD_MIXER], "1", [Build mixer component])
473 fi
474 if test "$build_pcm" = "yes"; then
475   AC_DEFINE([BUILD_PCM], "1", [Build PCM component])
476 fi
477 if test "$build_rawmidi" = "yes"; then
478   AC_DEFINE([BUILD_RAWMIDI], "1", [Build raw MIDI component])
479 fi
480 if test "$build_hwdep" = "yes"; then
481   AC_DEFINE([BUILD_HWDEP], "1", [Build hwdep component])
482 fi
483 if test "$build_seq" = "yes"; then
484   AC_DEFINE([BUILD_SEQ], "1", [Build sequencer component])
485 fi
486 if test "$build_ucm" = "yes"; then
487   AC_DEFINE([BUILD_UCM], "1", [Build UCM component])
488 fi
489 if test "$build_topology" = "yes"; then
490   AC_DEFINE([BUILD_TOPOLOGY], "1", [Build DSP Topology component])
491 fi
492
493 dnl PCM Plugins
494
495 if test "$build_pcm" = "yes"; then
496 AC_ARG_WITH(pcm-plugins,
497   AS_HELP_STRING([--with-pcm-plugins=<list>],
498     [build PCM plugins (default = all)]),
499   [pcm_plugins="$withval"], [pcm_plugins="all"])
500 else
501 pcm_plugins=""
502 fi
503
504 dnl check atomics for pcm_meter
505
506 AC_MSG_CHECKING([whether GCC supports builtin atomic intrinsics])
507 if test -z "$gcc_have_atomics"; then
508   gcc_have_atomics=no
509   AC_TRY_LINK([],
510     [int i;
511      __atomic_load_n(&i, __ATOMIC_SEQ_CST);
512      __atomic_add_fetch(&i, 0, __ATOMIC_SEQ_CST);
513     ],
514     [gcc_have_atomics=yes],
515     [gcc_have_atomics=no])
516 fi
517 AC_MSG_RESULT($gcc_have_atomics)
518
519 dnl check mmx register for pcm_dmix_i386
520
521 AC_TRY_LINK([],
522     [__asm__ volatile ("" : : : "mm0");],
523     [AC_DEFINE([HAVE_MMX], "1", [MMX technology is enabled])],
524     [])
525
526 PCM_PLUGIN_LIST="copy linear route mulaw alaw adpcm rate plug multi shm file null empty share meter hooks lfloat ladspa dmix dshare dsnoop asym iec958 softvol extplug ioplug mmap_emul"
527
528 build_pcm_plugin="no"
529 for t in $PCM_PLUGIN_LIST; do
530   eval build_pcm_$t="no"
531 done
532
533 pcm_plugins=`echo $pcm_plugins | sed 's/,/ /g'`
534 for p in $pcm_plugins; do
535   for t in $PCM_PLUGIN_LIST; do
536     if test "$p" = "$t" -o "$p" = "all"; then
537       eval build_pcm_$t="yes"
538       build_pcm_plugin="yes"
539     fi
540   done
541 done
542
543 dnl special dependencies
544 if test "$build_pcm_plug" = "yes"; then
545   build_pcm_linear="yes"
546   build_pcm_copy="yes"
547 fi
548
549 if test "$build_pcm_ioplug" = "yes"; then
550   build_pcm_extplug="yes"
551 fi
552
553 if test "$HAVE_LIBDL" != "yes"; then
554   build_pcm_meter="no"
555   build_pcm_ladspa="no"
556   build_pcm_pcm_ioplug="no"
557   build_pcm_pcm_extplug="no"
558 fi
559
560 if test "$HAVE_LIBPTHREAD" != "yes"; then
561   build_pcm_share="no"
562 fi
563
564 if test "$softfloat" = "yes"; then
565   build_pcm_lfloat="no"
566   build_pcm_ladspa="no"
567 fi
568
569 if test "$gcc_have_atomics" != "yes"; then
570   build_pcm_meter="no"
571 fi
572
573 if test "$ac_cv_header_sys_shm_h" != "yes"; then
574   build_pcm_dmix="no"
575   build_pcm_dshare="no"
576   build_pcm_dsnoop="no"
577   build_pcm_shm="no"
578 fi
579
580 AM_CONDITIONAL([BUILD_PCM_PLUGIN], [test x$build_pcm_plugin = xyes])
581 AM_CONDITIONAL([BUILD_PCM_PLUGIN_COPY], [test x$build_pcm_copy = xyes])
582 AM_CONDITIONAL([BUILD_PCM_PLUGIN_LINEAR], [test x$build_pcm_linear = xyes])
583 AM_CONDITIONAL([BUILD_PCM_PLUGIN_ROUTE], [test x$build_pcm_route = xyes])
584 AM_CONDITIONAL([BUILD_PCM_PLUGIN_MULAW], [test x$build_pcm_mulaw = xyes])
585 AM_CONDITIONAL([BUILD_PCM_PLUGIN_ALAW], [test x$build_pcm_alaw = xyes])
586 AM_CONDITIONAL([BUILD_PCM_PLUGIN_ADPCM], [test x$build_pcm_adpcm = xyes])
587 AM_CONDITIONAL([BUILD_PCM_PLUGIN_RATE], [test x$build_pcm_rate = xyes])
588 AM_CONDITIONAL([BUILD_PCM_PLUGIN_PLUG], [test x$build_pcm_plug = xyes])
589 AM_CONDITIONAL([BUILD_PCM_PLUGIN_MULTI], [test x$build_pcm_multi = xyes])
590 AM_CONDITIONAL([BUILD_PCM_PLUGIN_SHM], [test x$build_pcm_shm = xyes])
591 AM_CONDITIONAL([BUILD_PCM_PLUGIN_FILE], [test x$build_pcm_file = xyes])
592 AM_CONDITIONAL([BUILD_PCM_PLUGIN_NULL], [test x$build_pcm_null = xyes])
593 AM_CONDITIONAL([BUILD_PCM_PLUGIN_EMPTY], [test x$build_pcm_empty = xyes])
594 AM_CONDITIONAL([BUILD_PCM_PLUGIN_SHARE], [test x$build_pcm_share = xyes])
595 AM_CONDITIONAL([BUILD_PCM_PLUGIN_METER], [test x$build_pcm_meter = xyes])
596 AM_CONDITIONAL([BUILD_PCM_PLUGIN_HOOKS], [test x$build_pcm_hooks = xyes])
597 AM_CONDITIONAL([BUILD_PCM_PLUGIN_LFLOAT], [test x$build_pcm_lfloat = xyes])
598 AM_CONDITIONAL([BUILD_PCM_PLUGIN_LADSPA], [test x$build_pcm_ladspa = xyes])
599 AM_CONDITIONAL([BUILD_PCM_PLUGIN_DMIX], [test x$build_pcm_dmix = xyes])
600 AM_CONDITIONAL([BUILD_PCM_PLUGIN_DSHARE], [test x$build_pcm_dshare = xyes])
601 AM_CONDITIONAL([BUILD_PCM_PLUGIN_DSNOOP], [test x$build_pcm_dsnoop = xyes])
602 AM_CONDITIONAL([BUILD_PCM_PLUGIN_ASYM], [test x$build_pcm_asym = xyes])
603 AM_CONDITIONAL([BUILD_PCM_PLUGIN_IEC958], [test x$build_pcm_iec958 = xyes])
604 AM_CONDITIONAL([BUILD_PCM_PLUGIN_SOFTVOL], [test x$build_pcm_softvol = xyes])
605 AM_CONDITIONAL([BUILD_PCM_PLUGIN_EXTPLUG], [test x$build_pcm_extplug = xyes])
606 AM_CONDITIONAL([BUILD_PCM_PLUGIN_IOPLUG], [test x$build_pcm_ioplug = xyes])
607 AM_CONDITIONAL([BUILD_PCM_PLUGIN_MMAP_EMUL], [test x$build_pcm_mmap_emul = xyes])
608
609 dnl Defines for plug plugin
610 if test "$build_pcm_rate" = "yes"; then
611   AC_DEFINE([BUILD_PCM_PLUGIN_RATE], "1", [Build PCM rate plugin])
612 fi
613 if test "$build_pcm_route" = "yes"; then
614   AC_DEFINE([BUILD_PCM_PLUGIN_ROUTE], "1", [Build PCM route plugin])
615 fi
616 if test "$build_pcm_lfloat" = "yes"; then
617   AC_DEFINE([BUILD_PCM_PLUGIN_LFLOAT], "1", [Build PCM lfloat plugin])
618 fi
619 if test "$build_pcm_adpcm" = "yes"; then
620   AC_DEFINE([BUILD_PCM_PLUGIN_ADPCM], "1", [Build PCM adpcm plugin])
621 fi
622 if test "$build_pcm_mulaw" = "yes"; then
623   AC_DEFINE([BUILD_PCM_PLUGIN_MULAW], "1", [Build PCM mulaw plugin])
624 fi
625 if test "$build_pcm_alaw" = "yes"; then
626   AC_DEFINE([BUILD_PCM_PLUGIN_ALAW], "1", [Build PCM alaw plugin])
627 fi
628 if test "$build_pcm_mmap_emul" = "yes"; then
629   AC_DEFINE([BUILD_PCM_PLUGIN_MMAP_EMUL], "1", [Build PCM mmap-emul plugin])
630 fi
631
632 if test "$build_pcm_dmix" = "yes"; then
633 AC_MSG_CHECKING(for default lockless dmix)
634 AC_ARG_ENABLE(lockless-dmix,
635   AS_HELP_STRING([--enable-lockless-dmix],
636     [use lockless dmix as default on x86]),
637   lockless_dmix="$enableval", lockless_dmix="no")
638 if test "$lockless_dmix" = "yes"; then
639   AC_MSG_RESULT(yes)
640   AC_DEFINE([LOCKLESS_DMIX_DEFAULT], "1", [Lockless dmix as default])
641 else
642   AC_MSG_RESULT(no)
643 fi
644 fi
645
646 dnl Create PCM plugin symbol list for static library
647 rm -f "$srcdir"/src/pcm/pcm_symbols_list.c
648 touch "$srcdir"/src/pcm/pcm_symbols_list.c
649 for t in $PCM_PLUGIN_LIST; do
650   if eval test \$build_pcm_$t = yes; then
651     echo \&_snd_module_pcm_$t, >> "$srcdir"/src/pcm/pcm_symbols_list.c
652   fi
653 done
654
655 dnl Control Plugins
656
657 AC_ARG_WITH(ctl-plugins,
658   AS_HELP_STRING([--with-ctl-plugins=<list>],
659     [build control plugins (default = all)]),
660   [ctl_plugins="$withval"], [ctl_plugins="all"])
661
662 CTL_PLUGIN_LIST="shm ext"
663
664 build_ctl_plugin="no"
665 for t in $CTL_PLUGIN_LIST; do
666   eval build_ctl_$t="no"
667 done
668
669 ctl_plugins=`echo $ctl_plugins | sed 's/,/ /g'`
670 for p in $ctl_plugins; do
671   for t in $CTL_PLUGIN_LIST; do
672     if test "$p" = "$t" -o "$p" = "all"; then
673       eval build_ctl_$t="yes"
674       build_ctl_plugin="yes"
675     fi
676   done
677 done
678
679 if test "$ac_cv_header_sys_shm_h" != "yes"; then
680   build_ctl_shm="no"
681 fi
682
683 AM_CONDITIONAL([BUILD_CTL_PLUGIN], [test x$build_ctl_plugin = xyes])
684 AM_CONDITIONAL([BUILD_CTL_PLUGIN_SHM], [test x$build_ctl_shm = xyes])
685 AM_CONDITIONAL([BUILD_CTL_PLUGIN_EXT], [test x$build_ctl_ext = xyes])
686
687 dnl Create ctl plugin symbol list for static library
688 rm -f "$srcdir"/src/control/ctl_symbols_list.c
689 touch "$srcdir"/src/control/ctl_symbols_list.c
690 for t in $CTL_PLUGIN_LIST; do
691   if eval test \$build_ctl_$t = yes; then
692     echo \&_snd_module_control_$t, >> "$srcdir"/src/control/ctl_symbols_list.c
693   fi
694 done
695
696 dnl Max number of cards
697 AC_MSG_CHECKING(for max number of cards)
698 AC_ARG_WITH(max-cards,
699   AS_HELP_STRING([--with-max-cards], [Specify the max number of cards (default = 32)]),
700   [ max_cards="$withval" ], [ max_cards="32" ])
701 AC_MSG_RESULT([$max_cards])
702
703 if test "$max_cards" -lt 1; then
704    AC_ERROR([Invalid max cards $max_cards])
705 elif test "$max_cards" -gt 256; then
706    AC_ERROR([Invalid max cards $max_cards])
707 fi
708 AC_DEFINE_UNQUOTED(SND_MAX_CARDS, $max_cards, [Max number of cards])
709
710 dnl Check for thread-safe API functions
711 if test "$HAVE_LIBPTHREAD" = "yes"; then
712 AC_MSG_CHECKING(for thread-safe API functions)
713 AC_ARG_ENABLE(thread-safety,
714   AS_HELP_STRING([--disable-thread-safety],
715     [disable thread-safe API functions]),
716   threadsafe="$enableval", threadsafe="yes")
717 if test "$threadsafe" = "yes"; then
718   AC_MSG_RESULT(yes)
719   AC_DEFINE([THREAD_SAFE_API], "1", [Disable thread-safe API functions])
720 else
721   AC_MSG_RESULT(no)
722 fi
723 fi
724
725 dnl Make a symlink for inclusion of alsa/xxx.h
726 if test ! -L "$srcdir"/include/alsa ; then
727   echo "Making a symlink include/alsa"
728   rm -f "$srcdir"/include/alsa
729   ln -sf . "$srcdir"/include/alsa
730 fi
731
732 AC_OUTPUT(Makefile doc/Makefile doc/pictures/Makefile doc/doxygen.cfg \
733           include/Makefile include/sound/Makefile include/sound/uapi/Makefile \
734           src/Versions src/Makefile \
735           src/control/Makefile src/mixer/Makefile \
736           src/pcm/Makefile src/pcm/scopes/Makefile \
737           src/rawmidi/Makefile src/timer/Makefile \
738           src/hwdep/Makefile src/seq/Makefile src/ucm/Makefile \
739           src/alisp/Makefile src/topology/Makefile \
740           src/conf/Makefile \
741           src/conf/cards/Makefile \
742           src/conf/pcm/Makefile \
743           modules/Makefile modules/mixer/Makefile modules/mixer/simple/Makefile \
744           alsalisp/Makefile aserver/Makefile \
745           test/Makefile test/lsb/Makefile \
746           utils/Makefile utils/alsa-lib.spec utils/alsa.pc utils/alsa-topology.pc)
747
748 dnl Create asoundlib.h dynamically according to configure options
749 echo "Creating asoundlib.h..."
750 cp "$srcdir"/include/asoundlib-head.h include/asoundlib.h
751 test "$ac_cv_header_endian_h" = "yes" && echo "#include <endian.h>" >> include/asoundlib.h
752 if test "$ac_cv_header_sys_endian_h" = "yes"; then
753 cat >> include/asoundlib.h <<EOF
754 #include <sys/endian.h>
755 #ifndef __BYTE_ORDER
756 #define __BYTE_ORDER BYTE_ORDER
757 #endif
758 #ifndef __LITTLE_ENDIAN
759 #define __LITTLE_ENDIAN LITTLE_ENDIAN
760 #endif
761 #ifndef __BIG_ENDIAN
762 #define __BIG_ENDIAN BIG_ENDIAN
763 #endif
764 EOF
765 fi
766 cat >> include/asoundlib.h <<EOF
767
768 #ifndef __GNUC__
769 #define __inline__ inline
770 #endif
771
772 #include <alsa/asoundef.h>
773 #include <alsa/version.h>
774 #include <alsa/global.h>
775 #include <alsa/input.h>
776 #include <alsa/output.h>
777 #include <alsa/error.h>
778 #include <alsa/conf.h>
779 EOF
780 test "$build_pcm" = "yes" && echo "#include <alsa/pcm.h>" >> include/asoundlib.h
781 test "$build_rawmidi" = "yes" && echo "#include <alsa/rawmidi.h>" >> include/asoundlib.h
782 test "$build_pcm" = "yes" && echo "#include <alsa/timer.h>" >> include/asoundlib.h
783 test "$build_hwdep" = "yes" && echo "#include <alsa/hwdep.h>" >> include/asoundlib.h
784 echo "#include <alsa/control.h>" >> include/asoundlib.h
785 test "$build_mixer" = "yes" && echo "#include <alsa/mixer.h>" >> include/asoundlib.h
786 test "$build_seq" = "yes" && echo "#include <alsa/seq_event.h>" >> include/asoundlib.h
787 test "$build_seq" = "yes" && echo "#include <alsa/seq.h>" >> include/asoundlib.h
788 test "$build_seq" = "yes" && echo "#include <alsa/seqmid.h>" >> include/asoundlib.h
789 test "$build_seq" = "yes" && echo "#include <alsa/seq_midi_event.h>" >> include/asoundlib.h
790 cat "$srcdir"/include/asoundlib-tail.h >> include/asoundlib.h