summaryrefslogtreecommitdiff
path: root/www/mozilla/files/patch-nspr-unix.c
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-06-01 01:18:48 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-06-01 01:18:48 +0000
commit6a654fae67cd239733003032c47a8f4f4daa8fbc (patch)
treeed1a4596add9729669f54c6edf98482a66e25ad6 /www/mozilla/files/patch-nspr-unix.c
parentFix theme loading on Sparc64. (diff)
* Add FreeBSD Alpha support! [1]
* Fix some 64-bit problems with the nspr and JavaScript code [2] Special thanks to Bernd Walter <ticso@cicely.de> for [1] who put together the patch set based on work from gallatin. Submitted by: Bernd Walter <ticso@cicely.de> [1] tmm [2]
Notes
Notes: svn path=/head/; revision=81818
Diffstat (limited to '')
-rw-r--r--www/mozilla/files/patch-nspr-unix.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/www/mozilla/files/patch-nspr-unix.c b/www/mozilla/files/patch-nspr-unix.c
new file mode 100644
index 000000000000..6bb4ed08fb40
--- /dev/null
+++ b/www/mozilla/files/patch-nspr-unix.c
@@ -0,0 +1,21 @@
+--- nsprpub/pr/src/md/unix/unix.c.orig Sat May 31 18:06:04 2003
++++ nsprpub/pr/src/md/unix/unix.c Sat May 31 18:04:43 2003
+@@ -65,7 +65,8 @@
+ * PRInt32* pointer to a _PRSockLen_t* pointer.
+ */
+ #if defined(HAVE_SOCKLEN_T) \
+- || (defined(LINUX) && defined(__GLIBC__) && __GLIBC__ >= 2)
++ || (defined(LINUX) && defined(__GLIBC__) && __GLIBC__ >= 2) \
++ || defined(FREEBSD)
+ #define _PRSockLen_t socklen_t
+ #elif defined(IRIX) || defined(HPUX) || defined(OSF1) || defined(SOLARIS) \
+ || defined(AIX4_1) || defined(LINUX) || defined(SONY) \
+@@ -73,7 +74,7 @@
+ || defined(SUNOS4) || defined(NCR) || defined(DARWIN) \
+ || defined(NEXTSTEP) || defined(QNX)
+ #define _PRSockLen_t int
+-#elif (defined(AIX) && !defined(AIX4_1)) || defined(FREEBSD) \
++#elif (defined(AIX) && !defined(AIX4_1)) \
+ || defined(NETBSD) || defined(OPENBSD) || defined(UNIXWARE) \
+ || defined(DGUX) || defined(VMS) || defined(NTO)
+ #define _PRSockLen_t size_t