diff options
author | Robert Clausecker <fuz@fuz.su> | 2022-04-18 09:44:54 +0000 |
---|---|---|
committer | Mikael Urankar <mikael@FreeBSD.org> | 2022-04-19 07:56:35 +0000 |
commit | 6a9ffb1def637dff98c61432f10b610c7aecfedb (patch) | |
tree | 92c5342d850c7f7043f3a5a1a087a53ba51419f6 | |
parent | 8399f3d4bf33f4797824ae2ce607eb635e20b8e4 (diff) | |
download | ports-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.cpp | 20 |
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; |