summaryrefslogtreecommitdiff
path: root/net-misc/mulk/files/mulk-0.6.0-large-file.patch
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/mulk/files/mulk-0.6.0-large-file.patch')
-rw-r--r--net-misc/mulk/files/mulk-0.6.0-large-file.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/net-misc/mulk/files/mulk-0.6.0-large-file.patch b/net-misc/mulk/files/mulk-0.6.0-large-file.patch
deleted file mode 100644
index 801433080e46..000000000000
--- a/net-misc/mulk/files/mulk-0.6.0-large-file.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-Index: mulk-0.6.0/lib/defines.h
-===================================================================
---- mulk-0.6.0.orig/lib/defines.h
-+++ mulk-0.6.0/lib/defines.h
-@@ -41,6 +41,12 @@
- #include <stdio.h>
- #include <string.h>
- #include <time.h>
-+#ifdef HAVE_STDINT_H
-+ #include <stdint.h>
-+#endif
-+#ifdef HAVE_INTTYPES_H
-+ #include <inttypes.h>
-+#endif
- #include <curl/curl.h>
- #include <curl/multi.h>
- #include <uriparser/Uri.h>
-Index: mulk-0.6.0/lib/m_malloc.c
-===================================================================
---- mulk-0.6.0.orig/lib/m_malloc.c
-+++ mulk-0.6.0/lib/m_malloc.c
-@@ -34,10 +34,6 @@
-
- #ifdef MULKDEBUG
-
--#ifdef HAVE_STDINT_H
--#include <stdint.h> /* for uint32_t */
--#endif
--
- #define HASH_TABLE_SIZE 131072 /* 2^17, use always power of 2 */
- #define HASH_CHUNK_SIZE 2048
- #define INC_INDEX(i) i = ((i == HASH_TABLE_SIZE-1) ? 0 : i+1)