summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjell.ahlstedt@bredband.net>2013-10-30 09:50:25 +0100
committerKjell Ahlstedt <kjell.ahlstedt@bredband.net>2013-10-30 09:50:25 +0100
commit2a1b68928c53bb5fd80c96b754e91aeaec923a19 (patch)
tree65817811c5be117ad819cfce73cf0e850bf3ccd8
parentc619be2fadae1b5a87151db0b0adddf55584084a (diff)
downloadglibmm-2a1b68928c53bb5fd80c96b754e91aeaec923a19.tar.gz
giomm_tls_client test: Add some comments
* tests/giomm_tls_client/main.cc: Add comments describing what to do if the test fails because glib does not find a TLS backend.
-rw-r--r--tests/giomm_tls_client/main.cc18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/giomm_tls_client/main.cc b/tests/giomm_tls_client/main.cc
index 65181129..8752970a 100644
--- a/tests/giomm_tls_client/main.cc
+++ b/tests/giomm_tls_client/main.cc
@@ -1,3 +1,21 @@
+// This test case fails unless an implementation of TLS backend is installed.
+// (Exception caught: TLS support is not available.)
+// Module glib-networking implements TLS backend.
+//
+// Even if glib-networking is installed, it's possible that glib does not find it.
+// That's very probable if glib and glib-networking are installed with different
+// directory prefixes, e.g. glib in /opt/gnome and glib-networking in /usr.
+// You can fix that by setting the GIO_EXTRA_MODULES environment variable to
+// the directory to search for implementations of gio extension points.
+// Example:
+// export GIO_EXTRA_MODULES=/usr/lib/x86_64-linux-gnu/gio/modules
+// If you don't know where the implementations of gio extension points are stored,
+// search for a file named giomodule.cache.
+//
+// https://developer.gnome.org/gio/stable/extending-gio.html (G_TLS_BACKEND_EXTENSION_POINT_NAME)
+// https://developer.gnome.org/gio/stable/gio-Extension-Points.html
+// https://developer.gnome.org/gio/stable/gio-querymodules.html
+
#include <giomm.h>
#include <iostream>
#include <cstdlib>