diff options
| author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-07-18 21:38:16 +0000 |
|---|---|---|
| committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-07-18 21:38:16 +0000 |
| commit | a785a3e404bdba9e901431cf9d2e047e8d4b4c1a (patch) | |
| tree | c31784d3351c1c9728af1fc6a4bf300b5ef02397 /configure.in | |
| parent | 0cc3c12037389df276f5233ea5d5bcd7929ddc18 (diff) | |
| download | xine-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.in | 11 |
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 |
