Mercurial > pidgin.yaz
changeset 28381:288ec4628f63
Fail the configure script if voice and video dependencies are missing.
author | maiku@pidgin.im |
---|---|
date | Fri, 21 Aug 2009 00:30:08 +0000 |
parents | 6b446431b2b0 |
children | d4847cef4a84 4d4e6adea7bc |
files | configure.ac |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/configure.ac Thu Aug 20 18:13:41 2009 +0000 +++ b/configure.ac Fri Aug 21 00:30:08 2009 +0000 @@ -795,13 +795,13 @@ dnl ####################################################################### AC_ARG_ENABLE(vv, [AC_HELP_STRING([--disable-vv], [compile without voice and video support])], - [enable_vv="$enableval" force_vv=$enableval], [enable_vv="yes" force_vv=no]) + enable_vv="$enableval", enable_vv="yes") if test "x$enable_vv" != "xno"; then if test "x$enable_gstreamer" != "xno" -a "x$enable_gstinterfaces" != "xno" -a "x$enable_farsight" != "xno"; then AC_DEFINE(USE_VV, 1, [Use voice and video]) else enable_vv="no" - if test "x$force_vv" = "xyes"; then + if test "x$force_deps" = "xyes"; then AC_MSG_ERROR([ Dependencies for voice/video were not met. Install the necessary gstreamer and farsight packages first.