pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mail/ezmlm-idx Repair forward declarations of read() a...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/cb1bb30cd0de
branches:  trunk
changeset: 493225:cb1bb30cd0de
user:      schmonz <schmonz%pkgsrc.org@localhost>
date:      Sat Apr 30 04:56:10 2005 +0000

description:
Repair forward declarations of read() and write() on 64-bit platforms,
where ssize_t != int. Compile fix for 64-bit platforms, no change
otherwise, thus no PKGREVISION bump. Addresses pkg/30004.

diffstat:

 mail/ezmlm-idx/distinfo         |   3 ++-
 mail/ezmlm-idx/patches/patch-ac |  15 +++++++++++++++
 2 files changed, 17 insertions(+), 1 deletions(-)

diffs (33 lines):

diff -r 5fd046c58f44 -r cb1bb30cd0de mail/ezmlm-idx/distinfo
--- a/mail/ezmlm-idx/distinfo   Sat Apr 30 04:35:54 2005 +0000
+++ b/mail/ezmlm-idx/distinfo   Sat Apr 30 04:56:10 2005 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.12 2005/04/15 20:41:20 schmonz Exp $
+$NetBSD: distinfo,v 1.13 2005/04/30 04:56:10 schmonz Exp $
 
 SHA1 (ezmlm-idx-0.440.tar.gz) = 1995071e8b54a97ba1e2ae823949eaa3f37ebfeb
 RMD160 (ezmlm-idx-0.440.tar.gz) = 944f203450feec5b011a0b5d00ccabf70783a360
@@ -8,3 +8,4 @@
 Size (ezmlm-0.53.tar.gz) = 62693 bytes
 SHA1 (patch-aa) = ab64608eb858732f6e27c6aa876574f1293d294e
 SHA1 (patch-ab) = 7b4626114a2676e9a3526066fc97628b06300bc7
+SHA1 (patch-ac) = d8fa7fa6ed9122904e43fe2861f37aab7bb95041
diff -r 5fd046c58f44 -r cb1bb30cd0de mail/ezmlm-idx/patches/patch-ac
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/mail/ezmlm-idx/patches/patch-ac   Sat Apr 30 04:56:10 2005 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-ac,v 1.5 2005/04/30 04:56:10 schmonz Exp $
+
+--- readwrite.h.orig   1997-06-29 23:11:54.000000000 -0400
++++ readwrite.h
+@@ -1,7 +1,8 @@
+ #ifndef READWRITE_H
+ #define READWRITE_H
+ 
+-extern int read();
+-extern int write();
++#include <sys/types.h>
++extern ssize_t read();
++extern ssize_t write();
+ 
+ #endif



Home | Main Index | Thread Index | Old Index