Accepting request 76639 from home:vuntz:branches:GNOME:Factory
Add patch to fix crash in all apps OBS-URL: https://build.opensuse.org/request/show/76639 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gtk3?expand=0&rev=50
This commit is contained in:
parent
aaf243e972
commit
3892924e21
27
gtk3-fix-crash-recent-glib.patch
Normal file
27
gtk3-fix-crash-recent-glib.patch
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
commit 7741f5a09a841c4dc93727b990defc303510ed2c
|
||||||
|
Author: Florian Müllner <fmuellner@gnome.org>
|
||||||
|
Date: Fri Jul 15 20:45:59 2011 +0200
|
||||||
|
|
||||||
|
theming-engine: Adjust register_property() to recent glib change
|
||||||
|
|
||||||
|
GParamSpec now uses an intern'ed string for 'name', so the code
|
||||||
|
in gtk_theming_engine_register_property() which prefixes the name
|
||||||
|
with a namespace has to be adjusted.
|
||||||
|
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=654695
|
||||||
|
|
||||||
|
diff --git a/gtk/gtkthemingengine.c b/gtk/gtkthemingengine.c
|
||||||
|
index 66adad6..64a2bc5 100644
|
||||||
|
--- a/gtk/gtkthemingengine.c
|
||||||
|
+++ b/gtk/gtkthemingengine.c
|
||||||
|
@@ -391,8 +391,8 @@ gtk_theming_engine_register_property (const gchar *name_space,
|
||||||
|
|
||||||
|
/* FIXME: hack hack hack, replacing pspec->name to include namespace */
|
||||||
|
name = g_strdup_printf ("-%s-%s", name_space, pspec->name);
|
||||||
|
- g_free (pspec->name);
|
||||||
|
- pspec->name = name;
|
||||||
|
+ pspec->name = (char *)g_intern_string (name);
|
||||||
|
+ g_free (name);
|
||||||
|
|
||||||
|
gtk_style_properties_register_property (parse_func, pspec);
|
||||||
|
}
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jul 21 13:10:03 CEST 2011 - vuntz@opensuse.org
|
||||||
|
|
||||||
|
- Add gtk3-fix-crash-recent-glib.patch: this fixes a crash in all
|
||||||
|
apps with glib 2.29.12. Taken from git.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jul 6 16:05:11 CEST 2011 - vuntz@opensuse.org
|
Wed Jul 6 16:05:11 CEST 2011 - vuntz@opensuse.org
|
||||||
|
|
||||||
|
@ -43,6 +43,8 @@ Patch1: gtk3-path-local.patch
|
|||||||
Patch2: gtk3-bnc129753-localize-font-style-name.patch
|
Patch2: gtk3-bnc129753-localize-font-style-name.patch
|
||||||
# PATCH-FIX-UPSTREAM gtk3-bnc130159-bgo319483-async-font-selection.patch bnc130159 bgo319483 federico@novell.com - Load fonts asynchronously in GtkFontSelection to make it appear faster for CJK languages
|
# PATCH-FIX-UPSTREAM gtk3-bnc130159-bgo319483-async-font-selection.patch bnc130159 bgo319483 federico@novell.com - Load fonts asynchronously in GtkFontSelection to make it appear faster for CJK languages
|
||||||
Patch3: gtk3-bnc130159-bgo319483-async-font-selection.patch
|
Patch3: gtk3-bnc130159-bgo319483-async-font-selection.patch
|
||||||
|
# PATCH-FIX-UPSTREAM gtk3-fix-crash-recent-glib.patch vuntz@opensuse.org -- Fix crash with glib 2.29.12, taken from git
|
||||||
|
Patch4: gtk3-fix-crash-recent-glib.patch
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: cups-devel
|
BuildRequires: cups-devel
|
||||||
BuildRequires: gnome-patch-translation
|
BuildRequires: gnome-patch-translation
|
||||||
@ -289,6 +291,7 @@ cp -a %{S:1} .
|
|||||||
%patch1 -p0
|
%patch1 -p0
|
||||||
%patch2 -p1
|
%patch2 -p1
|
||||||
%patch3 -p1
|
%patch3 -p1
|
||||||
|
%patch4 -p1
|
||||||
gnome-patch-translation-update
|
gnome-patch-translation-update
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
Loading…
Reference in New Issue
Block a user