Bump buildroot to 2019.02
This commit is contained in:
@@ -261,6 +261,18 @@ config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_Y4M
|
||||
|
||||
comment "plugins with external dependencies"
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME
|
||||
bool "lame (*.mp3 audio encoder)"
|
||||
select BR2_PACKAGE_LAME
|
||||
help
|
||||
Encode MP3s with LAME
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123
|
||||
bool "mpg123 (*.mp3 audio)"
|
||||
select BR2_PACKAGE_MPG123
|
||||
help
|
||||
mp3 decoding based on the mpg123 library
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_OSS
|
||||
bool "ossaudio (OSS audio)"
|
||||
help
|
||||
@@ -362,14 +374,12 @@ comment "taglib needs a toolchain w/ C++, wchar"
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_VPX
|
||||
bool "vpx (webm)"
|
||||
depends on !BR2_bfin # libvpx
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libvpx
|
||||
select BR2_PACKAGE_LIBVPX
|
||||
help
|
||||
VP8 plugin
|
||||
|
||||
comment "libvpx needs a toolchain w/ threads"
|
||||
depends on !BR2_bfin
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_WAVPACK
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
# From https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.12.4.tar.xz.sha256sum
|
||||
sha256 649f49bec60892d47ee6731b92266974c723554da1c6649f21296097715eb957 gst-plugins-good-1.12.4.tar.xz
|
||||
# From https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.14.4.tar.xz.sha256sum
|
||||
sha256 5f8b553260cb0aac56890053d8511db1528d53cae10f0287cfce2cb2acc70979 gst-plugins-good-1.14.4.tar.xz
|
||||
sha256 6095e9ffa777dd22839f7801aa845b31c9ed07f3d6bf8a26dc5d2dec8ccc0ef3 COPYING
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GST1_PLUGINS_GOOD_VERSION = 1.12.4
|
||||
GST1_PLUGINS_GOOD_VERSION = 1.14.4
|
||||
GST1_PLUGINS_GOOD_SOURCE = gst-plugins-good-$(GST1_PLUGINS_GOOD_VERSION).tar.xz
|
||||
GST1_PLUGINS_GOOD_SITE = https://gstreamer.freedesktop.org/src/gst-plugins-good
|
||||
GST1_PLUGINS_GOOD_LICENSE_FILES = COPYING
|
||||
@@ -20,17 +20,24 @@ GST1_PLUGINS_GOOD_CONF_OPTS = \
|
||||
--disable-osx_video \
|
||||
--disable-aalib \
|
||||
--disable-aalibtest \
|
||||
--disable-libcaca
|
||||
--disable-libcaca \
|
||||
--disable-qt
|
||||
|
||||
# Options which require currently unpackaged libraries
|
||||
GST1_PLUGINS_GOOD_CONF_OPTS += \
|
||||
--disable-jack \
|
||||
--disable-libdv \
|
||||
--disable-dv1394 \
|
||||
--disable-shout2
|
||||
|
||||
GST1_PLUGINS_GOOD_DEPENDENCIES = gstreamer1 gst1-plugins-base
|
||||
|
||||
ifeq ($(BR2_PACKAGE_JACK2),y)
|
||||
GST1_PLUGINS_GOOD_CONF_OPTS += --enable-jack
|
||||
GST1_PLUGINS_GOOD_DEPENDENCIES += jack2
|
||||
else
|
||||
GST1_PLUGINS_GOOD_CONF_OPTS += --disable-jack
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBV4L),y)
|
||||
GST1_PLUGINS_GOOD_CONF_OPTS += --with-libv4l2
|
||||
GST1_PLUGINS_GOOD_DEPENDENCIES += libv4l
|
||||
@@ -175,6 +182,20 @@ else
|
||||
GST1_PLUGINS_GOOD_CONF_OPTS += --disable-isomp4
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME),y)
|
||||
GST1_PLUGINS_GOOD_CONF_OPTS += --enable-lame
|
||||
GST1_PLUGINS_GOOD_DEPENDENCIES += lame
|
||||
else
|
||||
GST1_PLUGINS_GOOD_CONF_OPTS += --disable-lame
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123),y)
|
||||
GST1_PLUGINS_GOOD_CONF_OPTS += --enable-mpg123
|
||||
GST1_PLUGINS_GOOD_DEPENDENCIES += mpg123
|
||||
else
|
||||
GST1_PLUGINS_GOOD_CONF_OPTS += --disable-mpg123
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAW),y)
|
||||
GST1_PLUGINS_GOOD_CONF_OPTS += --enable-law
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user