aboutsummaryrefslogtreecommitdiff
path: root/repos/extra/p7zip/fix-uintxx_t-redefined.patch
diff options
context:
space:
mode:
authorWoodpecker CI <emmett1.2miligrams@protonmail.com>2026-05-24 15:40:32 +0000
committerWoodpecker CI <emmett1.2miligrams@protonmail.com>2026-05-24 15:40:32 +0000
commitdea2a1fa20fc8e843cd85e5920a67b9054d00b2e (patch)
treef331ff92dc5fd26f5803b483a24a0a21fd9bb97a /repos/extra/p7zip/fix-uintxx_t-redefined.patch
parentef5bfeb93345a5a681d88e99775622bf28defd8d (diff)
downloadalicelinux-dea2a1fa20fc8e843cd85e5920a67b9054d00b2e.tar.gz
alicelinux-dea2a1fa20fc8e843cd85e5920a67b9054d00b2e.zip
Woodpecker CI ef5bfeb93345a5a681d88e99775622bf28defd8d [SKIP CI]
Diffstat (limited to 'repos/extra/p7zip/fix-uintxx_t-redefined.patch')
-rw-r--r--repos/extra/p7zip/fix-uintxx_t-redefined.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/repos/extra/p7zip/fix-uintxx_t-redefined.patch b/repos/extra/p7zip/fix-uintxx_t-redefined.patch
deleted file mode 100644
index d5d802da..00000000
--- a/repos/extra/p7zip/fix-uintxx_t-redefined.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff --git a/C/hashes/hash.h b/C/hashes/hash.h
-index 3abf275..5084b25 100644
---- a/C/hashes/hash.h
-+++ b/C/hashes/hash.h
-@@ -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))