summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorrillig <rillig>2005-10-24 22:10:29 +0000
committerrillig <rillig>2005-10-24 22:10:29 +0000
commit6523c68b2ddc438cd714ffca662186a1d5b20961 (patch)
tree5ee5e118c75f494b20a766641dc3c1587e7e0c08 /devel
parent1e7d92acf6ddf1a8d6a1238c07a34943e89552af (diff)
downloadpkgsrc-6523c68b2ddc438cd714ffca662186a1d5b20961.tar.gz
Added a patch for Solaris 9.
Diffstat (limited to 'devel')
-rw-r--r--devel/GConf2/distinfo3
-rw-r--r--devel/GConf2/patches/patch-ad18
2 files changed, 20 insertions, 1 deletions
diff --git a/devel/GConf2/distinfo b/devel/GConf2/distinfo
index 9ed8aa98c24..c2ad2125700 100644
--- a/devel/GConf2/distinfo
+++ b/devel/GConf2/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.21 2005/10/07 16:00:24 drochner Exp $
+$NetBSD: distinfo,v 1.22 2005/10/24 22:10:29 rillig Exp $
SHA1 (GConf-2.12.0.tar.bz2) = dbeb990447827d5d39fc7850777fc6d918d1f4a8
RMD160 (GConf-2.12.0.tar.bz2) = bb06e7a9f9c925718738689dfab5390acf1c1f01
Size (GConf-2.12.0.tar.bz2) = 1899718 bytes
SHA1 (patch-ab) = 67044ae449164931949f8a67d9f14db15d59365d
SHA1 (patch-ac) = 03045811c13261088f291e2fbad24e2965c592dc
+SHA1 (patch-ad) = e5b5be99da47b21e3e7dcd7c3925dffa6cfe5bfa
diff --git a/devel/GConf2/patches/patch-ad b/devel/GConf2/patches/patch-ad
new file mode 100644
index 00000000000..6ff69cdc2b1
--- /dev/null
+++ b/devel/GConf2/patches/patch-ad
@@ -0,0 +1,18 @@
+$NetBSD: patch-ad,v 1.5 2005/10/24 22:10:29 rillig Exp $
+
+Needed for Solaris 9. Without the <lber.h> header, struct berval, which
+is used as a member of another struct in <ldap.h>, has an unknown size.
+
+--- backends/evoldap-backend.c.orig Mon Oct 24 23:58:16 2005
++++ backends/evoldap-backend.c Mon Oct 24 23:59:16 2005
+@@ -24,6 +24,10 @@
+ #include <sys/types.h>
+ #include <unistd.h>
+ #include <time.h>
++#ifdef __sun
++#include <string.h>
++#include <lber.h>
++#endif
+ #include <ldap.h>
+ #include <libxml/parser.h>
+ #include <libxml/xpath.h>