summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2017-01-20 07:45:43 +0100
committerSebastian Dröge <sebastian@centricular.com>2017-01-23 18:04:34 +0200
commita68f9619082e98caa8a7851dcb5a8ef2fd4baa61 (patch)
tree60249dc10d3e353e30e130b8cc268ae51796ddb3 /configure.ac
parentcea4346d84eda7df2f0d02c1c716217fca7c1982 (diff)
downloadgstreamer-plugins-bad-a68f9619082e98caa8a7851dcb5a8ef2fd4baa61.tar.gz
iqa: Move AM_CONDITIONAL(HAVE_DSSIM) outside of the iqa check block
or else configure fails with error: conditional "HAVE_DSSIM" was never defined. when iqa is not installed. https://bugzilla.gnome.org/show_bug.cgi?id=777652
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index d98f92a45..285d3f424 100644
--- a/configure.ac
+++ b/configure.ac
@@ -359,13 +359,13 @@ AG_GST_CHECK_FEATURE(IQA, [iqa], iqa , [
HAVE_IQA="no"
])
- AM_CONDITIONAL(HAVE_DSSIM, test "x$HAVE_DSSIM" = "xyes")
if test "x$HAVE_DSSIM" = "xyes"; then
AC_DEFINE(HAVE_DSSIM, 1, [Define if you have dssim library])
fi
AC_SUBST(DSSIM_LIBS)
AC_SUBST(DSSIM_CFLAGS)
])
+AM_CONDITIONAL(HAVE_DSSIM, test "x$HAVE_DSSIM" = "xyes")
dnl Orc
ORC_CHECK([0.4.17])