summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-07-18 21:38:16 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-07-18 21:38:16 +0000
commita785a3e404bdba9e901431cf9d2e047e8d4b4c1a (patch)
treec31784d3351c1c9728af1fc6a4bf300b5ef02397 /configure.in
parent0cc3c12037389df276f5233ea5d5bcd7929ddc18 (diff)
downloadxine-lib-a785a3e404bdba9e901431cf9d2e047e8d4b4c1a.tar.gz
xine-lib-a785a3e404bdba9e901431cf9d2e047e8d4b4c1a.tar.bz2
Split alsa drivers, more checks about versions. Made xine lib c++ compliant.
CVS patchset: 308 CVS date: 2001/07/18 21:38:16
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in11
1 files changed, 10 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 23927763b..a7a4697eb 100644
--- a/configure.in
+++ b/configure.in
@@ -228,9 +228,18 @@ dnl
dnl Alsa support
dnl
AM_PATH_ALSA(0.5.5,
- AC_DEFINE(HAVE_ALSA),
+ [ AC_DEFINE(HAVE_ALSA)
+ if test x"$have_alsa05" == "xyes"; then
+ AC_DEFINE(HAVE_ALSA05)
+ fi
+ if test x"$have_alsa09" == "xyes"; then
+ AC_DEFINE(HAVE_ALSA09)
+ fi
+ ],
AC_MSG_RESULT(*** All of ALSA dependent parts will be disabled ***))
AM_CONDITIONAL(HAVE_ALSA, test x"$no_alsa" != "xyes")
+AM_CONDITIONAL(HAVE_ALSA05, test x"$have_alsa05" == "xyes")
+AM_CONDITIONAL(HAVE_ALSA09, test x"$have_alsa09" == "xyes")
dnl