diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-08-29 11:17:03 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-08-30 04:59:49 +0530 |
commit | 72ffa9132690abfe73d9d0263ccc519d01328203 (patch) | |
tree | 74baf63698a123b9c51a4d12447a7abecf43d74e /recipes/gst-libav-1.0.recipe | |
parent | f050370e0a52bbb02884257f6e138a7d7ff9c89a (diff) |
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
Diffstat (limited to 'recipes/gst-libav-1.0.recipe')
-rw-r--r-- | recipes/gst-libav-1.0.recipe | 4 |
1 files changed, 2 insertions, 2 deletions
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' ] |