Hi folks,

attached is a simple fix for a conditional AM_CONDITIONAL:

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

Cheerio!
-Ralph
From 912ec4da0ed7c0d69ba269cb0709ad1eac0f07e2 Mon Sep 17 00:00:00 2001
From: Ralph Boehme <s...@samba.org>
Date: Fri, 19 Jun 2015 12:28:50 +0200
Subject: [PATCH] configure: fix conditional AM_CONDITIONAL

Signed-off-by: Ralph Boehme <s...@samba.org>
---
 configure.ac | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/configure.ac b/configure.ac
index 17a70da..4fec142 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1877,6 +1877,9 @@ elif test "$have_generic_media_handler_app" = "libav"; 
then
     AC_DEFINE(HAVE_GSTREAMER, [], [Define if we have libav])
     AM_CONDITIONAL(HAVE_LIBAV, true)
     AM_CONDITIONAL(HAVE_GSTREAMER, false)
+else
+    AM_CONDITIONAL(HAVE_LIBAV, false)
+    AM_CONDITIONAL(HAVE_GSTREAMER, false)
 fi
 
 ###########################################################################
-- 
2.1.0

_______________________________________________
tracker-list mailing list
tracker-list@gnome.org
https://mail.gnome.org/mailman/listinfo/tracker-list

Reply via email to