summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2011-11-03 16:52:10 +0000
committerWill Thompson <will.thompson@collabora.co.uk>2011-11-04 18:39:45 +0000
commita4bb333ef99e7c64a6b4b63a080c57c5beb1aac7 (patch)
treebb7b410cd70f770dd5b88c101322899adb34a5d9 /data
parentdb2ac21ee35f785cb21d7b1e782eb34c9753c4f4 (diff)
Bind use-conn GSettings key to ConnectivityMonitor
This GSettings key does the same thing as the Empathy one it's an alias for does: if use-conn is False, the network state from NM/ConnMan is ignored, and MC will allow you to try to sign in even if there is supposedly no network connection! It's pretty great. (When I first committed this, it didn't work. Now it does. I don't know why.)
Diffstat (limited to 'data')
-rw-r--r--data/Makefile.am6
1 files changed, 6 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am
index 48c778d5..3d293bd8 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -3,7 +3,13 @@ gsettings_SCHEMAS = \
$(NULL)
@GSETTINGS_RULES@
+# We build our own schema cache here for the benefit of the test suite
+noinst_DATA = gschemas.compiled
+gschemas.compiled: $(gsettings_SCHEMAS)
+ $(AM_V_GEN)$(GLIB_COMPILE_SCHEMAS) --targetdir=$(builddir) $(srcdir)
+
EXTRA_DIST = \
$(gsettings_SCHEMAS) \
$(NULL)
+CLEANFILES = $(noinst_DATA)