summaryrefslogtreecommitdiff
path: root/www/mozilla
diff options
context:
space:
mode:
authortaya <taya>2004-01-17 00:04:49 +0000
committertaya <taya>2004-01-17 00:04:49 +0000
commit5aa585184c7d3fd2874bf2294cf30f3cc266db6b (patch)
tree3dcbc2867b95307b173ed4364e9b2c66be227b89 /www/mozilla
parent32b55517437a6d28cb554490319056bd26088627 (diff)
downloadpkgsrc-5aa585184c7d3fd2874bf2294cf30f3cc266db6b.tar.gz
Update mozilla to 1.6
- New features and Fixes from release notes: * One of the most requested Mozilla Mail features, an option to separate the Recipient and Sender columns in the thread pane, has been implemented. * Another frequently requested MailNews feature, a preference for placing the user's signature above the quoted text, has been added. * "Remove from server after x days" has been implemented for POP3 mail accounts. * vCard support has been added to Mozilla Mail. * Mozilla 1.6 includes a new cross-platform NTLM authentication mechanism. This feature brings NTLM authentication to the non-Windows Mozilla users for the first time and also delivers more robust and featureful NTLM support to users of older Windows versions. * Ask Jeeves searching has been added to Mozilla 1.6. * "Translate Page" functionality has returned to this release of Mozilla. * The View Source window now has reload functionality. * Several security-related bugs were fixed in 1.6 * Chatzilla 0.9.48 has been merged, which adds RPL_ISUPPORT support, halfop mode support, and properly masks key and password dialogs. * Many crash bugs have been fixed. * One step closer to the kitchen sink, about:about has been implemented. Typing about:about in the address field will give the user a nice list of available about:s. * The opacity implementation was completely revamped to properly change the opacity of all descendants as a group. * CSS inheritance has been updated to work per CSS2.1 (computed values are inherited). - pkgsrc specific changes * add option to build with gtk2 (not completed yet)(from Jeremy C. Reed) * make mathml optional (for MozillaThunderbird)
Diffstat (limited to 'www/mozilla')
-rw-r--r--www/mozilla/Makefile6
-rw-r--r--www/mozilla/Makefile.common22
-rw-r--r--www/mozilla/PLIST86
-rw-r--r--www/mozilla/buildlink2.mk4
-rw-r--r--www/mozilla/distinfo38
-rwxr-xr-xwww/mozilla/files/moz-install8
-rw-r--r--www/mozilla/patches/patch-ab21
-rw-r--r--www/mozilla/patches/patch-ac4
-rw-r--r--www/mozilla/patches/patch-ad4
-rw-r--r--www/mozilla/patches/patch-ae4
-rw-r--r--www/mozilla/patches/patch-af6
-rw-r--r--www/mozilla/patches/patch-ag4
-rw-r--r--www/mozilla/patches/patch-am14
-rw-r--r--www/mozilla/patches/patch-aw4
-rw-r--r--www/mozilla/patches/patch-ba4
-rw-r--r--www/mozilla/patches/patch-bb10
-rw-r--r--www/mozilla/patches/patch-be6
-rw-r--r--www/mozilla/patches/patch-bm4
-rw-r--r--www/mozilla/patches/patch-bn6
-rw-r--r--www/mozilla/patches/patch-bo10
-rw-r--r--www/mozilla/patches/patch-bp4
-rw-r--r--www/mozilla/patches/patch-bq4
22 files changed, 137 insertions, 136 deletions
diff --git a/www/mozilla/Makefile b/www/mozilla/Makefile
index 494b61975d0..63bb8793aa8 100644
--- a/www/mozilla/Makefile
+++ b/www/mozilla/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.124 2003/12/20 10:33:31 grant Exp $
+# $NetBSD: Makefile,v 1.125 2004/01/17 00:04:49 taya Exp $
-PKGREVISION= 1
MOZILLA= mozilla
MOZILLA_BIN= mozilla-bin
-MOZ_VER= 1.5.1
+MOZ_VER= 1.6
EXTRACT_SUFX= .tar.bz2
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
@@ -12,6 +11,7 @@ COMMENT= Full featured gecko-based browser
USE_GCC_SHLIB= yes
BUILD_SVG= # defined
+BUILD_MATHML= # defined
BUILD_CALENDAR= # defined
.include "../../www/mozilla/Makefile.common"
diff --git a/www/mozilla/Makefile.common b/www/mozilla/Makefile.common
index f0b4e67098e..aa0472edf22 100644
--- a/www/mozilla/Makefile.common
+++ b/www/mozilla/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.25 2004/01/12 11:44:47 grant Exp $
+# $NetBSD: Makefile.common,v 1.26 2004/01/17 00:04:49 taya Exp $
MOZ_DIST_VER?= ${MOZ_VER}
DISTNAME?= mozilla-source-${MOZ_DIST_VER}
@@ -20,12 +20,17 @@ USE_PERL5= build
USE_GMAKE= yes
USE_X11= yes
GNU_CONFIGURE= yes
+PKGCONFIG_OVERRIDE+= ${WRKSRC}/build/unix/mozilla-gtkmozembed.pc.in
+PKGCONFIG_OVERRIDE+= ${WRKSRC}/build/unix/mozilla-js.pc.in
+PKGCONFIG_OVERRIDE+= ${WRKSRC}/build/unix/mozilla-nspr.pc.in
+PKGCONFIG_OVERRIDE+= ${WRKSRC}/build/unix/mozilla-nss.pc.in
+PKGCONFIG_OVERRIDE+= ${WRKSRC}/build/unix/mozilla-plugin.pc.in
+PKGCONFIG_OVERRIDE+= ${WRKSRC}/build/unix/mozilla-xpcom.pc.in
CONFIGURE_ARGS+= --disable-tests \
--disable-debug \
--disable-pedantic \
--with-system-jpeg=${BUILDLINK_PREFIX.jpeg} \
--with-system-png=${BUILDLINK_PREFIX.png} \
- --enable-mathml \
--enable-crypto
SHAREMODE?= 644
@@ -36,11 +41,18 @@ AUTOCONF_REQD= 2.13
UNLIMIT_RESOURCES= datasize memorysize stacksize
.include "../../graphics/freetype2/buildlink2.mk"
-.include "../../graphics/gdk-pixbuf/buildlink2.mk"
.include "../../graphics/jpeg/buildlink2.mk"
.include "../../graphics/png/buildlink2.mk"
+.ifdef MOZILLA_USE_GTK2
+.include "../../net/libIDL/buildlink2.mk"
+.include "../../x11/gtk2/buildlink2.mk"
+CONFIGURE_ARGS+= --enable-default-toolkit=gtk2
+.else
+.include "../../graphics/gdk-pixbuf/buildlink2.mk"
.include "../../net/ORBit/buildlink2.mk"
.include "../../x11/gtk/buildlink2.mk"
+CONFIGURE_ARGS+= --enable-default-toolkit=gtk
+.endif
# NetBSD-*-m68k builds, but "regchrome" dumps core.
NOT_FOR_PLATFORM= NetBSD-1.4.*-* NetBSD-*-m68k
@@ -60,6 +72,10 @@ CONFIGURE_ARGS+= --enable-svg
CONFIGURE_ARGS+= --enable-calendar
.endif
+.ifdef BUILD_MATHML
+CONFIGURE_ARGS+= --enable-mathml
+.endif
+
.if exists(${X11BASE}/include/X11/extensions/Xinerama.h)
CONFIGURE_ARGS+= --enable-xinerama
.endif
diff --git a/www/mozilla/PLIST b/www/mozilla/PLIST
index d909eb59e4b..997fc677986 100644
--- a/www/mozilla/PLIST
+++ b/www/mozilla/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2003/11/27 00:03:53 taya Exp $
+@comment $NetBSD: PLIST,v 1.10 2004/01/17 00:04:49 taya Exp $
bin/${MOZILLA}
@comment begin PROGRAMS
lib/${MOZILLA}/${MOZILLA_BIN}
@@ -10,7 +10,6 @@ lib/${MOZILLA}/nsinstall
lib/${MOZILLA}/regchrome
lib/${MOZILLA}/regxpcom
lib/${MOZILLA}/shlibsign
-lib/${MOZILLA}/timebombgen
lib/${MOZILLA}/xpcshell
lib/${MOZILLA}/xpicleanup
lib/${MOZILLA}/xpidl
@@ -98,7 +97,7 @@ lib/${MOZILLA}/components/libxpinstall.${SO_SUFFIX}
lib/${MOZILLA}/components/libxremote_client.${SO_SUFFIX}
lib/${MOZILLA}/components/libxremoteservice.${SO_SUFFIX}
lib/${MOZILLA}/ipc/modules/liblockmodule.${SO_SUFFIX}
-lib/${MOZILLA}/ipc/modules/libtransmngr.${SO_SUFFIX}
+lib/${MOZILLA}/ipc/modules/libtransmgr.${SO_SUFFIX}
lib/${MOZILLA}/libgkgfx.${SO_SUFFIX}
lib/${MOZILLA}/libgtkembedmoz.${SO_SUFFIX}
lib/${MOZILLA}/libgtksuperwin.${SO_SUFFIX}
@@ -191,6 +190,7 @@ lib/${MOZILLA}/components/autocomplete.xpt
lib/${MOZILLA}/components/autoconfig.xpt
lib/${MOZILLA}/components/bookmarks.xpt
lib/${MOZILLA}/components/calendar.xpt
+lib/${MOZILLA}/components/calendarService.js
lib/${MOZILLA}/components/caps.xpt
lib/${MOZILLA}/components/chardet.xpt
lib/${MOZILLA}/components/chatzilla-service.js
@@ -292,6 +292,7 @@ lib/${MOZILLA}/components/nsResetPref.js
lib/${MOZILLA}/components/nsSidebar.js
lib/${MOZILLA}/components/nsUpdateNotifier.js
lib/${MOZILLA}/components/nsXmlRpcClient.js
+lib/${MOZILLA}/components/offlineStartup.js
lib/${MOZILLA}/components/oji.xpt
lib/${MOZILLA}/components/p3p.xpt
lib/${MOZILLA}/components/pipboot.xpt
@@ -313,7 +314,6 @@ lib/${MOZILLA}/components/sidebar.xpt
lib/${MOZILLA}/components/signonviewer.xpt
lib/${MOZILLA}/components/smime-service.js
lib/${MOZILLA}/components/spellchecker.xpt
-lib/${MOZILLA}/components/timebomb.xpt
lib/${MOZILLA}/components/txmgr.xpt
lib/${MOZILLA}/components/txtsvc.xpt
lib/${MOZILLA}/components/typeaheadfind.xpt
@@ -437,22 +437,11 @@ lib/${MOZILLA}/res/loading-image.gif
lib/${MOZILLA}/res/mathml.css
lib/${MOZILLA}/res/platform-forms.css
lib/${MOZILLA}/res/quirk.css
-lib/${MOZILLA}/res/rdf/article.gif
-lib/${MOZILLA}/res/rdf/document.gif
-lib/${MOZILLA}/res/rdf/dom-test-1.xul
-lib/${MOZILLA}/res/rdf/dom-test-2.xul
-lib/${MOZILLA}/res/rdf/dom-test-3.xul
lib/${MOZILLA}/res/rdf/dom-test-4.css
-lib/${MOZILLA}/res/rdf/dom-test-4.xul
-lib/${MOZILLA}/res/rdf/dom-test-5.xul
-lib/${MOZILLA}/res/rdf/dom-test-6.xul
-lib/${MOZILLA}/res/rdf/dom-test-7.xul
-lib/${MOZILLA}/res/rdf/dom-test-8.xul
lib/${MOZILLA}/res/rdf/folder-closed.gif
lib/${MOZILLA}/res/rdf/folder-open.gif
lib/${MOZILLA}/res/rdf/ignore-test.xul
lib/${MOZILLA}/res/rdf/loading.gif
-lib/${MOZILLA}/res/rdf/xpidl-test-1.xul
lib/${MOZILLA}/res/sample.unixpsfonts.properties
lib/${MOZILLA}/res/samples/Anieyes.gif
lib/${MOZILLA}/res/samples/aform.css
@@ -575,14 +564,14 @@ lib/${MOZILLA}/res/ua.css
lib/${MOZILLA}/res/unixcharset.properties
lib/${MOZILLA}/res/viewer.properties
lib/${MOZILLA}/res/viewsource.css
-lib/${MOZILLA}/searchplugins/NetscapeSearch.gif
-lib/${MOZILLA}/searchplugins/NetscapeSearch.src
lib/${MOZILLA}/searchplugins/bugzilla.gif
lib/${MOZILLA}/searchplugins/bugzilla.src
lib/${MOZILLA}/searchplugins/dmoz.gif
lib/${MOZILLA}/searchplugins/dmoz.src
lib/${MOZILLA}/searchplugins/google.gif
lib/${MOZILLA}/searchplugins/google.src
+lib/${MOZILLA}/searchplugins/jeeves.gif
+lib/${MOZILLA}/searchplugins/jeeves.src
lib/${MOZILLA}/searchplugins/lxrmozilla.gif
lib/${MOZILLA}/searchplugins/lxrmozilla.src
lib/${MOZILLA}/searchplugins/mozilla.gif
@@ -672,6 +661,10 @@ include/${MOZILLA}/addrbook/nsIAddrDBListener.h
include/${MOZILLA}/addrbook/nsIAddrDatabase.h
include/${MOZILLA}/addrbook/nsIAddressBook.h
include/${MOZILLA}/addrbook/nsILDAPPrefsService.h
+include/${MOZILLA}/addrbook/nsIMsgVCardService.h
+include/${MOZILLA}/addrbook/nsMsgVCardService.h
+include/${MOZILLA}/addrbook/nsVCard.h
+include/${MOZILLA}/addrbook/nsVCardObj.h
include/${MOZILLA}/appcomps/nsCharsetMenu.h
include/${MOZILLA}/appcomps/nsFontPackageHandler.h
include/${MOZILLA}/appcomps/nsIAutoCompleteListener.h
@@ -685,10 +678,8 @@ include/${MOZILLA}/appcomps/nsILDAPAutoCompleteSession.h
include/${MOZILLA}/appcomps/nsIRelatedLinksHandler.h
include/${MOZILLA}/appcomps/nsISearchContext.h
include/${MOZILLA}/appcomps/nsISearchService.h
-include/${MOZILLA}/appcomps/nsITimeBomb.h
include/${MOZILLA}/appcomps/nsIUrlbarHistory.h
include/${MOZILLA}/appcomps/nsIWindowDataSource.h
-include/${MOZILLA}/appcomps/nsTimeBomb.h
include/${MOZILLA}/appshell/nsAppShellCIDs.h
include/${MOZILLA}/appshell/nsIAppShellService.h
include/${MOZILLA}/appshell/nsICloseAllWindows.h
@@ -711,20 +702,11 @@ include/${MOZILLA}/bayesflt/nsBayesianFilterCID.h
include/${MOZILLA}/browser/nsIBrowserInstance.h
include/${MOZILLA}/browser/nsIXULBrowserWindow.h
include/${MOZILLA}/calendar/oeIICal.h
-include/${MOZILLA}/caps/nsAggregatePrincipal.h
-include/${MOZILLA}/caps/nsBasePrincipal.h
-include/${MOZILLA}/caps/nsCertificatePrincipal.h
-include/${MOZILLA}/caps/nsCodebasePrincipal.h
-include/${MOZILLA}/caps/nsIAggregatePrincipal.h
-include/${MOZILLA}/caps/nsICertificatePrincipal.h
-include/${MOZILLA}/caps/nsICodebasePrincipal.h
include/${MOZILLA}/caps/nsIPrincipal.h
include/${MOZILLA}/caps/nsIScriptSecurityManager.h
include/${MOZILLA}/caps/nsISecurityCheckedComponent.h
include/${MOZILLA}/caps/nsISignatureVerifier.h
include/${MOZILLA}/caps/nsJSPrincipals.h
-include/${MOZILLA}/caps/nsScriptSecurityManager.h
-include/${MOZILLA}/caps/nsSystemPrincipal.h
include/${MOZILLA}/chardet/nsCharsetDetectionAdaptorCID.h
include/${MOZILLA}/chardet/nsDetectionConfident.h
include/${MOZILLA}/chardet/nsDocumentCharsetInfoCID.h
@@ -894,14 +876,7 @@ include/${MOZILLA}/content/nsXBLAtomList.h
include/${MOZILLA}/content/nsXBLAtoms.h
include/${MOZILLA}/content/nsXULAtomList.h
include/${MOZILLA}/content/nsXULAtoms.h
-include/${MOZILLA}/cookie/nsCCookieManager.h
-include/${MOZILLA}/cookie/nsICookie.h
-include/${MOZILLA}/cookie/nsICookie2.h
include/${MOZILLA}/cookie/nsICookieAcceptDialog.h
-include/${MOZILLA}/cookie/nsICookieConsent.h
-include/${MOZILLA}/cookie/nsICookieManager.h
-include/${MOZILLA}/cookie/nsICookieManager2.h
-include/${MOZILLA}/cookie/nsICookiePermission.h
include/${MOZILLA}/cookie/nsICookiePromptService.h
include/${MOZILLA}/cookie/nsIImgManager.h
include/${MOZILLA}/cookie/nsIPermission.h
@@ -969,6 +944,7 @@ include/${MOZILLA}/dom/nsIDOMCustomEvent.h
include/${MOZILLA}/dom/nsIDOMDOMConfiguration.h
include/${MOZILLA}/dom/nsIDOMDOMException.h
include/${MOZILLA}/dom/nsIDOMDOMImplementation.h
+include/${MOZILLA}/dom/nsIDOMDOMStringList.h
include/${MOZILLA}/dom/nsIDOMDocument.h
include/${MOZILLA}/dom/nsIDOMDocumentCSS.h
include/${MOZILLA}/dom/nsIDOMDocumentEvent.h
@@ -1085,6 +1061,7 @@ include/${MOZILLA}/dom/nsIDOMNSLocation.h
include/${MOZILLA}/dom/nsIDOMNSRange.h
include/${MOZILLA}/dom/nsIDOMNSUIEvent.h
include/${MOZILLA}/dom/nsIDOMNSXBLFormControl.h
+include/${MOZILLA}/dom/nsIDOMNameList.h
include/${MOZILLA}/dom/nsIDOMNamedNodeMap.h
include/${MOZILLA}/dom/nsIDOMNavigator.h
include/${MOZILLA}/dom/nsIDOMNode.h
@@ -1242,7 +1219,6 @@ include/${MOZILLA}/gfx/gfxtypes.h
include/${MOZILLA}/gfx/nsColor.h
include/${MOZILLA}/gfx/nsColorNameList.h
include/${MOZILLA}/gfx/nsColorNames.h
-include/${MOZILLA}/gfx/nsCompressedCharMap.h
include/${MOZILLA}/gfx/nsCoord.h
include/${MOZILLA}/gfx/nsDeviceContext.h
include/${MOZILLA}/gfx/nsFont.h
@@ -1665,7 +1641,6 @@ include/${MOZILLA}/msgbase/msgCore.h
include/${MOZILLA}/msgbase/nsCopyMessageStreamListener.h
include/${MOZILLA}/msgbase/nsICopyMessageListener.h
include/${MOZILLA}/msgbase/nsICopyMsgStreamListener.h
-include/${MOZILLA}/msgbase/nsIFolder.h
include/${MOZILLA}/msgbase/nsIFolderListener.h
include/${MOZILLA}/msgbase/nsIIncomingServerListener.h
include/${MOZILLA}/msgbase/nsIMessenger.h
@@ -1714,7 +1689,6 @@ include/${MOZILLA}/msgbase/nsIMsgSignature.h
include/${MOZILLA}/msgbase/nsIMsgStatusFeedback.h
include/${MOZILLA}/msgbase/nsIMsgStringService.h
include/${MOZILLA}/msgbase/nsIMsgThread.h
-include/${MOZILLA}/msgbase/nsIMsgVCard.h
include/${MOZILLA}/msgbase/nsIMsgWindow.h
include/${MOZILLA}/msgbase/nsISpamSettings.h
include/${MOZILLA}/msgbase/nsISubscribableServer.h
@@ -1765,7 +1739,6 @@ include/${MOZILLA}/msgbase/nsUrlListenerManager.h
include/${MOZILLA}/msgbaseutil/nsAdapterEnumerator.h
include/${MOZILLA}/msgbaseutil/nsLocalFolderSummarySpec.h
include/${MOZILLA}/msgbaseutil/nsMsgDBFolder.h
-include/${MOZILLA}/msgbaseutil/nsMsgFolder.h
include/${MOZILLA}/msgbaseutil/nsMsgGroupRecord.h
include/${MOZILLA}/msgbaseutil/nsMsgI18N.h
include/${MOZILLA}/msgbaseutil/nsMsgIdentity.h
@@ -1886,6 +1859,7 @@ include/${MOZILLA}/msglocal/nsIMsgParseMailMsgState.h
include/${MOZILLA}/msglocal/nsINoIncomingServer.h
include/${MOZILLA}/msglocal/nsINoneService.h
include/${MOZILLA}/msglocal/nsIPop3IncomingServer.h
+include/${MOZILLA}/msglocal/nsIPop3Protocol.h
include/${MOZILLA}/msglocal/nsIPop3Service.h
include/${MOZILLA}/msglocal/nsIPop3Sink.h
include/${MOZILLA}/msglocal/nsIPop3URL.h
@@ -1945,14 +1919,23 @@ include/${MOZILLA}/necko/nsCPasswordManager.h
include/${MOZILLA}/necko/nsCPasswordManagerInternal.h
include/${MOZILLA}/necko/nsIAboutModule.h
include/${MOZILLA}/necko/nsIAsyncStreamCopier.h
+include/${MOZILLA}/necko/nsIAuthModule.h
include/${MOZILLA}/necko/nsIAuthPrompt.h
include/${MOZILLA}/necko/nsIBufferedStreams.h
include/${MOZILLA}/necko/nsIByteRangeRequest.h
include/${MOZILLA}/necko/nsICachingChannel.h
include/${MOZILLA}/necko/nsIChannel.h
+include/${MOZILLA}/necko/nsICookie.h
+include/${MOZILLA}/necko/nsICookie2.h
+include/${MOZILLA}/necko/nsICookieConsent.h
+include/${MOZILLA}/necko/nsICookieManager.h
+include/${MOZILLA}/necko/nsICookieManager2.h
+include/${MOZILLA}/necko/nsICookiePermission.h
include/${MOZILLA}/necko/nsICookieService.h
include/${MOZILLA}/necko/nsICryptoFIPSInfo.h
include/${MOZILLA}/necko/nsIDNSListener.h
+include/${MOZILLA}/necko/nsIDNSRecord.h
+include/${MOZILLA}/necko/nsIDNSRequest.h
include/${MOZILLA}/necko/nsIDNSService.h
include/${MOZILLA}/necko/nsIDataChannel.h
include/${MOZILLA}/necko/nsIDirIndex.h
@@ -1972,7 +1955,6 @@ include/${MOZILLA}/necko/nsIHttpChannel.h
include/${MOZILLA}/necko/nsIHttpChannelInternal.h
include/${MOZILLA}/necko/nsIHttpEventSink.h
include/${MOZILLA}/necko/nsIHttpHeaderVisitor.h
-include/${MOZILLA}/necko/nsIHttpNotify.h
include/${MOZILLA}/necko/nsIHttpProtocolHandler.h
include/${MOZILLA}/necko/nsIIDNService.h
include/${MOZILLA}/necko/nsIIOService.h
@@ -1984,9 +1966,6 @@ include/${MOZILLA}/necko/nsIJARURI.h
include/${MOZILLA}/necko/nsILoadGroup.h
include/${MOZILLA}/necko/nsIMIMEInputStream.h
include/${MOZILLA}/necko/nsIMultiPartChannel.h
-include/${MOZILLA}/necko/nsINetModRegEntry.h
-include/${MOZILLA}/necko/nsINetModuleMgr.h
-include/${MOZILLA}/necko/nsINetNotify.h
include/${MOZILLA}/necko/nsIPasswordManager.h
include/${MOZILLA}/necko/nsIPasswordManagerInternal.h
include/${MOZILLA}/necko/nsIProgressEventSink.h
@@ -2003,15 +1982,13 @@ include/${MOZILLA}/necko/nsIRequestObserverProxy.h
include/${MOZILLA}/necko/nsIResProtocolHandler.h
include/${MOZILLA}/necko/nsIResumableChannel.h
include/${MOZILLA}/necko/nsIResumableEntityID.h
-include/${MOZILLA}/necko/nsISOCKS4SocketInfo.h
-include/${MOZILLA}/necko/nsISOCKS4SocketProvider.h
include/${MOZILLA}/necko/nsISOCKSSocketInfo.h
-include/${MOZILLA}/necko/nsISOCKSSocketProvider.h
include/${MOZILLA}/necko/nsISSLSocketControl.h
include/${MOZILLA}/necko/nsISSLSocketProvider.h
include/${MOZILLA}/necko/nsISecretDecoderRing.h
include/${MOZILLA}/necko/nsISecureBrowserUI.h
include/${MOZILLA}/necko/nsISecurityEventSink.h
+include/${MOZILLA}/necko/nsIServerSocket.h
include/${MOZILLA}/necko/nsISimpleStreamListener.h
include/${MOZILLA}/necko/nsISocketProvider.h
include/${MOZILLA}/necko/nsISocketProviderService.h
@@ -2025,6 +2002,7 @@ include/${MOZILLA}/necko/nsIStreamListenerProxy.h
include/${MOZILLA}/necko/nsIStreamListenerTee.h
include/${MOZILLA}/necko/nsIStreamLoader.h
include/${MOZILLA}/necko/nsIStreamTransportService.h
+include/${MOZILLA}/necko/nsISyncStreamListener.h
include/${MOZILLA}/necko/nsITXTToHTMLConv.h
include/${MOZILLA}/necko/nsITransport.h
include/${MOZILLA}/necko/nsITransportSecurityInfo.h
@@ -2240,6 +2218,7 @@ include/${MOZILLA}/pipnss/nsITokenPasswordDialogs.h
include/${MOZILLA}/pipnss/nsIUserCertPicker.h
include/${MOZILLA}/pipnss/nsIX509Cert.h
include/${MOZILLA}/pipnss/nsIX509CertDB.h
+include/${MOZILLA}/pipnss/nsIX509CertDB2.h
include/${MOZILLA}/pipnss/nsIX509CertValidity.h
include/${MOZILLA}/pippki/nsIASN1Tree.h
include/${MOZILLA}/pippki/nsIPKIParamBlock.h
@@ -2297,6 +2276,7 @@ include/${MOZILLA}/profile/nsIProfile.h
include/${MOZILLA}/profile/nsIProfileChangeStatus.h
include/${MOZILLA}/profile/nsIProfileInternal.h
include/${MOZILLA}/profile/nsIProfileStartupListener.h
+include/${MOZILLA}/profile/nsISessionRoaming.h
include/${MOZILLA}/profilesharingsetup/nsIProfileSharingSetup.h
include/${MOZILLA}/progressDlg/nsIProgressDialog.h
include/${MOZILLA}/rdf/nsILocalStore.h
@@ -2404,6 +2384,7 @@ include/${MOZILLA}/ucvlatin/nsUCvLatinCID.h
include/${MOZILLA}/ucvmath/nsUCvMathCID.h
include/${MOZILLA}/ucvtw/nsUCvTWCID.h
include/${MOZILLA}/ucvtw2/nsUCvTW2CID.h
+include/${MOZILLA}/unicharutil/nsCompressedCharMap.h
include/${MOZILLA}/unicharutil/nsHankakuToZenkakuCID.h
include/${MOZILLA}/unicharutil/nsICaseConversion.h
include/${MOZILLA}/unicharutil/nsIEntityConverter.h
@@ -2437,9 +2418,7 @@ include/${MOZILLA}/view/nsIViewManager.h
include/${MOZILLA}/view/nsIViewObserver.h
include/${MOZILLA}/view/nsViewsCID.h
include/${MOZILLA}/wallet/nsCPassword.h
-include/${MOZILLA}/wallet/nsIKeyedStreamGenerator.h
include/${MOZILLA}/wallet/nsIPassword.h
-include/${MOZILLA}/wallet/nsIPasswordSink.h
include/${MOZILLA}/wallet/nsIWalletService.h
include/${MOZILLA}/walletviewers/nsISignonViewer.h
include/${MOZILLA}/walletviewers/nsIWalletEditor.h
@@ -2519,6 +2498,7 @@ include/${MOZILLA}/widget/nsIDragService.h
include/${MOZILLA}/widget/nsIDragSession.h
include/${MOZILLA}/widget/nsIDragSessionGTK.h
include/${MOZILLA}/widget/nsIDragSessionMac.h
+include/${MOZILLA}/widget/nsIDragSessionOS2.h
include/${MOZILLA}/widget/nsIDragSessionXlib.h
include/${MOZILLA}/widget/nsIEventListener.h
include/${MOZILLA}/widget/nsIFilePicker.h
@@ -2627,6 +2607,7 @@ include/${MOZILLA}/xpcom/nsIEnumerator.h
include/${MOZILLA}/xpcom/nsIErrorService.h
include/${MOZILLA}/xpcom/nsIEventQueue.h
include/${MOZILLA}/xpcom/nsIEventQueueService.h
+include/${MOZILLA}/xpcom/nsIEventTarget.h
include/${MOZILLA}/xpcom/nsIException.h
include/${MOZILLA}/xpcom/nsIExceptionService.h
include/${MOZILLA}/xpcom/nsIFactory.h
@@ -2683,7 +2664,6 @@ include/${MOZILLA}/xpcom/nsISupportsObsolete.h
include/${MOZILLA}/xpcom/nsISupportsPrimitives.h
include/${MOZILLA}/xpcom/nsISupportsUtils.h
include/${MOZILLA}/xpcom/nsIThread.h
-include/${MOZILLA}/xpcom/nsIThreadPool.h
include/${MOZILLA}/xpcom/nsITimelineService.h
include/${MOZILLA}/xpcom/nsITimer.h
include/${MOZILLA}/xpcom/nsITimerInternal.h
@@ -2804,9 +2784,12 @@ include/${MOZILLA}/zlib/zlib.h
@exec env LD_LIBRARY_PATH=%D/lib/${MOZILLA} MOZILLA_FIVE_HOME=%D/lib/${MOZILLA} %D/lib/${MOZILLA}/regxpcom
@exec env LD_LIBRARY_PATH=%D/lib/${MOZILLA} MOZILLA_FIVE_HOME=%D/lib/${MOZILLA} %D/lib/${MOZILLA}/regchrome
@unexec ${RM} %D/lib/${MOZILLA}/chrome/chrome.rdf
+@unexec ${RM} %D/lib/${MOZILLA}/chrome/overlayinfo/browser/content/overlays.rdf
+@unexec ${RM} %D/lib/${MOZILLA}/chrome/overlayinfo/browser/skin/stylesheets.rdf
@unexec ${RM} %D/lib/${MOZILLA}/chrome/overlayinfo/communicator/content/overlays.rdf
@unexec ${RM} %D/lib/${MOZILLA}/chrome/overlayinfo/cookie/content/overlays.rdf
@unexec ${RM} %D/lib/${MOZILLA}/chrome/overlayinfo/editor/content/overlays.rdf
+@unexec ${RM} %D/lib/${MOZILLA}/chrome/overlayinfo/global/skin/stylesheets.rdf
@unexec ${RM} %D/lib/${MOZILLA}/chrome/overlayinfo/inspector/content/overlays.rdf
@unexec ${RM} %D/lib/${MOZILLA}/chrome/overlayinfo/messenger/content/overlays.rdf
@unexec ${RM} %D/lib/${MOZILLA}/chrome/overlayinfo/navigator/content/overlays.rdf
@@ -2818,12 +2801,17 @@ include/${MOZILLA}/zlib/zlib.h
@dirrm lib/${MOZILLA}/chrome/overlayinfo/messenger
@dirrm lib/${MOZILLA}/chrome/overlayinfo/inspector/content
@dirrm lib/${MOZILLA}/chrome/overlayinfo/inspector
+@dirrm lib/${MOZILLA}/chrome/overlayinfo/global/skin
+@dirrm lib/${MOZILLA}/chrome/overlayinfo/global
@dirrm lib/${MOZILLA}/chrome/overlayinfo/editor/content
@dirrm lib/${MOZILLA}/chrome/overlayinfo/editor
@dirrm lib/${MOZILLA}/chrome/overlayinfo/cookie/content
@dirrm lib/${MOZILLA}/chrome/overlayinfo/cookie
@dirrm lib/${MOZILLA}/chrome/overlayinfo/communicator/content
@dirrm lib/${MOZILLA}/chrome/overlayinfo/communicator
+@dirrm lib/${MOZILLA}/chrome/overlayinfo/browser/skin
+@dirrm lib/${MOZILLA}/chrome/overlayinfo/browser/content
+@dirrm lib/${MOZILLA}/chrome/overlayinfo/browser
@dirrm lib/${MOZILLA}/chrome/overlayinfo
@comment begin DIRS
@dirrm lib/${MOZILLA}/searchplugins
diff --git a/www/mozilla/buildlink2.mk b/www/mozilla/buildlink2.mk
index 900f6a5e2cf..495160a086d 100644
--- a/www/mozilla/buildlink2.mk
+++ b/www/mozilla/buildlink2.mk
@@ -1,11 +1,11 @@
-# $NetBSD: buildlink2.mk,v 1.11 2003/11/27 00:03:53 taya Exp $
+# $NetBSD: buildlink2.mk,v 1.12 2004/01/17 00:04:49 taya Exp $
#
.if !defined(MOZILLA_BUILDLINK2_MK)
MOZILLA_BUILDLINK2_MK= # defined
BUILDLINK_PACKAGES+= mozilla
-BUILDLINK_DEPENDS.mozilla?= mozilla>=1.5
+BUILDLINK_DEPENDS.mozilla?= mozilla>=1.6
BUILDLINK_PKGSRCDIR.mozilla?= ../../www/mozilla
EVAL_PREFIX+= BUILDLINK_PREFIX.mozilla=mozilla
diff --git a/www/mozilla/distinfo b/www/mozilla/distinfo
index c76526eed48..fa3639c8533 100644
--- a/www/mozilla/distinfo
+++ b/www/mozilla/distinfo
@@ -1,20 +1,20 @@
-$NetBSD: distinfo,v 1.46 2003/12/26 06:13:52 grant Exp $
+$NetBSD: distinfo,v 1.47 2004/01/17 00:04:49 taya Exp $
-SHA1 (mozilla-source-1.5.1.tar.bz2) = 801ba02ce1f53b993f5d4186b08ba2e9abc9ed00
-Size (mozilla-source-1.5.1.tar.bz2) = 29756176 bytes
-SHA1 (patch-ab) = 36fa52e9d31e596fac3ff797a6299c5a71c34550
-SHA1 (patch-ac) = ec539828930a98d813f783458bb8b7fabfaa24b3
-SHA1 (patch-ad) = 80e873748f5fcb9fbf1f179d1f68c4e9568aece9
-SHA1 (patch-ae) = 26da0a58f19e8e7fa7bed6a093f15e727bce98e9
-SHA1 (patch-af) = d0726fe020e1d2eb89db9129dd157bf8990c42f1
-SHA1 (patch-ag) = 1efb1d526df39fc46223e2805d364f0639d0fc7c
-SHA1 (patch-am) = 596ac06abb1de21a197a9db93fde0eaec19f36d8
-SHA1 (patch-aw) = 48a240bd793729a534467d9feb23d96a65cdcc64
-SHA1 (patch-ba) = 539b6c690dea4f9c8f7ad67de2f0357b1cdee769
-SHA1 (patch-bb) = 38e4378fcc7b180845ed1e42af828bcce9119aa8
-SHA1 (patch-be) = 20050e778410393b2ac6343b9f8ba2c0affc432b
-SHA1 (patch-bm) = d67723f17ca2ceaab0488798f55a4c621926a029
-SHA1 (patch-bn) = b5a5effc0b427ede79171f167a4110959ed8b064
-SHA1 (patch-bo) = b4c52c0b798e4a3004fe1eee0630eba173204943
-SHA1 (patch-bp) = e96cd46108cf2fe9856805b209bfcf41997eff6b
-SHA1 (patch-bq) = f81601c6bf7aa3a47d93bd9a24b5d22fd7133e1c
+SHA1 (mozilla-source-1.6.tar.bz2) = baecca0ecec35704049ab6debaec6c96adbade35
+Size (mozilla-source-1.6.tar.bz2) = 31037452 bytes
+SHA1 (patch-ab) = 3abad84d0768de60f845f26c61cc2629a6e25ce3
+SHA1 (patch-ac) = 4cddfd0bfc8acd97db3b974289a79c9ae41c9edf
+SHA1 (patch-ad) = 5408db4b7585dcf5855f64a342cc721a23aec449
+SHA1 (patch-ae) = e10936ff84d8f5b631c5c9f18271f21e902ea351
+SHA1 (patch-af) = 8fcedb0bdd48f9527fff8c9b970a0e6ea68711e4
+SHA1 (patch-ag) = c52586f92fc801571ccaf5a80c081103a99ed4e7
+SHA1 (patch-am) = f34d4b72b1ce2d37871af077c48adbe388f8e0d4
+SHA1 (patch-aw) = 5beeefa214a3003a74ccc68776a97a414c6acff1
+SHA1 (patch-ba) = e11ab3e2baa19c9db9e320868a9860fedf5c8cec
+SHA1 (patch-bb) = 0fe99e9a0b0ef7af5b7dbb2ddf53c6f4df3d1c3e
+SHA1 (patch-be) = 93b30edb98b652a32a84c4907de1f1720529ef32
+SHA1 (patch-bm) = f557aa3ce9a25c91884cfd42bb505422e52ac958
+SHA1 (patch-bn) = 07573c79b22821873954d7c70821a382ea42fe4e
+SHA1 (patch-bo) = f4f6f6ac98e0b40cf4d6abb40a9591ed116257d4
+SHA1 (patch-bp) = 5f5eed098d2763ca6a4987d012c9377b81300aa3
+SHA1 (patch-bq) = 50965a09de76d1bba3e202746cbb5b197b036cdc
diff --git a/www/mozilla/files/moz-install b/www/mozilla/files/moz-install
index 8b9a853c5ac..84ff864a69d 100755
--- a/www/mozilla/files/moz-install
+++ b/www/mozilla/files/moz-install
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: moz-install,v 1.7 2003/05/13 10:23:19 markd Exp $
+# $NetBSD: moz-install,v 1.8 2004/01/17 00:04:49 taya Exp $
${SED} -e "s,@PREFIX@,${PREFIX},g" -e "s,@MOZILLA@,${MOZILLA}," -e "s,@MOZILLA_BIN@,${MOZILLA_BIN}," ${FILESDIR}/mozilla-${OBJECT_FMT}.in > ${PREFIX}/bin/${MOZILLA}
${CHOWN} ${BINOWN} ${PREFIX}/bin/${MOZILLA}
@@ -38,6 +38,12 @@ for i in `${SED} -n -e '/^@comment begin DSO$/,/^@comment end DSO$/p' ${TMP_PLIS
${BSD_INSTALL_PROGRAM} ${WRKSRC}/${src} ${PREFIX}/$i
done
+# install PKGCONFIG
+for i in `${SED} -n -e '/^@comment begin PKGCONFIG$/,/^@comment end PKGCONFIG$/p' ${TMP_PLIST} | ${EGREP} -v ^@comment` ; do
+ src=`echo $i | ${SED} -e "s@lib/pkgconfig@build/unix@"`;
+ ${BSD_INSTALL_DATA} ${WRKSRC}/${src} ${PREFIX}/$i
+done
+
# install DATA
for i in `${SED} -n -e '/^@comment begin DATA$/,/^@comment end DATA$/p' ${TMP_PLIST} | ${EGREP} -v ^@comment` ; do
src=`echo $i | ${SED} -e "s@lib/${MOZILLA}@dist/bin@"`;
diff --git a/www/mozilla/patches/patch-ab b/www/mozilla/patches/patch-ab
index cbe466b7f36..2639a650f6d 100644
--- a/www/mozilla/patches/patch-ab
+++ b/www/mozilla/patches/patch-ab
@@ -1,9 +1,9 @@
-$NetBSD: patch-ab,v 1.29 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-ab,v 1.30 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/configure.in ./configure.in
---- ../Orig/mozilla/configure.in 2003-08-30 02:14:58.000000000 +0900
-+++ ./configure.in 2003-10-16 15:38:38.000000000 +0900
-@@ -902,6 +902,9 @@
+--- ../Orig/mozilla/configure.in 2003-12-12 08:30:36.000000000 +0900
++++ ./configure.in 2004-01-16 23:17:19.000000000 +0900
+@@ -959,6 +959,9 @@
# MKSHLIB_FORCE_ALL='-Wl,-Bforcearchive'
# MKSHLIB_UNFORCE_ALL=''
# fi
@@ -13,7 +13,7 @@ diff -ru ../Orig/mozilla/configure.in ./configure.in
;;
*-hpux*)
-@@ -1190,6 +1193,13 @@
+@@ -1248,6 +1251,13 @@
if test "$LIBRUNPATH"; then
DSO_LDOPTS="-Wl,-R$LIBRUNPATH $DSO_LDOPTS"
fi
@@ -27,16 +27,7 @@ diff -ru ../Orig/mozilla/configure.in ./configure.in
;;
*-nto*)
-@@ -1596,7 +1606,7 @@
- [siginfo_t* info;],
- [ac_cv_siginfo_t=true],
- [ac_cv_siginfo_t=false])])
--if test "$ac_cv_siginfo_t" = true ; then
-+if test "$OS_TARGET" != "NetBSD" -a "$ac_cv_siginfo_t" = true ; then
- AC_DEFINE(HAVE_SIGINFO_T)
- AC_MSG_RESULT(yes)
- else
-@@ -2143,9 +2153,6 @@
+@@ -2192,9 +2202,6 @@
CXXFLAGS="$CXXFLAGS -mt"
fi
;;
diff --git a/www/mozilla/patches/patch-ac b/www/mozilla/patches/patch-ac
index 8264f59fadd..0d14ed74ae9 100644
--- a/www/mozilla/patches/patch-ac
+++ b/www/mozilla/patches/patch-ac
@@ -1,8 +1,8 @@
-$NetBSD: patch-ac,v 1.20 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-ac,v 1.21 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/xpcom/reflect/xptcall/src/md/unix/Makefile.in ./xpcom/reflect/xptcall/src/md/unix/Makefile.in
--- ../Orig/mozilla/xpcom/reflect/xptcall/src/md/unix/Makefile.in 2003-08-15 13:00:23.000000000 +0900
-+++ ./xpcom/reflect/xptcall/src/md/unix/Makefile.in 2003-10-16 15:37:01.000000000 +0900
++++ ./xpcom/reflect/xptcall/src/md/unix/Makefile.in 2004-01-16 23:17:21.000000000 +0900
@@ -135,7 +135,7 @@
# NetBSD/ARM
#
diff --git a/www/mozilla/patches/patch-ad b/www/mozilla/patches/patch-ad
index 7179037571d..142b2930a75 100644
--- a/www/mozilla/patches/patch-ad
+++ b/www/mozilla/patches/patch-ad
@@ -1,8 +1,8 @@
-$NetBSD: patch-ad,v 1.25 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-ad,v 1.26 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/xpcom/reflect/xptcall/src/md/unix/xptcinvoke_netbsd_m68k.cpp ./xpcom/reflect/xptcall/src/md/unix/xptcinvoke_netbsd_m68k.cpp
--- ../Orig/mozilla/xpcom/reflect/xptcall/src/md/unix/xptcinvoke_netbsd_m68k.cpp 2001-09-29 05:12:51.000000000 +0900
-+++ ./xpcom/reflect/xptcall/src/md/unix/xptcinvoke_netbsd_m68k.cpp 2003-10-16 15:37:03.000000000 +0900
++++ ./xpcom/reflect/xptcall/src/md/unix/xptcinvoke_netbsd_m68k.cpp 2004-01-16 23:17:22.000000000 +0900
@@ -132,6 +132,15 @@
}
}
diff --git a/www/mozilla/patches/patch-ae b/www/mozilla/patches/patch-ae
index 4eb236d99cc..22a87f3d511 100644
--- a/www/mozilla/patches/patch-ae
+++ b/www/mozilla/patches/patch-ae
@@ -1,8 +1,8 @@
-$NetBSD: patch-ae,v 1.16 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-ae,v 1.17 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/xpcom/reflect/xptcall/src/md/unix/xptcstubs_netbsd_m68k.cpp ./xpcom/reflect/xptcall/src/md/unix/xptcstubs_netbsd_m68k.cpp
--- ../Orig/mozilla/xpcom/reflect/xptcall/src/md/unix/xptcstubs_netbsd_m68k.cpp 2001-09-29 05:12:52.000000000 +0900
-+++ ./xpcom/reflect/xptcall/src/md/unix/xptcstubs_netbsd_m68k.cpp 2003-10-16 15:37:04.000000000 +0900
++++ ./xpcom/reflect/xptcall/src/md/unix/xptcstubs_netbsd_m68k.cpp 2004-01-16 23:17:24.000000000 +0900
@@ -123,17 +123,27 @@
}
}
diff --git a/www/mozilla/patches/patch-af b/www/mozilla/patches/patch-af
index ed23e0763ef..2c57af070bf 100644
--- a/www/mozilla/patches/patch-af
+++ b/www/mozilla/patches/patch-af
@@ -1,8 +1,8 @@
-$NetBSD: patch-af,v 1.16 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-af,v 1.17 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/security/nss/lib/freebl/unix_rand.c ./security/nss/lib/freebl/unix_rand.c
---- ../Orig/mozilla/security/nss/lib/freebl/unix_rand.c 2003-03-21 14:24:29.000000000 +0900
-+++ ./security/nss/lib/freebl/unix_rand.c 2003-10-16 15:37:10.000000000 +0900
+--- ../Orig/mozilla/security/nss/lib/freebl/unix_rand.c 2003-05-31 08:31:19.000000000 +0900
++++ ./security/nss/lib/freebl/unix_rand.c 2004-01-16 23:17:26.000000000 +0900
@@ -32,6 +32,7 @@
*/
diff --git a/www/mozilla/patches/patch-ag b/www/mozilla/patches/patch-ag
index 8253edbba2b..1efa9b10e71 100644
--- a/www/mozilla/patches/patch-ag
+++ b/www/mozilla/patches/patch-ag
@@ -1,8 +1,8 @@
-$NetBSD: patch-ag,v 1.13 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-ag,v 1.14 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/extensions/transformiix/source/base/ErrorObserver.h ./extensions/transformiix/source/base/ErrorObserver.h
--- ../Orig/mozilla/extensions/transformiix/source/base/ErrorObserver.h 2003-01-17 21:39:36.000000000 +0900
-+++ ./extensions/transformiix/source/base/ErrorObserver.h 2003-10-16 15:37:13.000000000 +0900
++++ ./extensions/transformiix/source/base/ErrorObserver.h 2004-01-16 23:17:34.000000000 +0900
@@ -28,7 +28,8 @@
#include "baseutils.h"
diff --git a/www/mozilla/patches/patch-am b/www/mozilla/patches/patch-am
index c9534ee637b..6dbdf51ef15 100644
--- a/www/mozilla/patches/patch-am
+++ b/www/mozilla/patches/patch-am
@@ -1,9 +1,9 @@
-$NetBSD: patch-am,v 1.11 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-am,v 1.12 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/nsprpub/pr/src/pthreads/ptio.c ./nsprpub/pr/src/pthreads/ptio.c
---- ../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 @@
+--- ../Orig/mozilla/nsprpub/pr/src/pthreads/ptio.c 2003-11-27 10:30:44.000000000 +0900
++++ ./nsprpub/pr/src/pthreads/ptio.c 2004-01-16 23:17:38.000000000 +0900
+@@ -192,7 +192,7 @@
#endif
#endif
@@ -12,7 +12,7 @@ diff -ru ../Orig/mozilla/nsprpub/pr/src/pthreads/ptio.c ./nsprpub/pr/src/pthread
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 @@
+@@ -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) \
@@ -21,7 +21,7 @@ diff -ru ../Orig/mozilla/nsprpub/pr/src/pthreads/ptio.c ./nsprpub/pr/src/pthread
#define _PRSockOptVal_t void *
#else
#error "Cannot determine architecture"
-@@ -1154,7 +1154,7 @@
+@@ -1157,7 +1157,7 @@
_pr_stderr = pt_SetMethods(2, PR_DESC_FILE, PR_FALSE, PR_TRUE);
PR_ASSERT(_pr_stdin && _pr_stdout && _pr_stderr);
@@ -30,7 +30,7 @@ diff -ru ../Orig/mozilla/nsprpub/pr/src/pthreads/ptio.c ./nsprpub/pr/src/pthread
/* 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 @@
+@@ -3477,7 +3477,7 @@
if (osfd == -1) pt_MapError(_PR_MD_MAP_SOCKET_ERROR, errno);
else
{
diff --git a/www/mozilla/patches/patch-aw b/www/mozilla/patches/patch-aw
index 58350410d0b..48141b1d8a1 100644
--- a/www/mozilla/patches/patch-aw
+++ b/www/mozilla/patches/patch-aw
@@ -1,8 +1,8 @@
-$NetBSD: patch-aw,v 1.16 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-aw,v 1.17 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/widget/src/gtksuperwin/Makefile.in ./widget/src/gtksuperwin/Makefile.in
--- ../Orig/mozilla/widget/src/gtksuperwin/Makefile.in 2003-04-19 05:14:09.000000000 +0900
-+++ ./widget/src/gtksuperwin/Makefile.in 2003-10-16 15:37:25.000000000 +0900
++++ ./widget/src/gtksuperwin/Makefile.in 2004-01-16 23:17:41.000000000 +0900
@@ -25,6 +25,7 @@
MODULE = widget
LIBRARY_NAME = gtksuperwin
diff --git a/www/mozilla/patches/patch-ba b/www/mozilla/patches/patch-ba
index a70f49fb0f9..cb645640e97 100644
--- a/www/mozilla/patches/patch-ba
+++ b/www/mozilla/patches/patch-ba
@@ -1,8 +1,8 @@
-$NetBSD: patch-ba,v 1.14 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-ba,v 1.15 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/nsprpub/pr/include/md/_netbsd.cfg ./nsprpub/pr/include/md/_netbsd.cfg
--- ../Orig/mozilla/nsprpub/pr/include/md/_netbsd.cfg 2000-12-02 06:29:17.000000000 +0900
-+++ ./nsprpub/pr/include/md/_netbsd.cfg 2003-10-16 15:37:30.000000000 +0900
++++ ./nsprpub/pr/include/md/_netbsd.cfg 2004-01-16 23:17:44.000000000 +0900
@@ -45,7 +45,8 @@
#define PR_AF_INET6 24 /* same as AF_INET6 */
diff --git a/www/mozilla/patches/patch-bb b/www/mozilla/patches/patch-bb
index 908b8017b2d..9b11017b6ed 100644
--- a/www/mozilla/patches/patch-bb
+++ b/www/mozilla/patches/patch-bb
@@ -1,8 +1,8 @@
-$NetBSD: patch-bb,v 1.14 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-bb,v 1.15 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/nsprpub/pr/include/md/_netbsd.h ./nsprpub/pr/include/md/_netbsd.h
---- ../Orig/mozilla/nsprpub/pr/include/md/_netbsd.h 2003-01-17 08:09:14.000000000 +0900
-+++ ./nsprpub/pr/include/md/_netbsd.h 2003-10-16 15:37:32.000000000 +0900
+--- ../Orig/mozilla/nsprpub/pr/include/md/_netbsd.h 2003-09-12 02:24:53.000000000 +0900
++++ ./nsprpub/pr/include/md/_netbsd.h 2004-01-16 23:17:47.000000000 +0900
@@ -48,12 +48,20 @@
#define _PR_SI_ARCHITECTURE "m68k"
#elif defined(__powerpc__)
@@ -24,7 +24,7 @@ diff -ru ../Orig/mozilla/nsprpub/pr/include/md/_netbsd.h ./nsprpub/pr/include/md
#endif
#if defined(__ELF__)
-@@ -107,7 +115,17 @@
+@@ -108,7 +116,17 @@
}
#define _MD_GET_SP(_thread) CONTEXT(_thread)[2]
#endif
@@ -43,7 +43,7 @@ diff -ru ../Orig/mozilla/nsprpub/pr/include/md/_netbsd.h ./nsprpub/pr/include/md
#define _MD_INIT_CONTEXT(_thread, _sp, _main, status) \
{ \
sigsetjmp(CONTEXT(_thread), 1); \
-@@ -149,7 +167,7 @@
+@@ -150,7 +168,7 @@
}
#define _MD_GET_SP(_thread) CONTEXT(_thread)[32]
#endif
diff --git a/www/mozilla/patches/patch-be b/www/mozilla/patches/patch-be
index e3b1b2d048f..78922e4d095 100644
--- a/www/mozilla/patches/patch-be
+++ b/www/mozilla/patches/patch-be
@@ -1,8 +1,8 @@
-$NetBSD: patch-be,v 1.12 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-be,v 1.13 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/nsprpub/pr/src/io/prsocket.c ./nsprpub/pr/src/io/prsocket.c
---- ../Orig/mozilla/nsprpub/pr/src/io/prsocket.c 2002-06-12 05:08:07.000000000 +0900
-+++ ./nsprpub/pr/src/io/prsocket.c 2003-10-16 15:37:39.000000000 +0900
+--- ../Orig/mozilla/nsprpub/pr/src/io/prsocket.c 2003-09-16 11:00:50.000000000 +0900
++++ ./nsprpub/pr/src/io/prsocket.c 2004-01-16 23:17:48.000000000 +0900
@@ -1299,6 +1299,15 @@
if (osfd == -1) {
return 0;
diff --git a/www/mozilla/patches/patch-bm b/www/mozilla/patches/patch-bm
index 0de9ac5e217..126939103b1 100644
--- a/www/mozilla/patches/patch-bm
+++ b/www/mozilla/patches/patch-bm
@@ -1,8 +1,8 @@
-$NetBSD: patch-bm,v 1.4 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-bm,v 1.5 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/xpcom/reflect/xptcall/src/md/unix/xptcstubs_arm_netbsd.cpp ./xpcom/reflect/xptcall/src/md/unix/xptcstubs_arm_netbsd.cpp
--- ../Orig/mozilla/xpcom/reflect/xptcall/src/md/unix/xptcstubs_arm_netbsd.cpp 2001-09-29 05:12:52.000000000 +0900
-+++ ./xpcom/reflect/xptcall/src/md/unix/xptcstubs_arm_netbsd.cpp 2003-10-16 15:37:41.000000000 +0900
++++ ./xpcom/reflect/xptcall/src/md/unix/xptcstubs_arm_netbsd.cpp 2004-01-16 23:17:51.000000000 +0900
@@ -118,18 +118,23 @@
* so they are contiguous with values passed on the stack, and then calls
* PrepareAndDispatch() to do the dirty work.
diff --git a/www/mozilla/patches/patch-bn b/www/mozilla/patches/patch-bn
index b0e0001b774..e72095eacad 100644
--- a/www/mozilla/patches/patch-bn
+++ b/www/mozilla/patches/patch-bn
@@ -1,8 +1,8 @@
-$NetBSD: patch-bn,v 1.3 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-bn,v 1.4 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/xpcom/io/nsNativeCharsetUtils.cpp ./xpcom/io/nsNativeCharsetUtils.cpp
---- ../Orig/mozilla/xpcom/io/nsNativeCharsetUtils.cpp 2003-07-30 14:58:28.000000000 +0900
-+++ ./xpcom/io/nsNativeCharsetUtils.cpp 2003-10-16 15:37:44.000000000 +0900
+--- ../Orig/mozilla/xpcom/io/nsNativeCharsetUtils.cpp 2004-01-08 10:25:56.000000000 +0900
++++ ./xpcom/io/nsNativeCharsetUtils.cpp 2004-01-16 23:17:54.000000000 +0900
@@ -294,7 +294,12 @@
{
const char *blank_list[] = { "", NULL };
diff --git a/www/mozilla/patches/patch-bo b/www/mozilla/patches/patch-bo
index e0dd64660f5..c83c068e874 100644
--- a/www/mozilla/patches/patch-bo
+++ b/www/mozilla/patches/patch-bo
@@ -1,9 +1,9 @@
-$NetBSD: patch-bo,v 1.4 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-bo,v 1.5 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/nsprpub/configure.in ./nsprpub/configure.in
---- ../Orig/mozilla/nsprpub/configure.in 2003-08-30 09:18:18.000000000 +0900
-+++ ./nsprpub/configure.in 2003-10-16 15:37:46.000000000 +0900
-@@ -932,6 +932,9 @@
+--- ../Orig/mozilla/nsprpub/configure.in 2003-12-16 04:58:56.000000000 +0900
++++ ./nsprpub/configure.in 2004-01-16 23:17:58.000000000 +0900
+@@ -930,6 +930,9 @@
DSO_LDOPTS='-shared -Wl,-soname -Wl,$(notdir $@)'
MDCPUCFG_H=_freebsd.cfg
PR_MD_CSRCS=freebsd.c
@@ -13,7 +13,7 @@ diff -ru ../Orig/mozilla/nsprpub/configure.in ./nsprpub/configure.in
;;
*-hpux*)
-@@ -2175,7 +2178,14 @@
+@@ -2182,7 +2185,14 @@
_PTHREAD_LDFLAGS="-lc_r"
fi
;;
diff --git a/www/mozilla/patches/patch-bp b/www/mozilla/patches/patch-bp
index b33a1ba7fa2..396d404d3b2 100644
--- a/www/mozilla/patches/patch-bp
+++ b/www/mozilla/patches/patch-bp
@@ -1,8 +1,8 @@
-$NetBSD: patch-bp,v 1.3 2003/12/26 06:13:52 grant Exp $
+$NetBSD: patch-bp,v 1.4 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/other-licenses/libical/src/libical/Makefile.in ./other-licenses/libical/src/libical/Makefile.in
--- ../Orig/mozilla/other-licenses/libical/src/libical/Makefile.in 2003-01-08 13:59:28.000000000 +0900
-+++ ./other-licenses/libical/src/libical/Makefile.in 2003-10-16 15:37:49.000000000 +0900
++++ ./other-licenses/libical/src/libical/Makefile.in 2004-01-16 23:18:03.000000000 +0900
@@ -179,7 +179,7 @@
$(PERL) $(ICALSCRIPTS)/mkrestrictiontable.pl -i $(srcdir)/icalrestriction.c.in \
$(DESIGNDATA)/restrictions.csv > icalrestriction.c
diff --git a/www/mozilla/patches/patch-bq b/www/mozilla/patches/patch-bq
index be24271e44b..d07d6000a9a 100644
--- a/www/mozilla/patches/patch-bq
+++ b/www/mozilla/patches/patch-bq
@@ -1,8 +1,8 @@
-$NetBSD: patch-bq,v 1.3 2003/11/27 00:03:53 taya Exp $
+$NetBSD: patch-bq,v 1.4 2004/01/17 00:04:49 taya Exp $
diff -ru ../Orig/mozilla/xpcom/io/nsLocalFileUnix.h ./xpcom/io/nsLocalFileUnix.h
--- ../Orig/mozilla/xpcom/io/nsLocalFileUnix.h 2003-07-19 07:14:16.000000000 +0900
-+++ ./xpcom/io/nsLocalFileUnix.h 2003-10-16 15:37:51.000000000 +0900
++++ ./xpcom/io/nsLocalFileUnix.h 2004-01-16 23:18:06.000000000 +0900
@@ -57,7 +57,7 @@
#endif