summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-07-26 09:18:40 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-07-26 09:18:40 +0000
commit894867d9d14d132ad28a765838dc3a2fa03f0965 (patch)
treeb5aa3735f63889e6211dfb3eec6260a39108886a
parent95199c74b5d14cb6e151002cf9825d9f2d9b6548 (diff)
downloadxine-lib-894867d9d14d132ad28a765838dc3a2fa03f0965.tar.gz
xine-lib-894867d9d14d132ad28a765838dc3a2fa03f0965.tar.bz2
For some reasons to some users AC_SUBST isn't run by default by PKG_CHECK_MODULES, so run it explicitely.
CVS patchset: 8139 CVS date: 2006/07/26 09:18:40
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 12aff6484..c8a25a588 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1306,6 +1306,8 @@ AC_ARG_WITH([alsa],
if test "x$with_alsa" != "xno"; then
PKG_CHECK_MODULES([ALSA], [alsa >= 0.9.0], [have_alsa=yes], [have_alsa=no])
+ AC_SUBST([ALSA_LIBS])
+ AC_SUBST([ALSA_CFLAGS])
if test "x$have_alsa" = "xyes"; then
AC_DEFINE([HAVE_ALSA], [1], [Define this if you have ALSA installed])
elif test "x$with_alsa" = "xyes"; then