diff options
author | alexbl <alexbl@FreeBSD.org> | 2006-10-01 00:33:46 +0800 |
---|---|---|
committer | alexbl <alexbl@FreeBSD.org> | 2006-10-01 00:33:46 +0800 |
commit | c687cf16d414f28b6f357bad2a33e4e1eed95d96 (patch) | |
tree | 921892b56a19b5a51f68a7b28af4d94b0fdae12c /archivers | |
parent | 98b5df23390e131181c1db91c9d6ea3def5ae70f (diff) | |
download | freebsd-ports-gnome-c687cf16d414f28b6f357bad2a33e4e1eed95d96.tar.gz freebsd-ports-gnome-c687cf16d414f28b6f357bad2a33e4e1eed95d96.tar.zst freebsd-ports-gnome-c687cf16d414f28b6f357bad2a33e4e1eed95d96.zip |
- fix build on gcc 4.1
PR: 103750
Submitted by: trasz <trasz@pin.if.uz.zgora.pl>
Approved by: novel (mentor, implicit)
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/macutils/files/patch-lzh.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/archivers/macutils/files/patch-lzh.c b/archivers/macutils/files/patch-lzh.c new file mode 100644 index 000000000000..7580345bc94b --- /dev/null +++ b/archivers/macutils/files/patch-lzh.c @@ -0,0 +1,22 @@ +--- macunpack/lzh.c.orig Thu Sep 28 13:10:04 2006 ++++ macunpack/lzh.c Thu Sep 28 13:11:27 2006 +@@ -40,13 +40,13 @@ + {"-lzs-", lzs} + }; + static char *lzh_archive; +-static char *lzh_pointer; +-static char *lzh_data; +-static char *lzh_finfo; +-static int lzh_fsize; +-static int lzh_kind; ++char *lzh_pointer; ++char *lzh_data; ++char *lzh_finfo; ++int lzh_fsize; ++int lzh_kind; + static int oldsize; +-static char *lzh_file; ++char *lzh_file; + static int lzh_filesize; + static char *lzh_current; + static char *tmp_out_ptr; |