diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2003-05-11 08:59:54 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2003-05-11 08:59:54 +0000 |
commit | 8af42f368a94dd2a6194f91e3e587b9f31d2b5f3 (patch) | |
tree | 25bf21a15fd3dd454260d094108287206ebcd5fc /archivers | |
parent | ea3683d47afaddaa31ed44c96f1397084a872f3b (diff) |
Include <stdlib.h> for malloc() prototype
Submitted by: tjr
Notes
Notes:
svn path=/head/; revision=80661
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/lha/Makefile | 1 | ||||
-rw-r--r-- | archivers/lha/files/patch-af | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/archivers/lha/Makefile b/archivers/lha/Makefile index 2da0488ae26b..d627f5d12273 100644 --- a/archivers/lha/Makefile +++ b/archivers/lha/Makefile @@ -7,6 +7,7 @@ PORTNAME= lha PORTVERSION= 1.14i +PORTREVISION= 1 CATEGORIES= archivers MASTER_SITES= http://www2m.biglobe.ne.jp/~dolphin/lha/prog/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//} diff --git a/archivers/lha/files/patch-af b/archivers/lha/files/patch-af new file mode 100644 index 000000000000..e1f9026a5abe --- /dev/null +++ b/archivers/lha/files/patch-af @@ -0,0 +1,11 @@ +diff -ru src.orig/lha.h src/lha.h +--- src.orig/lha.h Thu Oct 5 10:35:38 2000 ++++ src/lha.h Sun May 11 00:31:53 2003 +@@ -11,6 +11,7 @@ + lharc.h interface.h slidehuf.h + */ + #include <stdio.h> ++#include <stdlib.h> + #include <errno.h> + #include <ctype.h> + #include <sys/types.h> |