openbsd-ports/devel/glib2/patches/patch-gio_glib-compile-schemas_c
ajacoutot f2f94c039a Update to glib2-2.58.2.
This is the first step towards the GNOME 3.30 update which will happen
this month.
This and subsequent updates have been tested in an amd64 bulk.
2019-01-01 11:32:15 +00:00

36 lines
1.1 KiB
Plaintext

$OpenBSD: patch-gio_glib-compile-schemas_c,v 1.11 2019/01/01 11:32:15 ajacoutot Exp $
XXX do not warn about bad dconf paths
Index: gio/glib-compile-schemas.c
--- gio/glib-compile-schemas.c.orig
+++ gio/glib-compile-schemas.c
@@ -1233,6 +1233,7 @@ parse_state_start_schema (ParseState *state,
return;
}
+#if 0
if (path && (g_str_has_prefix (path, "/apps/") ||
g_str_has_prefix (path, "/desktop/") ||
g_str_has_prefix (path, "/system/")))
@@ -1245,6 +1246,7 @@ parse_state_start_schema (ParseState *state,
g_printerr ("%s\n", message);
g_free (message);
}
+#endif
state->schema_state = schema_state_new (path, gettext_domain,
extends, extends_name, list_of);
@@ -2165,6 +2167,11 @@ main (int argc, char **argv)
#ifdef HAVE_BIND_TEXTDOMAIN_CODESET
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
#endif
+
+ if (pledge("stdio rpath wpath cpath fattr", NULL) == -1) {
+ g_printerr ("pledge\n");
+ return 1;
+ }
context = g_option_context_new (N_("DIRECTORY"));
g_option_context_set_translation_domain (context, GETTEXT_PACKAGE);