summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Ruppert <idl0r@gentoo.org>2011-10-10 00:10:19 +0200
committerChristian Ruppert <idl0r@gentoo.org>2011-10-10 00:10:19 +0200
commitcf0b900629d2dea913b312b91f36b8f38fd6aec5 (patch)
treed488088f58cda7621487ecf32e718fe894b2ab80
parentbe49750fb55631f78771072e95ef8855a83c03c3 (diff)
downloadxine-lib-cf0b900629d2dea913b312b91f36b8f38fd6aec5.tar.gz
xine-lib-cf0b900629d2dea913b312b91f36b8f38fd6aec5.tar.bz2
More detailed error messages if requirements are not met
-rw-r--r--m4/decoders.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/decoders.m4 b/m4/decoders.m4
index e2190e772..2fe4d766f 100644
--- a/m4/decoders.m4
+++ b/m4/decoders.m4
@@ -404,7 +404,7 @@ AC_DEFUN([XINE_DECODER_PLUGINS], [
if test x"$with_speex" != x"no"; then
PKG_CHECK_MODULES([SPEEX], [ogg speex], [have_speex=yes], [have_speex=no])
if test x"$with_speex" = x"yes" && test x"$have_speex" != x"yes"; then
- AC_MSG_ERROR([Speex support requested, but libspeex not found])
+ AC_MSG_ERROR([Speex support requested, but libspeex and/or libogg not found])
elif test x"$have_speex" = x"yes"; then
AC_DEFINE([HAVE_SPEEX], 1, [Define this if you have speex])
fi
@@ -419,7 +419,7 @@ AC_DEFUN([XINE_DECODER_PLUGINS], [
if test x"$with_theora" != x"no"; then
PKG_CHECK_MODULES([THEORA], [ogg theora], [have_theora=yes], [have_theora=no])
if test x"$with_theora" = x"yes" && test x"$have_theora" = x"no"; then
- AC_MSG_ERROR([Theora support requested, but libtheora not found])
+ AC_MSG_ERROR([Theora support requested, but libtheora and/or libogg not found])
elif test x"$have_theora" = x"yes"; then
AC_DEFINE([HAVE_THEORA], 1, [Define this if you have theora])
fi
@@ -434,7 +434,7 @@ AC_DEFUN([XINE_DECODER_PLUGINS], [
if test x"$with_vorbis" != x"no"; then
PKG_CHECK_MODULES([VORBIS], [ogg vorbis], [have_vorbis=yes], [have_vorbis=no])
if test x"$with_vorbis" = x"yes" && test x"$have_vorbis" = "xno"; then
- AC_MSG_ERROR([Vorbis support requested, but libvorbis not found])
+ AC_MSG_ERROR([Vorbis support requested, but libvorbis and/or libogg not found])
elif test x"$have_vorbis" = x"yes"; then
AC_DEFINE([HAVE_VORBIS], 1, [Define this if you have vorbis])
fi