summaryrefslogtreecommitdiff
path: root/dev-libs/chmlib/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-libs/chmlib/files
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-libs/chmlib/files')
-rw-r--r--dev-libs/chmlib/files/chmlib-0.39-stdtypes.patch20
-rw-r--r--dev-libs/chmlib/files/chmlib-0.40-headers.patch18
2 files changed, 0 insertions, 38 deletions
diff --git a/dev-libs/chmlib/files/chmlib-0.39-stdtypes.patch b/dev-libs/chmlib/files/chmlib-0.39-stdtypes.patch
deleted file mode 100644
index c0b809b2d9db..000000000000
--- a/dev-libs/chmlib/files/chmlib-0.39-stdtypes.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/src/chm_lib.c
-+++ b/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 */
diff --git a/dev-libs/chmlib/files/chmlib-0.40-headers.patch b/dev-libs/chmlib/files/chmlib-0.40-headers.patch
deleted file mode 100644
index 5daa458be8a5..000000000000
--- a/dev-libs/chmlib/files/chmlib-0.40-headers.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/src/chm_http.c
-+++ b/src/chm_http.c
-@@ -34,6 +34,7 @@
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
-+#include <unistd.h>
- #if __sun || __sgi
- #include <strings.h>
- #endif
-@@ -42,6 +43,7 @@
- #include <sys/socket.h>
- #include <sys/types.h>
- #include <netinet/in.h>
-+#include <arpa/inet.h>
-
- /* threading includes */
- #include <pthread.h>