summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-12-16 11:41:16 +0100
committerinfirit <[email protected]>2014-12-16 11:41:23 +0100
commit18e079201d970b6402b56ef0c0b2a01496ff582e (patch)
tree16345619b02998e01e0bc96aff55bb8bded20efa
parentaa3fddae5911b6827587b388f20aa88849721624 (diff)
downloadmate-power-manager-18e079201d970b6402b56ef0c0b2a01496ff582e.tar.bz2
mate-power-manager-18e079201d970b6402b56ef0c0b2a01496ff582e.tar.xz
We agreed to target Glib 2.32
-rw-r--r--README2
-rw-r--r--configure.ac2
-rw-r--r--src/gpm-backlight-helper.c5
3 files changed, 7 insertions, 2 deletions
diff --git a/README b/README
index e61a4a8..5087b37 100644
--- a/README
+++ b/README
@@ -13,7 +13,7 @@ MATE Power Manager comes in three main parts:
To build, MATE Power Manager requires
- - Glib (2.36.0 or later)
+ - Glib (2.32.0 or later)
- Gtk2+ (2.24.0 or later)
- GNOME Keyring (3.0.0 or later)
- DBus (0.70 or later)
diff --git a/configure.ac b/configure.ac
index ae905b1..97ad20f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -112,7 +112,7 @@ GLIB_GSETTINGS
dnl ----------------------------------------------------------------------------
dnl - Library dependencies
dnl ----------------------------------------------------------------------------
-GLIB_REQUIRED=2.36.0
+GLIB_REQUIRED=2.32.0
GIO_REQUIRED=2.36.0
GDK_REQUIRED=2.11.0
GNOME_KEYRING_REQUIRED=3.0.0
diff --git a/src/gpm-backlight-helper.c b/src/gpm-backlight-helper.c
index 4350f16..07ad25f 100644
--- a/src/gpm-backlight-helper.c
+++ b/src/gpm-backlight-helper.c
@@ -178,6 +178,11 @@ main (gint argc, gchar *argv[])
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
textdomain (GETTEXT_PACKAGE);
+#if !GLIB_CHECK_VERSION(2,36,0)
+ /* setup type system */
+ g_type_init ();
+#endif
+
context = g_option_context_new (NULL);
/* TRANSLATORS: tool that is used when copying profiles system-wide */
g_option_context_set_summary (context, _("MATE Power Manager Backlight Helper"));