summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authordmcmahill <dmcmahill>2003-02-25 02:11:34 +0000
committerdmcmahill <dmcmahill>2003-02-25 02:11:34 +0000
commit8ccb8b33dbec38a0f96b6619c5da36aff9e169d4 (patch)
tree69b267ae290d106b74e97368dbf94a0eb7e876ce /x11
parent43deae169706820bcc5679e22758e442e5fad559 (diff)
downloadpkgsrc-8ccb8b33dbec38a0f96b6619c5da36aff9e169d4.tar.gz
fix typo in configure script which incorrectly determines that a prototype
for strlcat is needed. Unfortunately that had the effect of providing a bad (for 64 bit systems) prototype.
Diffstat (limited to 'x11')
-rw-r--r--x11/kdebase3/distinfo4
-rw-r--r--x11/kdebase3/patches/patch-aa13
2 files changed, 13 insertions, 4 deletions
diff --git a/x11/kdebase3/distinfo b/x11/kdebase3/distinfo
index 1ed80934ef9..db0f8a48920 100644
--- a/x11/kdebase3/distinfo
+++ b/x11/kdebase3/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.20 2003/02/24 08:12:31 skrll Exp $
+$NetBSD: distinfo,v 1.21 2003/02/25 02:11:34 dmcmahill Exp $
SHA1 (kdebase-3.0.5a.tar.bz2) = 8d30538e4d84f805bffcd0eb6583f2fee5ce2da1
Size (kdebase-3.0.5a.tar.bz2) = 13117676 bytes
@@ -6,7 +6,7 @@ SHA1 (Daemon.png) = e77a42c644beecd66c4b95c0ae68c08c728a4e6d
Size (Daemon.png) = 15725 bytes
SHA1 (Daemon.README) = eb1e6af52adc02ded77af17e8953134b7e60d23b
Size (Daemon.README) = 2191 bytes
-SHA1 (patch-aa) = 1e693480c884daa75fe3e1a850b0e39dfb407d73
+SHA1 (patch-aa) = c1fda81e979a6c4df311e205ca29d69d6568655d
SHA1 (patch-ab) = 803bd6397d5cbc08f52cea51977cf62af0bfbd9e
SHA1 (patch-ac) = 5ea63b6fb0562439742b3bc14418cc1230ef4e7b
SHA1 (patch-ae) = 5ff81a4237c17c73e04d36519972b167638b4fdd
diff --git a/x11/kdebase3/patches/patch-aa b/x11/kdebase3/patches/patch-aa
index 53118ffaa02..3a46adf2c7f 100644
--- a/x11/kdebase3/patches/patch-aa
+++ b/x11/kdebase3/patches/patch-aa
@@ -1,7 +1,16 @@
-$NetBSD: patch-aa,v 1.3 2003/01/31 11:43:33 skrll Exp $
+$NetBSD: patch-aa,v 1.4 2003/02/25 02:11:35 dmcmahill Exp $
---- configure.orig Tue Dec 17 10:46:51 2002
+--- configure.orig Tue Dec 17 05:46:51 2002
+++ configure
+@@ -24829,7 +24829,7 @@ main ()
+
+ char buf[20];
+ buf[0]='\0';
+- strlat(buf, "KDE function test", sizeof(buf));
++ strlcat(buf, "KDE function test", sizeof(buf));
+
+ ;
+ return 0;
@@ -25442,57 +25442,6 @@ cat >>confdefs.h <<EOF
#define SIZEOF_UNSIGNED_INT $ac_cv_sizeof_unsigned_int
EOF