summaryrefslogtreecommitdiff
path: root/devel/eel/patches
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2006-02-16 19:29:41 +0000
committerjoerg <joerg@pkgsrc.org>2006-02-16 19:29:41 +0000
commit62600ce403c933d048402ff7529c78330f87c46b (patch)
tree064676ccc4e295e1726242840f8e03745698af94 /devel/eel/patches
parent469dc949f45dd0197b1f44730cbd054e36a2e1e1 (diff)
downloadpkgsrc-62600ce403c933d048402ff7529c78330f87c46b.tar.gz
Has BROKEN_GETTEXT_DETECTION. Fix label at end of compound for GCC 3.4+
Diffstat (limited to 'devel/eel/patches')
-rw-r--r--devel/eel/patches/patch-ab29
-rw-r--r--devel/eel/patches/patch-ac20
2 files changed, 49 insertions, 0 deletions
diff --git a/devel/eel/patches/patch-ab b/devel/eel/patches/patch-ab
new file mode 100644
index 00000000000..b0406078f48
--- /dev/null
+++ b/devel/eel/patches/patch-ab
@@ -0,0 +1,29 @@
+$NetBSD: patch-ab,v 1.1 2006/02/16 19:29:41 joerg Exp $
+
+--- eel/eel-wrap-table.c.orig 2006-02-16 18:42:08.000000000 +0000
++++ eel/eel-wrap-table.c
+@@ -518,6 +518,7 @@ wrap_table_layout (EelWrapTable *wrap_ta
+ item_allocation.x += (max_child_dimensions.width - (int) item_allocation.width);
+ break;
+ default:
++ break;
+ }
+
+ switch (wrap_table->details->y_justification) {
+@@ -528,6 +529,7 @@ wrap_table_layout (EelWrapTable *wrap_ta
+ item_allocation.y += (max_child_dimensions.height - (int) item_allocation.height);
+ break;
+ default:
++ break;
+ }
+ }
+
+@@ -831,7 +833,7 @@ eel_wrap_table_find_child_at_event_point
+ */
+ void
+ eel_wrap_table_set_x_justification (EelWrapTable *wrap_table,
+- EelJustification x_justification)
++ GtkJustification x_justification)
+ {
+ g_return_if_fail (EEL_IS_WRAP_TABLE (wrap_table));
+ g_return_if_fail (x_justification >= EEL_JUSTIFICATION_BEGINNING);
diff --git a/devel/eel/patches/patch-ac b/devel/eel/patches/patch-ac
new file mode 100644
index 00000000000..15b83798c14
--- /dev/null
+++ b/devel/eel/patches/patch-ac
@@ -0,0 +1,20 @@
+$NetBSD: patch-ac,v 1.1 2006/02/16 19:29:41 joerg Exp $
+
+--- test/test-eel-gtk-style.c.orig 2006-02-16 18:55:17.000000000 +0000
++++ test/test-eel-gtk-style.c
+@@ -64,6 +64,7 @@ style_get_color (const GtkStyle *style,
+ case 5: return style->text[state]; break;
+ case 6: return style->base[state]; break;
+ default:
++ break;
+ }
+ g_assert_not_reached ();
+ return empty;
+@@ -89,6 +90,7 @@ style_get_gc (const GtkStyle *style,
+ case 5: return style->text_gc[state]; break;
+ case 6: return style->base_gc[state]; break;
+ default:
++ break;
+ }
+ g_assert_not_reached ();
+ return NULL;