From 31793b78cbfe17a6bbfc9a8cdce946efc6c1ef95 Mon Sep 17 00:00:00 2001 From: Jan Steffens Date: Wed, 12 Feb 2014 18:17:52 -0800 Subject: [PATCH] Bug 806917 followup: Fix gstreamer chunk of configure.in to handle --disable-gstreamer properly. r=gps --- configure.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.in b/configure.in index 4aa5d915d53f..0d813a4498cf 100644 --- a/configure.in +++ b/configure.in @@ -5513,6 +5513,8 @@ MOZ_ARG_ENABLE_STRING(gstreamer, # API version, eg 0.10, 1.0 etc if test -z "$enableval" -o "$enableval" = "yes"; then GST_API_VERSION=0.10 + elif test "$enableval" = "no"; then + MOZ_GSTREAMER= else GST_API_VERSION=$enableval fi],