summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrillig <rillig>2006-01-09 01:28:05 +0000
committerrillig <rillig>2006-01-09 01:28:05 +0000
commitafa54543d00b2894034bc04ced0d7947fb043da1 (patch)
treed8186bac67bd7db709e8fdf6089b2b95b1af15aa
parent9f8963c679b07b3001109ebdc87348be2dc14d62 (diff)
downloadpkgsrc-afa54543d00b2894034bc04ced0d7947fb043da1.tar.gz
Added a patch that fixes the mixing of code and declarations.
-rw-r--r--devel/GConf2/distinfo3
-rw-r--r--devel/GConf2/patches/patch-ae17
2 files changed, 19 insertions, 1 deletions
diff --git a/devel/GConf2/distinfo b/devel/GConf2/distinfo
index d52502a74bd..bc90d0dc0b7 100644
--- a/devel/GConf2/distinfo
+++ b/devel/GConf2/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.23 2005/12/31 00:05:11 wiz Exp $
+$NetBSD: distinfo,v 1.24 2006/01/09 01:28:05 rillig Exp $
SHA1 (GConf-2.12.1.tar.bz2) = bfcb6283b32361df05b245ae2ff65a9ec79d4c6c
RMD160 (GConf-2.12.1.tar.bz2) = f5c664c619ca069801dc8b1147454a1544c14b74
@@ -6,3 +6,4 @@ Size (GConf-2.12.1.tar.bz2) = 1945241 bytes
SHA1 (patch-ab) = 67044ae449164931949f8a67d9f14db15d59365d
SHA1 (patch-ac) = 03045811c13261088f291e2fbad24e2965c592dc
SHA1 (patch-ad) = e5b5be99da47b21e3e7dcd7c3925dffa6cfe5bfa
+SHA1 (patch-ae) = 28464446b68887b090aa73a417540690ac8c89ff
diff --git a/devel/GConf2/patches/patch-ae b/devel/GConf2/patches/patch-ae
new file mode 100644
index 00000000000..669372bcd60
--- /dev/null
+++ b/devel/GConf2/patches/patch-ae
@@ -0,0 +1,17 @@
+$NetBSD: patch-ae,v 1.7 2006/01/09 01:28:05 rillig Exp $
+
+Keywords: c90
+
+--- gconf/gconf-listeners.c.orig 2005-11-03 15:53:04.000000000 +0100
++++ gconf/gconf-listeners.c 2006-01-09 02:21:13.000000000 +0100
+@@ -366,9 +366,9 @@ ltable_insert(LTable* lt, const gchar* w
+
+ while (across != NULL)
+ {
+- lte = across->data;
+ int cmp;
+
++ lte = across->data;
+ cmp = strcmp(lte->name, dirnames[i]);
+
+ if (cmp == 0)