summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Boshell <leonardop@gentoo.org>2005-09-08 18:11:09 +0000
committerLeonardo Boshell <leonardop@gentoo.org>2005-09-08 18:11:09 +0000
commit25bd28ec3d8086d54335742db1d6211bea00c031 (patch)
tree2d606b74f15edd5591f4da651049a727c41d1f47 /x11-themes/gtk-engines-experience/files
parentMark 0.09 stable on alpha (diff)
downloadhistorical-25bd28ec3d8086d54335742db1d6211bea00c031.tar.gz
historical-25bd28ec3d8086d54335742db1d6211bea00c031.tar.bz2
historical-25bd28ec3d8086d54335742db1d6211bea00c031.zip
Marking 0.9.8 stable. Removing old ebuild/patch.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'x11-themes/gtk-engines-experience/files')
-rw-r--r--x11-themes/gtk-engines-experience/files/digest-gtk-engines-experience-0.9.71
-rw-r--r--x11-themes/gtk-engines-experience/files/gtk-engines-experience-0.9.7-mem_fixes.patch45
2 files changed, 0 insertions, 46 deletions
diff --git a/x11-themes/gtk-engines-experience/files/digest-gtk-engines-experience-0.9.7 b/x11-themes/gtk-engines-experience/files/digest-gtk-engines-experience-0.9.7
deleted file mode 100644
index 161825d34d4b..000000000000
--- a/x11-themes/gtk-engines-experience/files/digest-gtk-engines-experience-0.9.7
+++ /dev/null
@@ -1 +0,0 @@
-MD5 dcd54f4743bc0702e49b20b3fc821aa4 experience-0.9.7.tar.bz2 252106
diff --git a/x11-themes/gtk-engines-experience/files/gtk-engines-experience-0.9.7-mem_fixes.patch b/x11-themes/gtk-engines-experience/files/gtk-engines-experience-0.9.7-mem_fixes.patch
deleted file mode 100644
index b64456ea14f5..000000000000
--- a/x11-themes/gtk-engines-experience/files/gtk-engines-experience-0.9.7-mem_fixes.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-diff -NurdB experience-0.9.7/src/match.c experience-0.9.7-patched/src/match.c
---- experience-0.9.7/src/match.c 2005-07-30 16:19:44.000000000 -0500
-+++ experience-0.9.7-patched/src/match.c 2005-08-04 02:05:06.000000000 -0500
-@@ -59,8 +59,6 @@
- /* and the struct */
- g_free (pspec);
- }
-- /* this would happen, if a pspec is unrefed too often */
-- g_assert (pspec->refcount > 0);
- }
-
- static void
-@@ -81,6 +79,8 @@
- match->flags = MATCH_NONE;
-
- match->property_list = NULL;
-+ match->details = NULL;
-+ match->program_names = NULL;
-
- /* no other initialization needed here. */
- }
-@@ -93,14 +93,16 @@
-
- g_assert(match != NULL);
-
-- /* destroy the GPatternSpecs */
-- g_list_foreach (match->details, (GFunc) g_pattern_spec_free, NULL);
-- g_list_foreach (match->program_names, (GFunc) g_pattern_spec_free, NULL);
-+ /* destroy the GPatternSpecs and the lists */
-+ if (match->details != NULL) {
-+ g_list_foreach (match->details, (GFunc) experience_pattern_spec_unref, NULL);
-+ g_list_free (match->details);
-+ }
-+ if (match->program_names != NULL) {
-+ g_list_foreach (match->program_names, (GFunc) experience_pattern_spec_unref, NULL);
-+ g_list_free (match->program_names);
-+ }
-
-- /* and the lists */
-- g_list_free (match->details);
-- g_list_free (match->program_names);
--
- item = g_list_first (match->property_list);
-
- while (item != NULL) {