diff options
author | spz <spz> | 2013-12-11 09:45:14 +0000 |
---|---|---|
committer | spz <spz> | 2013-12-11 09:45:14 +0000 |
commit | 5b23ec1d9551db0c4fd200bee03abe46b51484f0 (patch) | |
tree | 578ac0be3d141e5896add230a113850c12b0817f /news | |
parent | c9e3305109f96840dd02704db4f230d928715493 (diff) | |
download | pkgsrc-5b23ec1d9551db0c4fd200bee03abe46b51484f0.tar.gz |
another time_t on 32bit system issue, a less fatal one.
Diffstat (limited to 'news')
-rw-r--r-- | news/inn/Makefile | 4 | ||||
-rw-r--r-- | news/inn/distinfo | 3 | ||||
-rw-r--r-- | news/inn/patches/patch-backends_ninpaths.c | 13 |
3 files changed, 17 insertions, 3 deletions
diff --git a/news/inn/Makefile b/news/inn/Makefile index 8d20bb2b167..408f93f3d0c 100644 --- a/news/inn/Makefile +++ b/news/inn/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.114 2013/11/27 10:02:55 spz Exp $ +# $NetBSD: Makefile,v 1.115 2013/12/11 09:45:14 spz Exp $ DISTNAME= inn-2.5.3 -PKGREVISION= 4 +PKGREVISION= 5 CATEGORIES= news MASTER_SITES= ftp://ftp.isc.org/isc/inn/ \ ftp://ftp.fu-berlin.de/unix/news/inn/ diff --git a/news/inn/distinfo b/news/inn/distinfo index 3b0aee153c0..f163d88850f 100644 --- a/news/inn/distinfo +++ b/news/inn/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.31 2013/11/27 10:02:55 spz Exp $ +$NetBSD: distinfo,v 1.32 2013/12/11 09:45:14 spz Exp $ SHA1 (inn-2.5.3.tar.gz) = 98f22ef02e48c28f5eb931ce506ebe99557dc46e RMD160 (inn-2.5.3.tar.gz) = 7c4593d8880426a8961befbfa600450b23482d35 @@ -12,4 +12,5 @@ SHA1 (patch-ah) = ed5ef5f504eb9a95ad3da933ba5d00ee73885b00 SHA1 (patch-ai) = cf0af9de01dc7e06c5f9f7f1dd91ac2201e8c212 SHA1 (patch-ak) = c15b9067eeff701a7f2cc443fe6d1cb89136d974 SHA1 (patch-al) = a3d9fad5c045dc7a240e0f0c0a88a5321e6135d5 +SHA1 (patch-backends_ninpaths.c) = 8b8cec4e19c23bc62290192d6481e75915fe5b76 SHA1 (patch-innd_cc.c) = ee94cd8c27365d5b6724e81261df00d2337e6172 diff --git a/news/inn/patches/patch-backends_ninpaths.c b/news/inn/patches/patch-backends_ninpaths.c new file mode 100644 index 00000000000..5b270b81268 --- /dev/null +++ b/news/inn/patches/patch-backends_ninpaths.c @@ -0,0 +1,13 @@ +$NetBSD: patch-backends_ninpaths.c,v 1.1 2013/12/11 09:45:14 spz Exp $ + +--- backends/ninpaths.c.orig 2012-06-15 18:25:36.000000000 +0000 ++++ backends/ninpaths.c 2013-12-10 22:08:04.000000000 +0000 +@@ -147,7 +147,7 @@ writedump(FILE *f) + } + fprintf(f, "!!NINP " VERSION " %lu %lu %ld %ld %ld\n", + (unsigned long) starttime, (unsigned long) time(NULL), sites, +- total, (long)(atimes/total)+starttime); ++ total, (long)((atimes/total)+starttime)); + n=j=0; + /* write the S-records (hosts), numbering them in the process */ + for (i=0; i<HASH_TBL; ++i) |