diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2003-02-25 02:11:34 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2003-02-25 02:11:34 +0000 |
commit | 28b952c8aa411cbe501df27e58e2a14f20063a3e (patch) | |
tree | 69b267ae290d106b74e97368dbf94a0eb7e876ce | |
parent | 65a271d87ea9b60541379ad0c997747a9c2622bd (diff) | |
download | pkgsrc-28b952c8aa411cbe501df27e58e2a14f20063a3e.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.
-rw-r--r-- | x11/kdebase3/distinfo | 4 | ||||
-rw-r--r-- | x11/kdebase3/patches/patch-aa | 13 |
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 |