[vlc-commits] Require ALSA version 1.0.16
Rémi Denis-Courmont
git at videolan.org
Wed Apr 13 19:36:05 CEST 2011
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Apr 13 18:58:32 2011 +0300| [c30b9a475e33b6cd77a2ec45ff823222504ac201] | committer: Rémi Denis-Courmont
Require ALSA version 1.0.16
In any case, ALSA version 1.0.24 is recommended as any older versions
may cause spurious failures when used in VLC.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c30b9a475e33b6cd77a2ec45ff823222504ac201
---
configure.ac | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 44931f1..e0d043c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3459,11 +3459,11 @@ AC_ARG_ENABLE(alsa,
[ --enable-alsa Advanced Linux Sound Architecture (default auto)])
have_alsa="no"
AS_IF([test "${enable_alsa}" != "no"], [
- PKG_CHECK_MODULES([ALSA], [alsa >= 1.0.0], [
+ PKG_CHECK_MODULES([ALSA], [alsa >= 1.0.16], [
have_alsa="yes"
], [
AS_IF([test "x${enable_alsa}" != "x"], [
- AC_MSG_ERROR([alsa-lib not found])
+ AC_MSG_ERROR([alsa-lib version 1.0.16 or later not found])
])
])
])
More information about the vlc-commits
mailing list