summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorrillig <rillig>2005-12-19 00:20:35 +0000
committerrillig <rillig>2005-12-19 00:20:35 +0000
commit04d8359ec3be8fdf0c2a8c4909e3a114215de96c (patch)
treea99868d776e68a910557c46de18faaddbdee9fdc /x11
parenta12204a43095e71abc0b6b5d1e0ee8949f9ff732 (diff)
downloadpkgsrc-04d8359ec3be8fdf0c2a8c4909e3a114215de96c.tar.gz
Added patch-ag for compatibility with ISO C90.
Diffstat (limited to 'x11')
-rw-r--r--x11/gnome2-control-center/distinfo3
-rw-r--r--x11/gnome2-control-center/patches/patch-ag23
2 files changed, 25 insertions, 1 deletions
diff --git a/x11/gnome2-control-center/distinfo b/x11/gnome2-control-center/distinfo
index 594b2ad171b..867385a432d 100644
--- a/x11/gnome2-control-center/distinfo
+++ b/x11/gnome2-control-center/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.23 2005/10/12 21:55:02 jmmv Exp $
+$NetBSD: distinfo,v 1.24 2005/12/19 00:20:35 rillig Exp $
SHA1 (control-center-2.12.1.tar.bz2) = fc648f7535eb01da64c1c47d9bef420b1c9b0927
RMD160 (control-center-2.12.1.tar.bz2) = 297369394c20b453aea1345d389a731328f8c611
@@ -6,3 +6,4 @@ Size (control-center-2.12.1.tar.bz2) = 1771524 bytes
SHA1 (patch-aa) = 826bd6ef91135a61a86450ff150662156c833ae8
SHA1 (patch-ad) = 15aeffd62733036840d402f1ed3a2f1a89c8945d
SHA1 (patch-af) = 50f179c3d2775f0a058d7644f6f9a0b958f4b531
+SHA1 (patch-ag) = 752abc7987b398d35ab3b07191b131c4b9bf1b07
diff --git a/x11/gnome2-control-center/patches/patch-ag b/x11/gnome2-control-center/patches/patch-ag
new file mode 100644
index 00000000000..8320dc9177a
--- /dev/null
+++ b/x11/gnome2-control-center/patches/patch-ag
@@ -0,0 +1,23 @@
+$NetBSD: patch-ag,v 1.1 2005/12/19 00:20:35 rillig Exp $
+
+Keywords: c90
+
+--- capplets/mouse/gnome-mouse-properties.c.orig Fri Sep 16 14:43:01 2005
++++ capplets/mouse/gnome-mouse-properties.c Mon Dec 19 01:09:51 2005
+@@ -665,6 +665,7 @@ populate_tree_model(GtkTreeModelSort* mo
+
+ gchar **iterator = NULL;
+ gchar **paths = NULL;
++ const gchar *xpaths;
+
+ GConfClient* client = gconf_client_get_default();
+ GtkListStore* store = GTK_LIST_STORE(gtk_tree_model_sort_get_model(model));
+@@ -673,7 +674,7 @@ populate_tree_model(GtkTreeModelSort* mo
+ g_object_unref(client);
+ client = NULL;
+
+- const gchar *xpaths = g_getenv ("XCURSOR_PATH");
++ xpaths = g_getenv ("XCURSOR_PATH");
+
+ if (xpaths != NULL) {
+ paths = g_strsplit (xpaths, ":", 0);