diff options
author | Timo Teräs <timo.teras@iki.fi> | 2013-12-17 10:01:48 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2013-12-17 10:01:48 +0000 |
commit | 5b0822c236b3dabe1b9d32ff4ef7e512e63aff06 (patch) | |
tree | 8712aa257e54f04d7d9041a779459a95ac18acc2 /main/memcached/musl-includes.patch | |
parent | 473ee080162838e7cf78455ce886dbeea5890829 (diff) | |
download | aports-5b0822c236b3dabe1b9d32ff4ef7e512e63aff06.tar.bz2 aports-5b0822c236b3dabe1b9d32ff4ef7e512e63aff06.tar.xz |
main/memcached: fix musl build
Diffstat (limited to 'main/memcached/musl-includes.patch')
-rw-r--r-- | main/memcached/musl-includes.patch | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/main/memcached/musl-includes.patch b/main/memcached/musl-includes.patch new file mode 100644 index 0000000000..558931e4f5 --- /dev/null +++ b/main/memcached/musl-includes.patch @@ -0,0 +1,47 @@ +--- memcached-1.4.15.orig/assoc.c ++++ memcached-1.4.15/assoc.c +@@ -14,8 +14,8 @@ + #include "memcached.h" + #include <sys/stat.h> + #include <sys/socket.h> +-#include <sys/signal.h> + #include <sys/resource.h> ++#include <signal.h> + #include <fcntl.h> + #include <netinet/in.h> + #include <errno.h> +--- memcached-1.4.15.orig/items.c ++++ memcached-1.4.15/items.c +@@ -2,13 +2,13 @@ + #include "memcached.h" + #include <sys/stat.h> + #include <sys/socket.h> +-#include <sys/signal.h> + #include <sys/resource.h> + #include <fcntl.h> + #include <netinet/in.h> + #include <errno.h> + #include <stdlib.h> + #include <stdio.h> ++#include <signal.h> + #include <string.h> + #include <time.h> + #include <assert.h> +--- memcached-1.4.15.orig/slabs.c ++++ memcached-1.4.15/slabs.c +@@ -10,7 +10,6 @@ + #include "memcached.h" + #include <sys/stat.h> + #include <sys/socket.h> +-#include <sys/signal.h> + #include <sys/resource.h> + #include <fcntl.h> + #include <netinet/in.h> +@@ -18,6 +17,7 @@ + #include <stdlib.h> + #include <stdio.h> + #include <string.h> ++#include <signal.h> + #include <assert.h> + #include <pthread.h> + |