From 2ea425d1942b0171724ca81a4da5691f3c0645d7 Mon Sep 17 00:00:00 2001 From: Tanu Kaskinen Date: Mon, 23 Nov 2020 19:12:27 +0200 Subject: build-sys: Disable GStreamer by default with Autotools With Meson GStreamer is already disabled by default, let's match that with Autotools. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 08edf589d..78f4958a6 100644 --- a/configure.ac +++ b/configure.ac @@ -1315,9 +1315,9 @@ AS_IF([test "x$HAVE_SYSTEMD_JOURNAL" = "x1"], AC_DEFINE([HAVE_SYSTEMD_JOURNAL], #### GStreamer-based RTP support (optional) #### AC_ARG_ENABLE([gstreamer], - AS_HELP_STRING([--disable-gstreamer],[Disable optional GStreamer-based RTP support])) + AS_HELP_STRING([--enable-gstreamer],[Enable optional GStreamer-based RTP support])) -AS_IF([test "x$enable_gstreamer" != "xno"], +AS_IF([test "x$enable_gstreamer" = "xyes"], [PKG_CHECK_MODULES(GSTREAMER, [ gstreamer-1.0 >= 1.14 gstreamer-app-1.0 gstreamer-rtp-1.0 gio-2.0 ], HAVE_GSTREAMER=1, HAVE_GSTREAMER=0)], HAVE_GSTREAMER=0) -- cgit v1.2.1