[aisleriot] sol: Suppress deprecated object property warnings
- From: Christian Persch <chpe src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [aisleriot] sol: Suppress deprecated object property warnings
- Date: Mon, 8 Jun 2015 20:37:03 +0000 (UTC)
commit 40681d828dc7913d778d822748fa96f3726d5c96
Author: Christian Persch <chpe gnome org>
Date: Fri Jun 5 22:08:09 2015 +0200
sol: Suppress deprecated object property warnings
Simply set G_ENABLE_DIAGNOSTIC=0 which should be the default anyway except
that it is broken [https://bugzilla.gnome.org/show_bug.cgi?id=749195].
src/sol.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
---
diff --git a/src/sol.c b/src/sol.c
index c9ca267..7f75234 100644
--- a/src/sol.c
+++ b/src/sol.c
@@ -158,6 +158,10 @@ main (int argc, char *argv[])
g_setenv ("UBUNTU_MENUPROXY", "0", TRUE);
g_setenv ("NO_UNITY_GTK_MODULE", "1", TRUE);
+ /* Not interested in silly debug spew polluting the journal, bug #749195 */
+ if (g_getenv ("G_ENABLE_DIAGNOSTIC") == NULL)
+ g_setenv ("G_ENABLE_DIAGNOSTIC", "0", TRUE);
+
scm_boot_guile (argc, argv, main_prog, NULL); /* no return */
return 0;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]