summaryrefslogtreecommitdiff
path: root/www/firefox/patches/patch-am
diff options
context:
space:
mode:
authortaya <taya@pkgsrc.org>2004-06-23 16:47:12 +0000
committertaya <taya@pkgsrc.org>2004-06-23 16:47:12 +0000
commiteed59c1e6c030b7ef8fed00be873a03854dcde56 (patch)
treee989bb0fb155f1e89b85409a1cd46603bea1de61 /www/firefox/patches/patch-am
parent56a73b841a0218c49c938083f92a5724b5ee3b8a (diff)
downloadpkgsrc-eed59c1e6c030b7ef8fed00be873a03854dcde56.tar.gz
Update firefox to 0.9
Here's what's new in this release of Firefox: * New Default Theme An updated Default Theme now presents a uniform appearance across all three platforms - a new crisp, clear look for Windows users. Finetuning for GNOME will follow in future releases. * Comprehensive Data Migration Switching to Firefox has never been easier now that Firefox imports data like Favorites, History, Settings, Cookies and Passwords from Internet Explorer. Firefox can also import from Mozilla 1.x, Netscape 4.x, 6.x and 7.x, and Opera. MacOS X and Linux migrators for browsers like Safari, OmniWeb, Konqueror etc. will arrive in future releases. * Extension/Theme Manager New Extension and Theme Managers provide a convenient way to manage and update your add-ons. SmartUpdate also notifies you of updates to Firefox. * Help A new online help system is available. * Lots of bug fixes and improvements Copy Image, the ability to delete individual items from Autocomplete lists, SMB/SFTP support on GNOME via gnome-vfs, better Bookmarks, Search and many other refinements fine tune the browsing experience. For Linux/GTK2 Users * Look and Feel Updates Ongoing improvements have been made to improve the way Firefox adheres to your GTK2 themes, such as menus. * Talkback for GTK2 Help us nail down crashes by submitting talkback reports with this crash reporting tool.
Diffstat (limited to 'www/firefox/patches/patch-am')
-rw-r--r--www/firefox/patches/patch-am40
1 files changed, 0 insertions, 40 deletions
diff --git a/www/firefox/patches/patch-am b/www/firefox/patches/patch-am
deleted file mode 100644
index 1d7420631b2..00000000000
--- a/www/firefox/patches/patch-am
+++ /dev/null
@@ -1,40 +0,0 @@
-$NetBSD: patch-am,v 1.1.1.1 2004/02/29 17:45:02 xtraeme Exp $
-
---- nsprpub/pr/src/pthreads/ptio.c.orig 2004-02-27 14:40:00.000000000 +0900
-+++ nsprpub/pr/src/pthreads/ptio.c 2004-02-27 14:43:11.000000000 +0900
-@@ -192,7 +192,7 @@
- #endif
- #endif
-
--#ifdef DARWIN
-+#if defined(DARWIN) || (defined(__NetBSD__) && defined(IPV6_V6ONLY))
- static PRBool _pr_ipv6_v6only_on_by_default;
- /* The IPV6_V6ONLY socket option is not defined on Mac OS X 10.1. */
- #ifndef IPV6_V6ONLY
-@@ -205,7 +205,7 @@
- #elif defined(IRIX) || defined(OSF1) || defined(AIX) || defined(HPUX) \
- || defined(LINUX) || defined(FREEBSD) || defined(BSDI) || defined(VMS) \
- || defined(NTO) || defined(OPENBSD) || defined(DARWIN) \
-- || defined(UNIXWARE)
-+ || defined(UNIXWARE) || defined(NETBSD)
- #define _PRSockOptVal_t void *
- #else
- #error "Cannot determine architecture"
-@@ -1157,7 +1157,7 @@
- _pr_stderr = pt_SetMethods(2, PR_DESC_FILE, PR_FALSE, PR_TRUE);
- PR_ASSERT(_pr_stdin && _pr_stdout && _pr_stderr);
-
--#ifdef DARWIN
-+#if defined(DARWIN) || (defined(__NetBSD__) && defined(IPV6_V6ONLY))
- /* In Mac OS X v10.3 Panther Beta the IPV6_V6ONLY socket option
- * is turned on by default, contrary to what RFC 3493, Section
- * 5.3 says. So we have to turn it off. Find out whether we
-@@ -3477,7 +3477,7 @@
- if (osfd == -1) pt_MapError(_PR_MD_MAP_SOCKET_ERROR, errno);
- else
- {
--#ifdef DARWIN
-+#if defined(DARWIN) || (defined(__NetBSD__) && defined(IPV6_V6ONLY))
- if ((domain == AF_INET6) && _pr_ipv6_v6only_on_by_default)
- {
- int on = 0;