Fix 64-bit issues. PKGREVISION++

This commit is contained in:
dholland 2009-05-18 05:44:13 +00:00
parent 697a370312
commit 25b8992ef2
4 changed files with 36 additions and 3 deletions

View file

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.22 2008/04/04 15:24:56 joerg Exp $
# $NetBSD: Makefile,v 1.23 2009/05/18 05:44:13 dholland Exp $
DISTNAME= rx-1.5
PKGREVISION= 1
PKGREVISION= 2
CATEGORIES= devel
MASTER_SITES= #
EXTRACT_SUFX= .tar.bz2

View file

@ -1,7 +1,9 @@
$NetBSD: distinfo,v 1.6 2008/04/04 15:24:56 joerg Exp $
$NetBSD: distinfo,v 1.7 2009/05/18 05:44:13 dholland Exp $
SHA1 (rx-1.5.tar.bz2) = 6f58203315a1ae5e34b629f7413e21801964a48c
RMD160 (rx-1.5.tar.bz2) = a68cb446492bd7abda70a7adb68849c600cb0be5
Size (rx-1.5.tar.bz2) = 415525 bytes
SHA1 (patch-aa) = 6dd85891f4593c98b34835b56b0c32e89c7175a7
SHA1 (patch-ab) = 5c38359f4826ae96cc3843b1e4fb90561c1d2c31
SHA1 (patch-ac) = cf6140497d7d45340a3ff424905d664eb73c2380
SHA1 (patch-ad) = 388417220ce21083c7293a163c7feb56c02082fb

17
devel/rx/patches/patch-ac Normal file
View file

@ -0,0 +1,17 @@
$NetBSD: patch-ac,v 1.1 2009/05/18 05:44:13 dholland Exp $
64-bit cleanliness.
--- rx/rxall.h.orig 2009-05-18 01:30:53.000000000 -0400
+++ rx/rxall.h 2009-05-18 01:30:59.000000000 -0400
@@ -21,8 +21,9 @@
*/
-#if 0
#include <stdlib.h>
+#include <string.h>
+#if 0
#include "malloc.h"
#endif

14
devel/rx/patches/patch-ad Normal file
View file

@ -0,0 +1,14 @@
$NetBSD: patch-ad,v 1.1 2009/05/18 05:44:13 dholland Exp $
64-bit cleanliness.
--- rx/rxgnucomp.c.orig 2009-05-18 01:41:42.000000000 -0400
+++ rx/rxgnucomp.c 2009-05-18 01:41:47.000000000 -0400
@@ -18,6 +18,7 @@
#include <sys/types.h>
+#include <stdio.h>
#include "rxall.h"
#include "rxgnucomp.h"
#include "inst-rxposix.h"