diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2001-05-12 21:54:13 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2001-05-12 21:54:13 +0000 |
commit | 39b6b9772b6a1688e7982d170554cdb5fb13103c (patch) | |
tree | 744351539e5d9f7c10e76df9d90f4e42dfdc6d3e /x11 | |
parent | 0fb6bd22cfaf53690a207afc44d8a52bfcf1f169 (diff) | |
download | pkgsrc-39b6b9772b6a1688e7982d170554cdb5fb13103c.tar.gz |
fix type for LP64 systems. (unsigned -> size_t)
Diffstat (limited to 'x11')
-rw-r--r-- | x11/x3270/distinfo | 3 | ||||
-rw-r--r-- | x11/x3270/patches/patch-aa | 20 |
2 files changed, 22 insertions, 1 deletions
diff --git a/x11/x3270/distinfo b/x11/x3270/distinfo index 89c579bde23..26ab41137e9 100644 --- a/x11/x3270/distinfo +++ b/x11/x3270/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.2 2001/04/19 11:07:48 skrll Exp $ +$NetBSD: distinfo,v 1.3 2001/05/12 21:54:13 dmcmahill Exp $ SHA1 (x3270-3213.tgz) = ce92607384f72761bd85bc7f5cd37d59f52a4452 Size (x3270-3213.tgz) = 500073 bytes +SHA1 (patch-aa) = fa17fb709185bb319462c32048addbecdd39b8dd diff --git a/x11/x3270/patches/patch-aa b/x11/x3270/patches/patch-aa new file mode 100644 index 00000000000..4b52bf7166b --- /dev/null +++ b/x11/x3270/patches/patch-aa @@ -0,0 +1,20 @@ +$NetBSD: patch-aa,v 1.5 2001/05/12 21:54:13 dmcmahill Exp $ + +fix types (needed on LP64) + +--- pr3287/pr3287.c.orig Thu Sep 14 10:41:12 2000 ++++ pr3287/pr3287.c Sat May 12 17:49:49 2001 +@@ -97,5 +97,5 @@ + /* Memory allocation. */ + void * +-Malloc(unsigned len) ++Malloc(size_t len) + { + void *p = malloc(len); +@@ -115,5 +115,5 @@ + + void * +-Realloc(void *p, unsigned len) ++Realloc(void *p, size_t len) + { + void *pn; |