From 17680c270420be6113b519a564067a673e350390 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 15 Feb 2018 12:51:10 +0000 Subject: [PATCH] configure: fix build with --disable-external --- configure.ac | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index f99521b6a6..3b4074d9fb 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",