summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-02-15 12:51:10 +0000
committerTim-Philipp Müller <tim@centricular.com>2018-02-15 12:51:10 +0000
commit17680c270420be6113b519a564067a673e350390 (patch)
treeea3a6f2f935506e3fef4873168925e5551aaa4d2
parentec12a18dc29ca698c636ee49ee1e9c5f10236917 (diff)
configure: fix build with --disable-external
-rw-r--r--configure.ac7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index f99521b6a..3b4074d9f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -674,9 +674,6 @@ AG_GST_CHECK_FEATURE(GL, [gl elements], gl, [
AG_GST_GL_PLUGIN_CHECKS
fi
])
-AM_CONDITIONAL(HAVE_GRAPHENE, test "x$HAVE_GRAPHENE" = "xyes")
-AM_CONDITIONAL(HAVE_PNG, test "x$HAVE_PNG" = "xyes")
-AM_CONDITIONAL(HAVE_JPEG, test "x$HAVE_JPEG" = "xyes")
dnl *** ivorbis ***
dnl AM_PATH_IVORBIS only takes two options
@@ -791,6 +788,10 @@ AM_CONDITIONAL(USE_VORBIS, false)
fi dnl of EXT plugins
+AM_CONDITIONAL(HAVE_GRAPHENE, test "x$HAVE_GRAPHENE" = "xyes")
+AM_CONDITIONAL(HAVE_PNG, test "x$HAVE_PNG" = "xyes")
+AM_CONDITIONAL(HAVE_JPEG, test "x$HAVE_JPEG" = "xyes")
+
dnl *** gio-unix-2.0 for tests/check/pipelines/tcp.c ***
PKG_CHECK_MODULES(GIO_UNIX_2_0, gio-unix-2.0 >= 2.24,
HAVE_GIO_UNIX_2_0="yes",