From 72ffa9132690abfe73d9d0263ccc519d01328203 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Wed, 29 Aug 2018 11:17:03 +0530 Subject: gst-libav-1.0.recipe: Fix license configure option The option is --disable-gpl not --enable-lgpl, which means we didn't pass the option down to ffmpeg. Thankfully, both gst-libav and ffmpeg default to --disable-gpl, so this did not cause any isues. Verified by checking ffmpeg's configure output: Configuring included Libav instance with args ... License: LGPL version 2.1 or later The default for ffmpeg is also --disable-nonfree + --disable-version3 so the license specified in the recipe is correct. https://bugzilla.gnome.org/show_bug.cgi?id=797041 --- recipes/gst-libav-1.0.recipe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'recipes/gst-libav-1.0.recipe') diff --git a/recipes/gst-libav-1.0.recipe b/recipes/gst-libav-1.0.recipe index 8f453c72..f19e2e8b 100644 --- a/recipes/gst-libav-1.0.recipe +++ b/recipes/gst-libav-1.0.recipe @@ -10,8 +10,8 @@ class Recipe(custom.GStreamer): licenses = [License.LGPLv2Plus] autoreconf = True autoreconfig_sh = './autogen.sh --noconfigure' - configure_options = "--enable-lgpl --disable-examples --enable-static \ - --disable-gtk-doc --disable-fatal-warnings " + configure_options = "--disable-gpl --enable-static --disable-gtk-doc \ + --disable-fatal-warnings " remotes = {'origin': 'https://anongit.freedesktop.org/git/gstreamer/gst-libav'} deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'bzip2', 'zlib' ] -- cgit v1.2.3