mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
e24e366952
See: https://gitlab.gnome.org/GNOME/libsoup/-/merge_requests/255 We also need to disable sysprof by default because it only builds on native Linux. If someone really wants it, they can enable the option on the command-line by passing -Dlibsoup:sysprof=enabled Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1114>
30 lines
883 B
Meson
30 lines
883 B
Meson
soup_sources = [
|
|
'gstsouphttpsrc.c',
|
|
'gstsouphttpclientsink.c',
|
|
'gstsouputils.c',
|
|
'gstsoupelement.c',
|
|
'gstsoup.c',
|
|
]
|
|
|
|
soup_args = [
|
|
'-DSOUP_VERSION_MIN_REQUIRED=SOUP_VERSION_2_48',
|
|
'-DSOUP_VERSION_MAX_ALLOWED=SOUP_DEPRECATED_IN_2_48',
|
|
]
|
|
|
|
libsoup_dep = dependency('libsoup-2.4', version : '>=2.48', required : get_option('soup'),
|
|
fallback : ['libsoup', 'libsoup_dep'],
|
|
default_options: ['sysprof=disabled'])
|
|
|
|
if libsoup_dep.found()
|
|
gstsouphttpsrc = library('gstsoup',
|
|
soup_sources,
|
|
c_args : gst_plugins_good_args + soup_args,
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gst_dep, gstbase_dep, gsttag_dep, libsoup_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstsouphttpsrc, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstsouphttpsrc]
|
|
endif
|