aboutsummaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2020-08-20 04:44:42 +0000
committerXin LI <delphij@FreeBSD.org>2020-08-20 04:44:42 +0000
commitf11f67649197fd8697774fdaa81e0bc533053b30 (patch)
treea7fb78b6da66e7e001fdd34f39b1bd433fff64b9 /archivers
parentedf11c1a3612c0e8c5daf54018bf22ce58fd965c (diff)
downloadports-f11f67649197fd8697774fdaa81e0bc533053b30.tar.gz
ports-f11f67649197fd8697774fdaa81e0bc533053b30.zip
MFH: r545496
Fix build. Approved by: ports-secteam (build fix blanket)
Notes
Notes: svn path=/branches/2020Q3/; revision=545497
Diffstat (limited to 'archivers')
-rw-r--r--archivers/arc/files/patch-arclzw.c17
-rw-r--r--archivers/arc/files/patch-arcunp.c15
2 files changed, 29 insertions, 3 deletions
diff --git a/archivers/arc/files/patch-arclzw.c b/archivers/arc/files/patch-arclzw.c
index c0f1c8996403..4ee553832413 100644
--- a/archivers/arc/files/patch-arclzw.c
+++ b/archivers/arc/files/patch-arclzw.c
@@ -1,6 +1,21 @@
--- arclzw.c.orig 2010-08-07 13:06:42 UTC
+++ arclzw.c
-@@ -560,7 +560,7 @@ decomp(squash, f, t) /* decompress a fi
+@@ -57,9 +57,11 @@ static VOID putcode();
+ #define NOT_FND 0xFFFF
+
+ extern u_char *pinbuf;
+-u_char *inbeg, *inend;
+-u_char *outbuf;
+-u_char *outbeg, *outend;
++u_char *inbeg;
++u_char *inend;
++extern u_char *outbuf;
++u_char *outbeg;
++extern u_char *outend;
+
+ static int sp; /* current stack pointer */
+ static int inflag;
+@@ -560,7 +562,7 @@ decomp(squash, f, t) /* decompress a file */
*/
if (code >= free_ent) {
if (code > free_ent) {
diff --git a/archivers/arc/files/patch-arcunp.c b/archivers/arc/files/patch-arcunp.c
index ed3f7191d744..b157130802f0 100644
--- a/archivers/arc/files/patch-arcunp.c
+++ b/archivers/arc/files/patch-arcunp.c
@@ -1,6 +1,17 @@
--- arcunp.c.orig 2010-08-07 13:06:42 UTC
+++ arcunp.c
-@@ -122,7 +122,7 @@ unpack(f, t, hdr) /* unpack an archive
+@@ -39,8 +39,8 @@ extern int lastc;
+ #define NOHIST 0 /* no relevant history */
+ #define INREP 1 /* sending a repeated value */
+
+-short crcval; /* CRC check value */
+-long stdlen; /* bytes to read */
++extern short crcval; /* CRC check value */
++extern long stdlen; /* bytes to read */
+ #if !DOS
+ static int gotcr; /* got a carriage return? */
+ #endif
+@@ -122,7 +122,7 @@ unpack(f, t, hdr) /* unpack an archive entry */
break;
default: /* unknown method */
@@ -9,7 +20,7 @@
printf("I don't know how to unpack file %s\n", hdr->name);
printf("I think you need a newer version of ARC\n");
nerrs++;
-@@ -134,7 +134,7 @@ unpack(f, t, hdr) /* unpack an archive
+@@ -134,7 +134,7 @@ unpack(f, t, hdr) /* unpack an archive entry */
/* cleanups common to all methods */
if (crcval != hdr->crc) {