diff options
author | agc <agc@pkgsrc.org> | 2003-03-02 10:38:09 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2003-03-02 10:38:09 +0000 |
commit | 4cd43bc8c97eee7c629a6f7ea651e0ae1cf9a3e0 (patch) | |
tree | 10605a7c2df19914c61e522cd4fbcede30d4a34e /net | |
parent | ece45d891781b4379afaf674dc52fdb9e25a0adc (diff) | |
download | pkgsrc-4cd43bc8c97eee7c629a6f7ea651e0ae1cf9a3e0.tar.gz |
Pull up fixes from the trunk to the netbsd-1-6-1 branch.
Requested by Dan McMahill.
> Date: Wed, 26 Feb 2003 12:46:14 +0200 (EET)
> From: Dan McMahill <dmcmahill@netbsd.org>
>
>
> Module Name: pkgsrc
> Committed By: dmcmahill
> Date: Wed Feb 26 10:46:13 UTC 2003
>
> Modified Files:
> pkgsrc/net/kdenetwork3: distinfo
> pkgsrc/net/kdenetwork3/patches: patch-aa
>
> Log Message:
> fix typo in check for strlcat which caused a build failure on alpha.
Diffstat (limited to 'net')
-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 cbdffc5e6c4..1776752398a 100644 --- a/net/kdenetwork3/distinfo +++ b/net/kdenetwork3/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.8.2.1 2003/03/02 10:13:07 agc Exp $ +$NetBSD: distinfo,v 1.8.2.2 2003/03/02 10:38:09 agc 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 61485c6c9d2..cb78a4fbcdc 100644 --- a/net/kdenetwork3/patches/patch-aa +++ b/net/kdenetwork3/patches/patch-aa @@ -1,11 +1,21 @@ -$NetBSD: patch-aa,v 1.4.2.2 2003/03/02 10:13:07 agc Exp $ +$NetBSD: patch-aa,v 1.4.2.3 2003/03/02 10:38:09 agc 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.4.2.2 2003/03/02 10:13:07 agc 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 |