View | Details | Raw Unified | Return to bug 122411
Collapse All | Expand All

(-)ppunpack/Makefile (-1 / +1 lines)
Lines 16-22 Link Here
16
MAINTAINER=	ports@FreeBSD.org
16
MAINTAINER=	ports@FreeBSD.org
17
COMMENT=	Decompresses Amiga PowerPacker files
17
COMMENT=	Decompresses Amiga PowerPacker files
18
18
19
RESTRICTED=	"No commercial redistribution"
19
RESTRICTED=	No commercial redistribution
20
NO_CDROM=	${RESTRICTED}
20
NO_CDROM=	${RESTRICTED}
21
21
22
WRKSRC=		${WRKDIR}/PPUnpack
22
WRKSRC=		${WRKDIR}/PPUnpack
(-)ppunpack/files/patch-aa (-14 lines)
Lines 1-14 Link Here
1
--- depack.h.orig	Sat May 22 21:55:32 1999
2
+++ depack.h	Sat May 22 21:56:18 1999
3
@@ -4,8 +4,10 @@
4
  * see accompanying file README for distribution information
5
  */
6
 
7
+#include <sys/types.h>
8
+
9
 typedef unsigned char ubyte;
10
-typedef unsigned long ulong;
11
+#define ulong uint
12
 
13
 extern ulong depackedlen(ubyte *packed, ulong plen);
14
 extern void ppdepack(ubyte *packed, ubyte *depacked, ulong plen, ulong unplen);
(-)ppunpack/files/patch-depack.h (+14 lines)
Line 0 Link Here
1
--- depack.h.orig	Sat May 22 21:55:32 1999
2
+++ depack.h	Sat May 22 21:56:18 1999
3
@@ -4,8 +4,10 @@
4
  * see accompanying file README for distribution information
5
  */
6
 
7
+#include <sys/types.h>
8
+
9
 typedef unsigned char ubyte;
10
-typedef unsigned long ulong;
11
+#define ulong uint
12
 
13
 extern ulong depackedlen(ubyte *packed, ulong plen);
14
 extern void ppdepack(ubyte *packed, ubyte *depacked, ulong plen, ulong unplen);

Return to bug 122411