diff options
author | Alan Eldridge <alane@FreeBSD.org> | 2002-12-13 09:41:38 +0000 |
---|---|---|
committer | Alan Eldridge <alane@FreeBSD.org> | 2002-12-13 09:41:38 +0000 |
commit | fdfcd30ddcf17e8aca8ddde54ad0bdc1a037cd84 (patch) | |
tree | efcb4ccdb8c3f70f00663f545638a39b3bd83586 /www/firefox36/files/patch-nsprpub-pr-src-pthrads-ptio.c | |
parent | Fix a RUN_DEPENDS entry: (diff) |
Finally, a release Phoenix that works and does not crash all the time.
Approved by: kris (a long time ago)
Notes
Notes:
svn path=/head/; revision=71598
Diffstat (limited to 'www/firefox36/files/patch-nsprpub-pr-src-pthrads-ptio.c')
-rw-r--r-- | www/firefox36/files/patch-nsprpub-pr-src-pthrads-ptio.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/www/firefox36/files/patch-nsprpub-pr-src-pthrads-ptio.c b/www/firefox36/files/patch-nsprpub-pr-src-pthrads-ptio.c deleted file mode 100644 index 4a965d4c7440..000000000000 --- a/www/firefox36/files/patch-nsprpub-pr-src-pthrads-ptio.c +++ /dev/null @@ -1,22 +0,0 @@ -Index: nsprpub/pr/src/pthreads/ptio.c -diff -u nsprpub/pr/src/pthreads/ptio.c.orig nsprpub/pr/src/pthreads/ptio.c ---- nsprpub/pr/src/pthreads/ptio.c.orig Fri Apr 12 03:14:39 2002 -+++ nsprpub/pr/src/pthreads/ptio.c Tue Jul 30 18:52:11 2002 -@@ -3414,6 +3414,17 @@ - if (osfd == -1) pt_MapError(_PR_MD_MAP_SOCKET_ERROR, errno); - else - { -+#if (defined(_PR_INET6_PROBE) || defined(_PR_INET6)) && \ -+ defined(__FreeBSD__) && defined(IPV6_V6ONLY) -+ if (domain == PR_AF_INET6) { -+ int opt = 0; -+ if (setsockopt(osfd, IPPROTO_IPV6, IPV6_V6ONLY, -+ &opt, sizeof(opt))) { -+ close(osfd); -+ return NULL; -+ } -+ } -+#endif - fd = pt_SetMethods(osfd, ftype, PR_FALSE, PR_FALSE); - if (fd == NULL) close(osfd); - } |