aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Clausecker <fuz@fuz.su>2022-04-18 09:44:54 +0000
committerMikael Urankar <mikael@FreeBSD.org>2022-04-19 07:56:35 +0000
commit6a9ffb1def637dff98c61432f10b610c7aecfedb (patch)
tree92c5342d850c7f7043f3a5a1a087a53ba51419f6
parent8399f3d4bf33f4797824ae2ce607eb635e20b8e4 (diff)
downloadports-6a9ffb1def637dff98c61432f10b610c7aecfedb.tar.gz
ports-6a9ffb1def637dff98c61432f10b610c7aecfedb.zip
archivers/zpaq: fix build on armv6/armv7
The ARM EABI has an unsigned char type. Fix the build by using explicitly signed chars in the relevant place. PR: 263389
-rw-r--r--archivers/paq/files/patch-libzpaq.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/archivers/paq/files/patch-libzpaq.cpp b/archivers/paq/files/patch-libzpaq.cpp
new file mode 100644
index 000000000000..a3201867de33
--- /dev/null
+++ b/archivers/paq/files/patch-libzpaq.cpp
@@ -0,0 +1,20 @@
+--- libzpaq.cpp.orig 2022-04-18 09:32:11 UTC
++++ libzpaq.cpp
+@@ -2745,7 +2745,7 @@ void Compressor::writeTag() {
+ void Compressor::startBlock(int level) {
+
+ // Model 1 - min.cfg
+- static const char models[]={
++ static const signed char models[]={
+ 26,0,1,2,0,0,2,3,16,8,19,0,0,96,4,28,
+ 59,10,59,112,25,10,59,10,59,112,56,0,
+
+@@ -2774,7 +2774,7 @@ void Compressor::startBlock(int level) {
+ 0,0}; // 0,0 = end of list
+
+ if (level<1) error("compression level must be at least 1");
+- const char* p=models;
++ const char* p=(const char*)models;
+ int i;
+ for (i=1; i<level && toU16(p); ++i)
+ p+=toU16(p)+2;