diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2003-02-26 10:46:12 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2003-02-26 10:46:12 +0000 |
commit | 98ffff85a2a7df7850df2928436b97c1b5107a9b (patch) | |
tree | 1df885b4dc1883496c5503944582d43b22179c18 /net/kdenetwork3 | |
parent | 40b277d65830146cd41779cf8b0594f80b2173c8 (diff) | |
download | pkgsrc-98ffff85a2a7df7850df2928436b97c1b5107a9b.tar.gz |
fix typo in check for strlcat which caused a build failure on alpha.
Diffstat (limited to 'net/kdenetwork3')
-rw-r--r-- | net/kdenetwork3/distinfo | 4 | ||||
-rw-r--r-- | net/kdenetwork3/patches/patch-aa | 21 |
2 files changed, 17 insertions, 8 deletions
diff --git a/net/kdenetwork3/distinfo b/net/kdenetwork3/distinfo index 2c669c12d01..09e9dcf62fc 100644 --- a/net/kdenetwork3/distinfo +++ b/net/kdenetwork3/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.9 2003/02/21 13:42:38 skrll Exp $ +$NetBSD: distinfo,v 1.10 2003/02/26 10:46:12 dmcmahill Exp $ SHA1 (kdenetwork-3.0.5a.tar.bz2) = 325800806aa027073b7f0523140ade65e86614f1 Size (kdenetwork-3.0.5a.tar.bz2) = 3863844 bytes -SHA1 (patch-aa) = ed3b6619291d96c20af971bdd62f716c877cfaf4 +SHA1 (patch-aa) = 287271ca343a5b47d7740ba4ea19eb84d60ca23d SHA1 (patch-ac) = a0e2fbcf1348d5e91434878bac4977b649c94855 SHA1 (patch-ad) = 916bcbe11ca71f7a0f5f03c91fa18a6af9197be2 SHA1 (patch-ae) = f223a5e3923d6d45866ea89119bacba5fd107eb9 diff --git a/net/kdenetwork3/patches/patch-aa b/net/kdenetwork3/patches/patch-aa index bb66fba84dc..e0c09c6d07c 100644 --- a/net/kdenetwork3/patches/patch-aa +++ b/net/kdenetwork3/patches/patch-aa @@ -1,11 +1,21 @@ -$NetBSD: patch-aa,v 1.3 2003/02/21 13:42:38 skrll Exp $ +$NetBSD: patch-aa,v 1.4 2003/02/26 10:46:13 dmcmahill Exp $ ---- configure.orig Tue Feb 4 11:45:51 2003 +--- configure.orig Tue Dec 17 05:49:48 2002 +++ configure -@@ -23148,57 +23148,6 @@ cat >>confdefs.h <<EOF +@@ -22535,7 +22535,7 @@ main () + + char buf[20]; + buf[0]='\0'; +- strlat(buf, "KDE function test", sizeof(buf)); ++ strlcat(buf, "KDE function test", sizeof(buf)); + + ; + return 0; +@@ -23147,57 +23147,6 @@ echo "${ECHO_T}$ac_cv_sizeof_unsigned_in + cat >>confdefs.h <<EOF #define SIZEOF_UNSIGNED_INT $ac_cv_sizeof_unsigned_int EOF - +- - echo "$as_me:23151: checking sizeof(size_t) == sizeof(unsigned int)" >&5 -echo $ECHO_N "checking sizeof(size_t) == sizeof(unsigned int)... $ECHO_C" >&6 - cat >conftest.$ac_ext <<_ACEOF @@ -56,7 +66,6 @@ $NetBSD: patch-aa,v 1.3 2003/02/21 13:42:38 skrll Exp $ - -fi -rm -f conftest.$ac_objext conftest.$ac_ext -- + if test -z "$LIBPTHREAD" && test -z "$USE_THREADS"; then DO_NOT_COMPILE="$DO_NOT_COMPILE knode kdict" - fi |