pkgsrc/www/mozilla/patches/patch-am

42 lines
1.6 KiB
Text
Raw Normal View History

Update mozilla to 1.5.1 New Features and Fixes * Mozilla now includes a spellchecker for MailNews and Composer. * Additional MailNews improvements include: o Users can add header lines to *every* message sent out via a certain identity. o A common application hang with SSL-encrypted SMTP connections has been fixed. o Printing of the attachments list is now supported. o Users can now mark message as read by date. * Many great improvements to Mozilla Composer including: o Better resizing for images, tables, and absolutely positioned objects. o Support for absolutely positioned objects, movable on the canvas using the mouse. o Support for z-index management. o "Snap to grid" when moving an absolutely positioned object. o Source View now uses an editor instead of a simple textarea (allows find and replace). o Numerous fixes in caret management, inline styles handling, and CSS styles handling. * Improvements to tabbed browsing, including: o Tabs are now replaced when a bookmark group is loaded. This can be changed to the old "append" behavior in the Tabbed browsing preferences. o Back and Forward navigation for tabbed browsing and bookmark groups has been improved. Users can now use the back button after loading a bookmark group to restore the previous set of tabs. o Closing a window with multiple tabs now prompts the user with a confirmation dialog (which can be disabled for future close operations). * ChatZilla, Mozilla's internet relay chat (IRC) client, has had a major overhaul bringing logging and many additional improvements. * DOM Inspector can now display the #document node (the document root). * It is now possible to jump from the JavaScript console to the relevant line in the View Source Window. * Mozilla's view source now displays line and column numbers in the status bar. * A quicksearch filter has been implemented for about:config. * Gecko now supports setting color for <HR>. * The '::' notation for CSS pseudo-elements is now supported. The old ':' notation is still supported only for pseudo-elements in CSS2 (:first-line, :first-letter, :before, :after) and the various :-moz-tree-* pseudo-elements. * Unstyled XML display has been improved. * Some Windows GDI problems in Mozilla have been resolved. * A common problem collapsing the URL bar popup on Windows has been fixed. * Mozilla has improved performance, stability, standards support and Web compatibility.
2003-11-27 01:03:53 +01:00
$NetBSD: patch-am,v 1.11 2003/11/27 00:03:53 taya Exp $
2002-07-04 05:45:30 +02:00
diff -ru ../Orig/mozilla/nsprpub/pr/src/pthreads/ptio.c ./nsprpub/pr/src/pthreads/ptio.c
Update mozilla to 1.5.1 New Features and Fixes * Mozilla now includes a spellchecker for MailNews and Composer. * Additional MailNews improvements include: o Users can add header lines to *every* message sent out via a certain identity. o A common application hang with SSL-encrypted SMTP connections has been fixed. o Printing of the attachments list is now supported. o Users can now mark message as read by date. * Many great improvements to Mozilla Composer including: o Better resizing for images, tables, and absolutely positioned objects. o Support for absolutely positioned objects, movable on the canvas using the mouse. o Support for z-index management. o "Snap to grid" when moving an absolutely positioned object. o Source View now uses an editor instead of a simple textarea (allows find and replace). o Numerous fixes in caret management, inline styles handling, and CSS styles handling. * Improvements to tabbed browsing, including: o Tabs are now replaced when a bookmark group is loaded. This can be changed to the old "append" behavior in the Tabbed browsing preferences. o Back and Forward navigation for tabbed browsing and bookmark groups has been improved. Users can now use the back button after loading a bookmark group to restore the previous set of tabs. o Closing a window with multiple tabs now prompts the user with a confirmation dialog (which can be disabled for future close operations). * ChatZilla, Mozilla's internet relay chat (IRC) client, has had a major overhaul bringing logging and many additional improvements. * DOM Inspector can now display the #document node (the document root). * It is now possible to jump from the JavaScript console to the relevant line in the View Source Window. * Mozilla's view source now displays line and column numbers in the status bar. * A quicksearch filter has been implemented for about:config. * Gecko now supports setting color for <HR>. * The '::' notation for CSS pseudo-elements is now supported. The old ':' notation is still supported only for pseudo-elements in CSS2 (:first-line, :first-letter, :before, :after) and the various :-moz-tree-* pseudo-elements. * Unstyled XML display has been improved. * Some Windows GDI problems in Mozilla have been resolved. * A common problem collapsing the URL bar popup on Windows has been fixed. * Mozilla has improved performance, stability, standards support and Web compatibility.
2003-11-27 01:03:53 +01:00
--- ../Orig/mozilla/nsprpub/pr/src/pthreads/ptio.c 2003-07-15 06:59:47.000000000 +0900
+++ ./nsprpub/pr/src/pthreads/ptio.c 2003-10-16 15:37:22.000000000 +0900
@@ -189,7 +189,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
@@ -202,7 +202,7 @@
2002-07-04 05:45:30 +02:00
#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"
Update mozilla to 1.5.1 New Features and Fixes * Mozilla now includes a spellchecker for MailNews and Composer. * Additional MailNews improvements include: o Users can add header lines to *every* message sent out via a certain identity. o A common application hang with SSL-encrypted SMTP connections has been fixed. o Printing of the attachments list is now supported. o Users can now mark message as read by date. * Many great improvements to Mozilla Composer including: o Better resizing for images, tables, and absolutely positioned objects. o Support for absolutely positioned objects, movable on the canvas using the mouse. o Support for z-index management. o "Snap to grid" when moving an absolutely positioned object. o Source View now uses an editor instead of a simple textarea (allows find and replace). o Numerous fixes in caret management, inline styles handling, and CSS styles handling. * Improvements to tabbed browsing, including: o Tabs are now replaced when a bookmark group is loaded. This can be changed to the old "append" behavior in the Tabbed browsing preferences. o Back and Forward navigation for tabbed browsing and bookmark groups has been improved. Users can now use the back button after loading a bookmark group to restore the previous set of tabs. o Closing a window with multiple tabs now prompts the user with a confirmation dialog (which can be disabled for future close operations). * ChatZilla, Mozilla's internet relay chat (IRC) client, has had a major overhaul bringing logging and many additional improvements. * DOM Inspector can now display the #document node (the document root). * It is now possible to jump from the JavaScript console to the relevant line in the View Source Window. * Mozilla's view source now displays line and column numbers in the status bar. * A quicksearch filter has been implemented for about:config. * Gecko now supports setting color for <HR>. * The '::' notation for CSS pseudo-elements is now supported. The old ':' notation is still supported only for pseudo-elements in CSS2 (:first-line, :first-letter, :before, :after) and the various :-moz-tree-* pseudo-elements. * Unstyled XML display has been improved. * Some Windows GDI problems in Mozilla have been resolved. * A common problem collapsing the URL bar popup on Windows has been fixed. * Mozilla has improved performance, stability, standards support and Web compatibility.
2003-11-27 01:03:53 +01:00
@@ -1154,7 +1154,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
@@ -3462,7 +3462,7 @@
if (osfd == -1) pt_MapError(_PR_MD_MAP_SOCKET_ERROR, errno);
else
{
Update mozilla to 1.5.1 New Features and Fixes * Mozilla now includes a spellchecker for MailNews and Composer. * Additional MailNews improvements include: o Users can add header lines to *every* message sent out via a certain identity. o A common application hang with SSL-encrypted SMTP connections has been fixed. o Printing of the attachments list is now supported. o Users can now mark message as read by date. * Many great improvements to Mozilla Composer including: o Better resizing for images, tables, and absolutely positioned objects. o Support for absolutely positioned objects, movable on the canvas using the mouse. o Support for z-index management. o "Snap to grid" when moving an absolutely positioned object. o Source View now uses an editor instead of a simple textarea (allows find and replace). o Numerous fixes in caret management, inline styles handling, and CSS styles handling. * Improvements to tabbed browsing, including: o Tabs are now replaced when a bookmark group is loaded. This can be changed to the old "append" behavior in the Tabbed browsing preferences. o Back and Forward navigation for tabbed browsing and bookmark groups has been improved. Users can now use the back button after loading a bookmark group to restore the previous set of tabs. o Closing a window with multiple tabs now prompts the user with a confirmation dialog (which can be disabled for future close operations). * ChatZilla, Mozilla's internet relay chat (IRC) client, has had a major overhaul bringing logging and many additional improvements. * DOM Inspector can now display the #document node (the document root). * It is now possible to jump from the JavaScript console to the relevant line in the View Source Window. * Mozilla's view source now displays line and column numbers in the status bar. * A quicksearch filter has been implemented for about:config. * Gecko now supports setting color for <HR>. * The '::' notation for CSS pseudo-elements is now supported. The old ':' notation is still supported only for pseudo-elements in CSS2 (:first-line, :first-letter, :before, :after) and the various :-moz-tree-* pseudo-elements. * Unstyled XML display has been improved. * Some Windows GDI problems in Mozilla have been resolved. * A common problem collapsing the URL bar popup on Windows has been fixed. * Mozilla has improved performance, stability, standards support and Web compatibility.
2003-11-27 01:03:53 +01:00
-#ifdef DARWIN
+#if defined(DARWIN) || (defined(__NetBSD__) && defined(IPV6_V6ONLY))
if ((domain == AF_INET6) && _pr_ipv6_v6only_on_by_default)
{
int on = 0;