summaryrefslogtreecommitdiff
path: root/app-arch/p7zip/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-09-24 17:23:06 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-09-24 17:23:06 +0100
commit6ec91ab7ea6f7b0b84e3006f7136ad8d67bd6ef0 (patch)
treee973b210311e7c2d0c04aae34e776e6e608c70af /app-arch/p7zip/files
parent6a851e4f7c23c15c4b7853e6c34b0a0b9bc68482 (diff)
gentoo auto-resync : 24:09:2023 - 17:23:06
Diffstat (limited to 'app-arch/p7zip/files')
-rw-r--r--app-arch/p7zip/files/p7zip-17.05-unit64.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/app-arch/p7zip/files/p7zip-17.05-unit64.patch b/app-arch/p7zip/files/p7zip-17.05-unit64.patch
new file mode 100644
index 000000000000..0aa19e329ac0
--- /dev/null
+++ b/app-arch/p7zip/files/p7zip-17.05-unit64.patch
@@ -0,0 +1,21 @@
+--- p7zip-17.05-orig/C/hashes/hash.h 2023-03-03 23:16:28.000000000 +1100
++++ p7zip-17.05/C/hashes/hash.h 2023-04-15 09:05:20.357955971 +1000
+@@ -42,17 +42,7 @@
+
+ #include "../7zTypes.h"
+
+-#ifndef _UINT32_T_DECLARED
+-typedef UInt32 uint32_t;
+-#define _UINT32_T_DECLARED
+-#endif
+-
+-#ifndef _UINT64_T_DECLARED
+-typedef UInt64 uint64_t;
+-#define _UINT64_T_DECLARED
+-#endif
+-
+-//#include <stdint.h>
++#include <stdint.h>
+
+ #ifndef min
+ #define min(a,b) (((a)>(b))?(b):(a))