You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/mulk/files/mulk-0.6.0-large-file.patch

33 lines
867 B

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)