mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 05:59:10 +00:00
Cerbero has moved from gnutls+openssl to only openssl
This commit is contained in:
parent
e6bbe6fd7a
commit
8b90dd949a
2 changed files with 5 additions and 5 deletions
|
@ -30,7 +30,7 @@ G_PASTE(g_io_, G_PASTE(name, _load)) (NULL)
|
|||
//#define GST_IOS_PLUGINS_GES
|
||||
|
||||
|
||||
#define GST_IOS_GIO_MODULE_GNUTLS
|
||||
#define GST_IOS_GIO_MODULE_OPENSSL
|
||||
|
||||
void gst_ios_init (void);
|
||||
|
||||
|
|
|
@ -528,8 +528,8 @@ GST_PLUGIN_STATIC_DECLARE(rtmp);
|
|||
GST_PLUGIN_STATIC_DECLARE(nle);
|
||||
#endif
|
||||
|
||||
#if defined(GST_IOS_GIO_MODULE_GNUTLS)
|
||||
GST_G_IO_MODULE_DECLARE(gnutls);
|
||||
#if defined(GST_IOS_GIO_MODULE_OPENSSL)
|
||||
GST_G_IO_MODULE_DECLARE(openssl);
|
||||
#endif
|
||||
|
||||
void
|
||||
|
@ -564,8 +564,8 @@ gst_ios_init (void)
|
|||
ca_certificates = g_build_filename (resources_dir, "ssl", "certs", "ca-certificates.crt", NULL);
|
||||
g_setenv ("CA_CERTIFICATES", ca_certificates, TRUE);
|
||||
|
||||
#if defined(GST_IOS_GIO_MODULE_GNUTLS)
|
||||
GST_G_IO_MODULE_LOAD(gnutls);
|
||||
#if defined(GST_IOS_GIO_MODULE_OPENSSL)
|
||||
GST_G_IO_MODULE_LOAD(openssl);
|
||||
#endif
|
||||
|
||||
if (ca_certificates) {
|
||||
|
|
Loading…
Reference in a new issue