diff options
author | will <will@FreeBSD.org> | 2000-06-03 12:52:13 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-06-03 12:52:13 +0800 |
commit | cbb95d6792f32e6d0c111a1a3421c00fd5b341c3 (patch) | |
tree | d5d626488c918acc95e69b9a128b9be9ae669e95 /archivers/ppunpack/files | |
parent | 1ec9e3d9817795ce6dadf82a60b481513b79ef3a (diff) | |
download | freebsd-ports-gnome-cbb95d6792f32e6d0c111a1a3421c00fd5b341c3.tar.gz freebsd-ports-gnome-cbb95d6792f32e6d0c111a1a3421c00fd5b341c3.tar.zst freebsd-ports-gnome-cbb95d6792f32e6d0c111a1a3421c00fd5b341c3.zip |
Add ppunpack, a utility to decompress Amiga PowerPacker files.
Obtained from: NetBSD
Diffstat (limited to 'archivers/ppunpack/files')
-rw-r--r-- | archivers/ppunpack/files/patch-aa | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/archivers/ppunpack/files/patch-aa b/archivers/ppunpack/files/patch-aa new file mode 100644 index 000000000000..358db5625743 --- /dev/null +++ b/archivers/ppunpack/files/patch-aa @@ -0,0 +1,14 @@ +--- depack.h.orig Sat May 22 21:55:32 1999 ++++ depack.h Sat May 22 21:56:18 1999 +@@ -4,8 +4,10 @@ + * see accompanying file README for distribution information + */ + ++#include <sys/types.h> ++ + typedef unsigned char ubyte; +-typedef unsigned long ulong; ++#define ulong uint + + extern ulong depackedlen(ubyte *packed, ulong plen); + extern void ppdepack(ubyte *packed, ubyte *depacked, ulong plen, ulong unplen); |