summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael McConville <mmcconville@mykolab.com>2015-08-10 17:21:28 -0400
committerMichael McConville <mmcconville@mykolab.com>2015-08-10 17:21:28 -0400
commitae180c8fd824c3d36d6e428c2c3c6baa4aa89f96 (patch)
tree5dcc930e5f94d662932554acc8a3bf305046f97f
parent384be7043d451015ec765d0b37cb5df91f96c1f4 (diff)
downloadpidgin-ae180c8fd824c3d36d6e428c2c3c6baa4aa89f96.tar.gz
Remove spurious 'yes' in configure script.
-rw-r--r--configure.ac4
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index ed2f3b5b8a..27b0f90476 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1186,14 +1186,12 @@ dnl #######################################################################
dnl # Check for Raw data streams support in Farstream
dnl #######################################################################
if test "x$enable_vv" != "xno" -a "x$with_gstreamer" == "x1.0"; then
- AC_MSG_CHECKING(for raw data support in Farstream)
PKG_CHECK_MODULES(GSTAPP, [gstreamer-app-1.0], [
AC_DEFINE(USE_GSTAPP, 1, [Use GStreamer Video Overlay support])
AC_SUBST(GSTAPP_CFLAGS)
AC_SUBST(GSTAPP_LIBS)
AC_DEFINE(HAVE_MEDIA_APPLICATION, 1, [Define if we have support for application media type.])
- AC_MSG_RESULT(yes)
- ], [AC_MSG_RESULT(no)])
+ ] , )
fi
dnl #######################################################################