package/gstreamer1/gst1-plugins-good: switch to libsoup3

libsoup3 is supported since
c3455def2e

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Fabrice Fontaine 2023-12-27 12:48:23 +01:00 committed by Peter Korsgaard
parent 53779570e5
commit a760645bfb
2 changed files with 7 additions and 7 deletions

View File

@ -261,7 +261,7 @@ comment "plugins with external dependencies"
config BR2_PACKAGE_GST1_PLUGINS_GOOD_ADAPTIVEMUX2
bool "adaptivedemux2 (Adaptive Streaming 2)"
select BR2_PACKAGE_LIBXML2
select BR2_PACKAGE_LIBSOUP
select BR2_PACKAGE_LIBSOUP3
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME
bool "lame (*.mp3 audio encoder)"
@ -383,11 +383,11 @@ comment "pulseaudio support needs a toolchain w/ threads, wchar, dynamic library
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC
bool "souphttpsrc (http client)"
depends on BR2_USE_WCHAR # libsoup -> glib2
depends on BR2_TOOLCHAIN_HAS_THREADS # libsoup -> glib2
select BR2_PACKAGE_LIBSOUP
depends on BR2_USE_WCHAR # libsoup3 -> glib2
depends on BR2_TOOLCHAIN_HAS_THREADS # libsoup3 -> glib2
select BR2_PACKAGE_LIBSOUP3
help
libsoup HTTP client src/sink
libsoup3 HTTP client src/sink
comment "souphttpsrc needs a toolchain w/ wchar, threads"
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS

View File

@ -60,7 +60,7 @@ endif
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_GOOD_ADAPTIVEMUX2),y)
GST1_PLUGINS_GOOD_CONF_OPTS += -Dadaptivedemux2=enabled
GST1_PLUGINS_GOOD_DEPENDENCIES += libsoup libxml2
GST1_PLUGINS_GOOD_DEPENDENCIES += libsoup3 libxml2
else
GST1_PLUGINS_GOOD_CONF_OPTS += -Dadaptivedemux2=disabled
endif
@ -453,7 +453,7 @@ endif
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC),y)
GST1_PLUGINS_GOOD_CONF_OPTS += -Dsoup=enabled
GST1_PLUGINS_GOOD_DEPENDENCIES += libsoup
GST1_PLUGINS_GOOD_DEPENDENCIES += libsoup3
else
GST1_PLUGINS_GOOD_CONF_OPTS += -Dsoup=disabled
endif