[libsoup/wip/meson] meson: Re-word TLS check



commit df8cb2f3183f14a798fc82e3511ca79d7daf6f84
Author: Chun-wei Fan <fanchunwei src gnome org>
Date:   Tue Nov 28 18:06:08 2017 +0800

    meson: Re-word TLS check
    
    Re-word the sections where we check for real TLS support from GIO, as
    this support currently may be provided via glib-networking (GNUTLS) or
    glib-openssl (OpenSSL and possibly libressl).  Let people know that
    either glib-networking and glib-openssl are required and supported for
    libsoup to work.

 meson.build |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/meson.build b/meson.build
index 238876e..dcba665 100644
--- a/meson.build
+++ b/meson.build
@@ -60,9 +60,9 @@ if host_machine.system() == 'windows'
 endif
 
 ###################
-# glib-networking #
+# GIO TLS support #
 ###################
-check_glib_networking_src = '''#include <gio/gio.h>
+check_gio_tls_src = '''#include <gio/gio.h>
 int main(void) {
   return !g_tls_backend_supports_tls (g_tls_backend_get_default ());
 }
@@ -70,8 +70,8 @@ int main(void) {
 
 enable_tls_check = get_option('tls_check')
 if enable_tls_check
-  if not cc.compiles(check_glib_networking_src, name : 'glib-networking supports TLS', dependencies : 
glib_dep)
-    error('libsoup requires glib-networking for TLS support')
+  if not cc.compiles(check_gio_tls_src, name : 'GIO has real TLS support', dependencies : glib_dep)
+    error('libsoup requires glib-networking or glib-openssl for TLS support')
   endif
 endif
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]