mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
meson: Fix glib-networking build on non-Linux
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7091>
This commit is contained in:
parent
a04ed4b91e
commit
6073257bd8
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ giomodules = []
|
||||||
glib_dep = dependency('glib-2.0')
|
glib_dep = dependency('glib-2.0')
|
||||||
if glib_dep.type_name() == 'internal'
|
if glib_dep.type_name() == 'internal'
|
||||||
subp = subproject('glib-networking', required : get_option('tls'),
|
subp = subproject('glib-networking', required : get_option('tls'),
|
||||||
default_options: ['gnutls=auto', 'openssl=auto'])
|
default_options: ['gnutls=auto', 'openssl=auto', 'libproxy=auto', 'gnome_proxy=auto'])
|
||||||
if subp.found()
|
if subp.found()
|
||||||
giomodules += subp.get_variable('giomodules', [])
|
giomodules += subp.get_variable('giomodules', [])
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue