aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/chmlib/stdtypes.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-12-01 17:26:53 +0100
committerJakub Jirutka <jakub@jirutka.cz>2017-12-01 17:26:53 +0100
commit3ce3c4fd596debefbad77328a9b62a39eccf753c (patch)
tree8ea8842d946335dbd124e71336a11b928481c544 /unmaintained/chmlib/stdtypes.patch
parent62b8ba5f8fe6d62d56b2d078b4f12f72830ee4af (diff)
downloadaports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.bz2
aports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.xz
unmaintained/*: purge aports not touched since v3.5.0
We agreed with ncopa on #alpine-devel (2017-12-01 16:20 UTC) to periodically purge aports in unmaintained that haven't been touched in last 1 year (2 releases).
Diffstat (limited to 'unmaintained/chmlib/stdtypes.patch')
-rw-r--r--unmaintained/chmlib/stdtypes.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/unmaintained/chmlib/stdtypes.patch b/unmaintained/chmlib/stdtypes.patch
deleted file mode 100644
index 0f92320176..0000000000
--- a/unmaintained/chmlib/stdtypes.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/chm_lib.c
-+++ src/chm_lib.c
-@@ -149,6 +149,17 @@ typedef unsigned __int32 UInt32;
- typedef __int64 Int64;
- typedef unsigned __int64 UInt64;
-
-+/* Linux: use C standard types */
-+#elif defined(__linux__)
-+#include <stdint.h>
-+typedef unsigned char UChar;
-+typedef int16_t Int16;
-+typedef uint16_t UInt16;
-+typedef int32_t Int32;
-+typedef uint32_t UInt32;
-+typedef int64_t Int64;
-+typedef uint64_t UInt64;
-+
- /* I386, 32-bit, non-Windows */
- /* Sparc */
- /* MIPS */