Commit 81a929ac authored by Timo Gurr's avatar Timo Gurr Committed by Olivier Crête

configure: Fix configure failure when building without gstreamer support

Error introduced in 20ea22e0, resulting in a
configure/build error when building without gstreamer:

configure: error: conditional "HAVE_GST_CHECK" was never defined.
Usually this means the macro was only invoked conditionally.

https://bugs.freedesktop.org/show_bug.cgi?id=90801
parent d3a7b315
...@@ -231,9 +231,6 @@ AS_IF([test "$with_gstreamer" != no], [ ...@@ -231,9 +231,6 @@ AS_IF([test "$with_gstreamer" != no], [
[ [
have_gst_check=no have_gst_check=no
]) ])
AM_CONDITIONAL(HAVE_GST_CHECK, test "$have_gst_check" = yes)
]) ])
AS_IF([test "$with_gstreamer010" != no], [ AS_IF([test "$with_gstreamer010" != no], [
...@@ -260,6 +257,7 @@ AC_SUBST(gstplugindir) ...@@ -260,6 +257,7 @@ AC_SUBST(gstplugindir)
AC_SUBST(gstplugin010dir) AC_SUBST(gstplugin010dir)
AM_CONDITIONAL(WITH_GSTREAMER, test "$with_gstreamer" = yes) AM_CONDITIONAL(WITH_GSTREAMER, test "$with_gstreamer" = yes)
AM_CONDITIONAL(HAVE_GST_CHECK, test "$have_gst_check" = yes)
AM_CONDITIONAL(WITH_GSTREAMER010, test "$with_gstreamer010" = yes) AM_CONDITIONAL(WITH_GSTREAMER010, test "$with_gstreamer010" = yes)
GUPNP_IGD_REQUIRED=0.2.4 GUPNP_IGD_REQUIRED=0.2.4
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment