aboutsummaryrefslogtreecommitdiffstats
path: root/main/xulrunner/fix-netwerk.patch
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2013-10-12 10:47:20 +0000
committerTimo Teräs <timo.teras@iki.fi>2013-10-12 10:47:20 +0000
commit2df82e3d3d783c51aaba69c49ddb00a9f25ab138 (patch)
treec729c1aba3f4aded953cc04247a9255250507c7d /main/xulrunner/fix-netwerk.patch
parent69c09e1e4a0b3ff3e0b26151807922bd7b44e607 (diff)
downloadaports-2df82e3d3d783c51aaba69c49ddb00a9f25ab138.tar.bz2
aports-2df82e3d3d783c51aaba69c49ddb00a9f25ab138.tar.xz
main/xulrunner: fix musl build
Based heavily on GregorR's musl-pkgsrc-patches firefox patch, but slightly differs at places to suit Alpine needs.
Diffstat (limited to 'main/xulrunner/fix-netwerk.patch')
-rw-r--r--main/xulrunner/fix-netwerk.patch62
1 files changed, 62 insertions, 0 deletions
diff --git a/main/xulrunner/fix-netwerk.patch b/main/xulrunner/fix-netwerk.patch
new file mode 100644
index 0000000000..f3f684d7f0
--- /dev/null
+++ b/main/xulrunner/fix-netwerk.patch
@@ -0,0 +1,62 @@
+--- mozilla-release/netwerk.orig/sctp/src/netinet/sctp_bsd_addr.c
++++ mozilla-release/netwerk/sctp/src/netinet/sctp_bsd_addr.c
+@@ -52,8 +52,6 @@
+ #if defined(ANDROID)
+ #include <unistd.h>
+ #include <ifaddrs-android-ext.h>
+-#else
+-#include <sys/unistd.h>
+ #endif
+ #endif
+
+--- mozilla-release/netwerk.orig/sctp/src/netinet/sctp_os_userspace.h
++++ mozilla-release/netwerk/sctp/src/netinet/sctp_os_userspace.h
+@@ -381,11 +381,8 @@
+ };
+
+ #else /* !defined(Userspace_os_Windows) */
+-#include <sys/cdefs.h> /* needed? added from old __FreeBSD__ */
+ #include <sys/socket.h>
+-#if defined(__Userspace_os_FreeBSD) || defined(__Userspace_os_OpenBSD) || defined(ANDROID)
+ #include <pthread.h>
+-#endif
+ typedef pthread_mutex_t userland_mutex_t;
+ typedef pthread_cond_t userland_cond_t;
+ typedef pthread_t userland_thread_t;
+--- mozilla-release/netwerk.orig/sctp/src/netinet/sctp_pcb.c
++++ mozilla-release/netwerk/sctp/src/netinet/sctp_pcb.c
+@@ -30,6 +30,8 @@
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
++#define _BSD_SOURCE /* for IPPORT_RESERVED */
++
+ #ifdef __FreeBSD__
+ #include <sys/cdefs.h>
+ __FBSDID("$FreeBSD: head/sys/netinet/sctp_pcb.c 246687 2013-02-11 21:02:49Z tuexen $");
+@@ -69,11 +71,10 @@
+ #endif
+ #if defined(__Userspace__)
+ #if !defined(__Userspace_os_Windows)
+-#if defined(ANDROID)
++#include <netdb.h>
+ #include <unistd.h>
++#if defined(ANDROID)
+ #include <ifaddrs-android-ext.h>
+-#else
+-#include <sys/unistd.h>
+ #endif
+ #endif
+ #include <user_socketvar.h>
+--- mozilla-release/netwerk.orig/sctp/src/user_queue.h
++++ mozilla-release/netwerk/sctp/src/user_queue.h
+@@ -31,9 +31,6 @@
+ #ifndef _USER_QUEUE_H_
+ #define _USER_QUEUE_H_
+
+-#if !defined (__Userspace_os_Windows)
+-#include <sys/cdefs.h>
+-#endif
+ /*
+ * This file defines four types of data structures: singly-linked lists,
+ * singly-linked tail queues, lists and tail queues.