[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RFC: mozilla-1.8a5



remove these patches

patch-build_package_rpm_SOURCES_mozilla-compose_desktop
patch-build_package_rpm_SOURCES_mozilla-mail_desktop
patch-build_package_rpm_SOURCES_mozilla_desktop
patch-build_unix_Makefile_in
patch-configure_in
patch-directory_c-sdk_ldap_libraries_liblber_lber-int_h
patch-nsprpub_pr_include_md__openbsd_cfg
patch-nsprpub_pr_include_md__openbsd_h
patch-nsprpub_pr_src_io_prprf_c
patch-widget_src_gtk2_nsGtkKeyUtils_cpp
patch-widget_src_gtk_nsGtkEventHandler_cpp
patch-widget_src_xlib_nsKeyCode_cpp

then apply the diff
Index: Makefile
===================================================================
RCS file: /cvs/ports/www/mozilla/Makefile,v
retrieving revision 1.76
diff -u -r1.76 Makefile
--- Makefile	11 Dec 2004 13:29:22 -0000	1.76
+++ Makefile	15 Dec 2004 16:20:29 -0000
@@ -5,7 +5,7 @@
 COMMENT=	"open source version of the Netscape browser"
 COMMENT-devel=	"devel files for Gecko"
 
-VER=		1.6
+VER=		1.8a5
 DISTNAME=	mozilla
 PKGNAME=	mozilla-${VER}
 DISTFILES=	mozilla-source-${VER}.tar.bz2
@@ -22,13 +22,11 @@
 WANTLIB=		X11 Xext Xft Xi Xp Xrender Xt c fontconfig freetype \
 			glib gmodule iconv intl m pthread stdc++ z
 
-MASTER_SITES=	http://ftp.eu.mozilla.org/pub/mozilla.org/mozilla/releases/mozilla${VER}/src/ \
-		http://ftp.mozilla.org/pub/mozilla/releases/mozilla${VER}/src/
+MASTER_SITES=	http://ftp.eu.mozilla.org/pub/mozilla.org/mozilla/releases/mozilla${VER}/source/ \
+		http://ftp.mozilla.org/pub/mozilla/releases/mozilla${VER}/source/
 
 MULTI_PACKAGES=	-devel
 
-VMEM_WARNING=yes
-
 .for i in ${MULTI_PACKAGES}
 PKGNAME$i=	mozilla${i}-${VER}
 .endfor
@@ -49,6 +47,8 @@
 		png.3::graphics/png
 .endif
 
+VMEM_WARNING=yes
+
 USE_X11=	Yes
 USE_GMAKE=	Yes
 # Regression tests are too hard to adapt to run here
@@ -60,24 +60,29 @@
 
 AUTOCONF_VERSION= 2.13
 CONFIGURE_STYLE= autoconf no-autoheader
-CONFIGURE_ARGS=					\
-		--with-system-jpeg=${LOCALBASE}	\
+CONFIGURE_ARGS=	--with-system-jpeg=${LOCALBASE}	\
 		--with-system-png=${LOCALBASE}	\
 		--with-system-zlib=/usr/lib	\
 		--with-pthreads			\
-		--enable-xft			\
 		--enable-optimize=-Os		\
-		--enable-crypto			\
-		--enable-extensions=default	\
-		--disable-pedantic		\
+		--disable-xft			\
+		--enable-freetype2		\
 		--disable-debug			\
 		--disable-tests			\
-		--disable-ldap
+		--disable-pedantic
+
+CONFIGURE_ARGS+=--enable-application=suite	\
+		--enable-default-toolkit=gtk	\
+		--enable-crypto			\
+		--enable-extensions=default
 
-CONFIGURE_ENV=	PKG_CONFIG_PATH="${LOCALBASE}/lib/pkgconfig:${X11BASE}/lib/pkgconfig"
-MAKE_ENV=	LD_LIBRARY_PATH="${WRKSRC}/dist/bin"
+CONFIGURE_ENV=	MOZ_CO_PROJECT=suite \
+		PKG_CONFIG_PATH="${LOCALBASE}/lib/pkgconfig:${X11BASE}/lib/pkgconfig"
+MAKE_ENV=	MOZ_CO_PROJECT=suite \
+		LD_LIBRARY_PATH="${WRKSRC}/dist/bin"
 
-MOB=		${WRKSRC}/dist
+MOD=		${WRKSRC}/dist
+MOB=		${WRKSRC}/dist/bin
 MOZ=		${PREFIX}/mozilla
 
 post-extract:
@@ -85,35 +90,33 @@
 
 pre-configure:
 	@cd ${WRKSRC}/nsprpub && ${SETENV} ${AUTOCONF_ENV} ${AUTOCONF}
+	@cd ${WRKSRC}/directory/c-sdk && ${SETENV} ${AUTOCONF_ENV} ${AUTOCONF}
 	@perl -pi -e 's|_LOCALBASE_|${LOCALBASE}|g; s|_X11BASE_|${X11BASE}|g' \
 		${WRKSRC}/xpfe/bootstrap/mozilla.in
 
 do-install:
 .for dir in include lib
 	${INSTALL_DATA_DIR} ${MOZ}/${dir}
-	@cd ${MOB} && ${TAR} -chf - ${dir} | \
+	@cd ${MOD} && ${TAR} -chf - ${dir} | \
 		${TAR} -xf - -C ${MOZ}
 .endfor
-	@cd ${MOB}/public && ${TAR} -chf - nss | \
+	@cd ${MOD}/public && ${TAR} -chf - nss | \
 		${TAR} -xf - -C ${MOZ}/include
-.for dir in chrome components defaults res searchplugins
+.for dir in chrome components defaults greprefs res searchplugins
 	${INSTALL_DATA_DIR} ${MOZ}/${dir}
-	@cd ${MOB}/bin && ${TAR} -chf - ${dir} | \
+	@cd ${MOB} && ${TAR} -chf - ${dir} | \
 		${TAR} -xf - -C ${MOZ}
 .endfor
-	@cd ${MOB}/bin && ${TAR} -chf - *.so.1.0 | \
+	@cd ${MOB} && ${TAR} -chf - *.so.1.0 | \
 		${TAR} -xf - -C ${MOZ}
-	@chmod 444 ${MOZ}/*.so.1.0 ${MOZ}/components/*.so.1.0
-	${INSTALL_DATA} ${MOB}/bin/LICENSE ${MOZ}
-	${INSTALL_SCRIPT} ${MOB}/bin/mozilla ${PREFIX}/bin
-	${INSTALL_SCRIPT} ${MOB}/bin/run-mozilla.sh ${MOB}/bin/mozilla-config ${MOZ}
-	${INSTALL_PROGRAM} ${MOB}/bin/regchrome ${MOB}/bin/regxpcom ${MOB}/bin/mozilla-bin ${MOZ}
-	${INSTALL_DATA_DIR} ${PREFIX}/share/applications
-	${INSTALL_DATA_DIR} ${PREFIX}/share/pixmaps
-.for file in mozilla mozilla-mail mozilla-compose
-	${INSTALL_DATA} ${WRKSRC}/build/package/rpm/SOURCES/${file}.desktop ${PREFIX}/share/applications
-	${INSTALL_DATA} ${WRKSRC}/build/package/rpm/SOURCES/${file}-icon.* ${PREFIX}/share/pixmaps
-.endfor
+	@chmod 444 ${MOZ}/*.so.1.0 ${MOZ}/components/*.so.1.0 ${MOZ}/components/*.js
+	${INSTALL_DATA} ${MOB}/LICENSE ${MOZ}
+	${INSTALL_DATA} ${WRKSRC}/dist/bin/icons/mozicon16.xpm ${WRKSRC}/dist/bin/icons/mozicon50.xpm ${MOZ}
+	${INSTALL_SCRIPT} ${MOB}/mozilla ${PREFIX}/bin
+
+	${INSTALL_SCRIPT} ${MOB}/run-mozilla.sh ${MOB}/mozilla-config ${MOZ}
+	${INSTALL_PROGRAM} ${MOB}/regchrome ${MOB}/regxpcom ${MOB}/mozilla-bin ${MOZ}
+
 	${INSTALL_DATA_DIR} ${PREFIX}/lib/pkgconfig
 	${INSTALL_DATA} ${WRKBUILD}/build/unix/*.pc ${PREFIX}/lib/pkgconfig
 
Index: distinfo
===================================================================
RCS file: /cvs/ports/www/mozilla/distinfo,v
retrieving revision 1.10
diff -u -r1.10 distinfo
--- distinfo	18 Jan 2004 10:48:38 -0000	1.10
+++ distinfo	13 Dec 2004 12:51:23 -0000
@@ -1,3 +1,3 @@
-MD5 (mozilla-source-1.6.tar.bz2) = da612f8768320dbafd0bfb3c254c2788
-RMD160 (mozilla-source-1.6.tar.bz2) = 5173d777b0d3f100b2cb402cf480f0c0001cb794
-SHA1 (mozilla-source-1.6.tar.bz2) = baecca0ecec35704049ab6debaec6c96adbade35
+MD5 (mozilla-source-1.8a5.tar.bz2) = fa3e7a19b3ef455609ea0803b26e6e74
+RMD160 (mozilla-source-1.8a5.tar.bz2) = 2082a4137e6004d75816c3cab7aa7ff793b46a1c
+SHA1 (mozilla-source-1.8a5.tar.bz2) = ba9e9db7c4bb2f4862eaa3c0d4fd50941a8581da
Index: patches/patch-config_autoconf_mk_in
===================================================================
RCS file: /cvs/ports/www/mozilla/patches/patch-config_autoconf_mk_in,v
retrieving revision 1.7
diff -u -r1.7 patch-config_autoconf_mk_in
--- patches/patch-config_autoconf_mk_in	18 Jan 2004 10:49:33 -0000	1.7
+++ patches/patch-config_autoconf_mk_in	15 Dec 2004 16:12:49 -0000
@@ -1,23 +1,23 @@
-$OpenBSD: patch-config_autoconf_mk_in,v 1.7 2004/01/18 10:49:33 wilfried Exp $
---- config/autoconf.mk.in.orig	2003-10-30 22:11:05.000000000 +0100
-+++ config/autoconf.mk.in	2003-12-12 15:43:28.000000000 +0100
-@@ -29,13 +29,13 @@ MOZILLA_VERSION = @MOZILLA_VERSION@
+$OpenBSD: patch-config_autoconf_mk_in,v 1.2 2004/11/26 18:29:15 pvalchev Exp $
+--- config/autoconf.mk.in.orig	Sun Oct 31 05:29:54 2004
++++ config/autoconf.mk.in	Tue Nov  9 15:14:16 2004
+@@ -32,13 +32,13 @@ MOZ_APP_DISPLAYNAME = @MOZ_APP_DISPLAYNA
  prefix		= @prefix@
  exec_prefix	= @exec_prefix@
  bindir		= @bindir@
--includedir	= @includedir@/mozilla-$(MOZILLA_VERSION)
+-includedir	= @includedir@/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
 +includedir	= $(prefix)/mozilla/include
  libdir		= @libdir@
  datadir		= @datadir@
  mandir		= @mandir@
- idldir		= @datadir@/idl/mozilla-$(MOZILLA_VERSION)
+ idldir		= @datadir@/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
  
--mozappdir	= $(libdir)/mozilla-$(MOZILLA_VERSION)
+-mozappdir	= $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
 +mozappdir	= $(prefix)/mozilla
- mredir		= $(libdir)/mre/mre-$(MOZILLA_VERSION)
+ mredir		= $(libdir)/mre/mre-$(MOZ_APP_VERSION)
  mrelibdir	= $(mredir)/lib
  
-@@ -172,7 +172,7 @@ OS_LDFLAGS	= @LDFLAGS@
+@@ -195,7 +195,7 @@ OS_LDFLAGS	= @LDFLAGS@
  OS_COMPILE_CFLAGS = $(OS_CPPFLAGS) @COMPILE_CFLAGS@
  OS_COMPILE_CXXFLAGS = $(OS_CPPFLAGS) @COMPILE_CXXFLAGS@
  
Index: patches/patch-config_rules_mk
===================================================================
RCS file: /cvs/ports/www/mozilla/patches/patch-config_rules_mk,v
retrieving revision 1.1
diff -u -r1.1 patch-config_rules_mk
--- patches/patch-config_rules_mk	15 Feb 2004 19:44:01 -0000	1.1
+++ patches/patch-config_rules_mk	14 Dec 2004 19:40:17 -0000
@@ -1,7 +1,7 @@
-$OpenBSD: patch-config_rules_mk,v 1.1 2004/02/15 19:44:01 wilfried Exp $
---- config/rules.mk.orig	2004-02-15 14:41:57.000000000 +0100
-+++ config/rules.mk	2004-02-15 15:22:16.000000000 +0100
-@@ -664,7 +664,7 @@ ifdef SHARED_LIBRARY
+$OpenBSD: patch-config_rules_mk,v 1.2 2004/11/26 18:29:15 pvalchev Exp $
+--- config/rules.mk.orig	2004-06-10 07:50:09.000000000 +0200
++++ config/rules.mk	2004-06-16 13:05:25.000000000 +0200
+@@ -667,7 +667,7 @@ ifdef SHARED_LIBRARY
  ifdef IS_COMPONENT
  ifdef GRE_MODULE
  ifndef DISABLE_DIST_GRE
@@ -10,7 +10,7 @@
  	$(ELF_DYNSTR_GC) $(GRE_DIST)/components/$(SHARED_LIBRARY)
  ifdef BEOS_ADDON_WORKAROUND
  	( cd $(GRE_DIST)/components && $(CC) -nostart -o $(SHARED_LIBRARY).stub $(SHARED_LIBRARY) )
-@@ -674,11 +674,11 @@ endif # GRE_MODULE
+@@ -677,11 +677,11 @@ endif # GRE_MODULE
  ifeq ($(OS_ARCH),OS2)
  	$(INSTALL) $(IFLAGS2) $(IMPORT_LIBRARY) $(DIST)/lib/components
  else
@@ -24,7 +24,7 @@
  	$(ELF_DYNSTR_GC) $(DIST)/bin/components/$(SHARED_LIBRARY)
  ifdef BEOS_ADDON_WORKAROUND
  	( cd $(DIST)/bin/components && $(CC) -nostart -o $(SHARED_LIBRARY).stub $(SHARED_LIBRARY) )
-@@ -687,7 +687,7 @@ endif # ! _SKIP_OLD_GRE_INSTALL
+@@ -690,7 +690,7 @@ endif # ! _SKIP_OLD_GRE_INSTALL
  else # ! IS_COMPONENT
  ifdef GRE_MODULE
  ifndef DISABLE_DIST_GRE
@@ -33,7 +33,7 @@
  ifdef BEOS_ADDON_WORKAROUND
  	( cd $(GRE_DIST) && $(CC) -nostart -o $(SHARED_LIBRARY).stub $(SHARED_LIBRARY) )
  endif
-@@ -696,10 +696,10 @@ endif # GRE_MODULE
+@@ -699,10 +699,10 @@ endif # GRE_MODULE
  ifneq (,$(filter OS2 WINNT,$(OS_ARCH)))
  	$(INSTALL) $(IFLAGS2) $(IMPORT_LIBRARY) $(DIST)/lib
  else
@@ -46,7 +46,7 @@
  ifdef BEOS_ADDON_WORKAROUND
  	( cd $(DIST)/bin && $(CC) -nostart -o $(SHARED_LIBRARY).stub $(SHARED_LIBRARY) )
  endif
-@@ -763,15 +763,15 @@ ifndef NO_INSTALL
+@@ -766,15 +766,15 @@ ifndef NO_INSTALL
  ifdef SHARED_LIBRARY
  ifdef IS_COMPONENT
  ifdef MRE_DIST
@@ -66,10 +66,10 @@
  endif
  endif
  endif # SHARED_LIBRARY
-@@ -1030,7 +1030,6 @@ ifdef RESFILE
- 	$(RC) $(RCFLAGS) $(RESFILE) $@
- endif
- endif # OS2
+@@ -1023,7 +1023,6 @@ endif # NO_LD_ARCHIVE_FLAGS
+ else # os2 vacpp
+ 	$(MKSHLIB) /O:$@ /DLL /INC:_dllentry $(LDFLAGS) $(OBJS) $(LOBJS) $(EXTRA_DSO_LDOPTS) $(OS_LIBS) $(EXTRA_LIBS) $(DEF_FILE)
+ endif # !os2 vacpp
 -	chmod +x $@
  ifndef NO_COMPONENT_LINK_MAP
  ifndef MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS
Index: patches/patch-directory_c-sdk_build_mk
===================================================================
RCS file: patches/patch-directory_c-sdk_build_mk
diff -N patches/patch-directory_c-sdk_build_mk
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ patches/patch-directory_c-sdk_build_mk	15 Dec 2004 07:35:21 -0000
@@ -0,0 +1,16 @@
+$OpenBSD$
+--- directory/c-sdk/build.mk.orig	Tue Sep 14 22:59:40 2004
++++ directory/c-sdk/build.mk	Wed Nov 10 21:50:22 2004
+@@ -410,10 +410,10 @@ else
+ LINK_LIB        = $(RM) $@; $(AR) $(AR_FLAGS) $(OBJS); $(RANLIB) $@
+ LINK_LIB2       = $(RM) $@; $(AR) $@ $(OBJS2); $(RANLIB) $@
+ ifdef SONAMEFLAG_PREFIX
+-LINK_DLL        = $(LD) $(DSO_LDOPTS) $(ALDFLAGS) $(DLL_LDFLAGS) $(DLL_EXPORT_FLAGS) \
++LINK_DLL        = $(CC) $(DSO_LDOPTS) $(ALDFLAGS) $(DLL_LDFLAGS) $(DLL_EXPORT_FLAGS) \
+                         -o $@ $(SONAMEFLAG_PREFIX)$(notdir $@) $(OBJS)
+ else # SONAMEFLAG_PREFIX
+-LINK_DLL        = $(LD) $(DSO_LDOPTS) $(ALDFLAGS) $(DLL_LDFLAGS) $(DLL_EXPORT_FLAGS) \
++LINK_DLL        = $(CC) $(DSO_LDOPTS) $(ALDFLAGS) $(DLL_LDFLAGS) $(DLL_EXPORT_FLAGS) \
+                         -o $@ $(OBJS)
+ endif # SONAMEFLAG_PREFIX
+ endif #!os2
Index: patches/patch-directory_c-sdk_config_OpenBSD_mk
===================================================================
RCS file: patches/patch-directory_c-sdk_config_OpenBSD_mk
diff -N patches/patch-directory_c-sdk_config_OpenBSD_mk
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ patches/patch-directory_c-sdk_config_OpenBSD_mk	15 Dec 2004 07:35:21 -0000
@@ -0,0 +1,33 @@
+$OpenBSD$
+--- directory/c-sdk/config/OpenBSD.mk.orig	Tue Mar 26 22:51:50 2002
++++ directory/c-sdk/config/OpenBSD.mk	Fri Sep 17 19:43:38 2004
+@@ -37,8 +37,8 @@
+ 
+ include $(MOD_DEPTH)/config/UNIX.mk
+ 
+-CC                     = gcc
+-CCC                    = g++
++CC                     = ${CC}
++CCC                    = ${CXX}
+ RANLIB                 = ranlib
+ 
+ OS_REL_CFLAGS          =
+@@ -62,17 +62,6 @@ ARCH                   = openbsd
+ DLL_SUFFIX             = so.1.0
+ 
+ DSO_CFLAGS             = -fPIC
+-DSO_LDOPTS             = -Bshareable
+-ifeq ($(OS_TEST),alpha)
+ DSO_LDOPTS             = -shared
+-endif
+-ifeq ($(OS_TEST),mips)
+-DSO_LDOPTS             = -shared
+-endif
+-ifeq ($(OS_TEST),pmax)  
+-DSO_LDOPTS             = -shared
+-endif
+ 
+-MKSHLIB                        = $(LD) $(DSO_LDOPTS)
+-
+-G++INCLUDES            = -I/usr/include/g++
++MKSHLIB                        = $(CC) $(DSO_LDOPTS)
Index: patches/patch-directory_c-sdk_config_rules_mk
===================================================================
RCS file: /cvs/ports/www/mozilla/patches/patch-directory_c-sdk_config_rules_mk,v
retrieving revision 1.1
diff -u -r1.1 patch-directory_c-sdk_config_rules_mk
--- patches/patch-directory_c-sdk_config_rules_mk	15 Feb 2004 19:44:01 -0000	1.1
+++ patches/patch-directory_c-sdk_config_rules_mk	15 Dec 2004 07:35:21 -0000
@@ -1,4 +1,4 @@
-$OpenBSD: patch-directory_c-sdk_config_rules_mk,v 1.1 2004/02/15 19:44:01 wilfried Exp $
+$OpenBSD: patch-directory_c-sdk_config_rules_mk,v 1.1 2004/02/15 19:41:58 wilfried Exp $
 --- directory/c-sdk/config/rules.mk.orig	2004-02-15 11:03:01.000000000 +0100
 +++ directory/c-sdk/config/rules.mk	2004-02-15 11:18:42.000000000 +0100
 @@ -225,7 +225,7 @@ ifdef RELEASE_HEADERS
Index: patches/patch-directory_c-sdk_configure_in
===================================================================
RCS file: patches/patch-directory_c-sdk_configure_in
diff -N patches/patch-directory_c-sdk_configure_in
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ patches/patch-directory_c-sdk_configure_in	15 Dec 2004 07:35:21 -0000
@@ -0,0 +1,26 @@
+$OpenBSD$
+--- directory/c-sdk/configure.in.orig	Tue Sep 14 22:59:40 2004
++++ directory/c-sdk/configure.in	Wed Nov 10 21:50:23 2004
+@@ -1440,6 +1440,7 @@ mips-sony-newsos*)
+     AC_DEFINE(XP_UNIX)
+     AC_DEFINE(OPENBSD)
+     AC_DEFINE(HAVE_BSD_FLOCK)
++    AC_DEFINE(HAVE_SOCKLEN_T)
+     CFLAGS="$CFLAGS -ansi -Wall"
+     CXXFLAGS="$CXXFLAGS -ansi -Wall"
+     DLL_SUFFIX=so.1.0
+@@ -1447,12 +1448,8 @@ mips-sony-newsos*)
+     MDCPUCFG_H=_openbsd.cfg
+     PR_MD_CSRCS=openbsd.c
+     USE_NSPR_THREADS=1
+-    case "$OS_TEST" in
+-    alpha|mips|pmax)
+-        DSO_LDOPTS=-shared ;;
+-    *)
+-        DSO_LDOPTS=-Bshareable ;;
+-    esac
++    DSO_LDOPTS='-shared -fPIC'
++    MKSHLIB='$(CC) $(DSO_LDOPTS) -o $@'
+     ;;
+ 
+ *-openvms*)
Index: patches/patch-gfx_idl_nsIFreeType2_idl
===================================================================
RCS file: /cvs/ports/www/mozilla/patches/patch-gfx_idl_nsIFreeType2_idl,v
retrieving revision 1.1
diff -u -r1.1 patch-gfx_idl_nsIFreeType2_idl
--- patches/patch-gfx_idl_nsIFreeType2_idl	7 Nov 2004 00:46:10 -0000	1.1
+++ patches/patch-gfx_idl_nsIFreeType2_idl	14 Dec 2004 19:40:45 -0000
@@ -1,7 +1,7 @@
-$OpenBSD: patch-gfx_idl_nsIFreeType2_idl,v 1.1 2004/11/07 00:46:10 naddy Exp $
---- gfx/idl/nsIFreeType2.idl.orig	Sun Feb 23 01:06:55 2003
-+++ gfx/idl/nsIFreeType2.idl	Sun Nov  7 00:08:54 2004
-@@ -72,10 +72,11 @@ native FT_Pointer(FT_Pointer);
+$OpenBSD: patch-gfx_idl_nsIFreeType2_idl,v 1.2 2004/11/26 18:29:15 pvalchev Exp $
+--- gfx/idl/nsIFreeType2.idl.orig	Fri Apr 16 03:09:33 2004
++++ gfx/idl/nsIFreeType2.idl	Sat Nov  6 03:43:33 2004
+@@ -76,10 +76,11 @@ native FT_Pointer(FT_Pointer);
  native FT_Sfnt_Tag(FT_Sfnt_Tag);
  native FT_Size(FT_Size);
  
@@ -14,8 +14,8 @@
 +native FTC_ImageCache(FTC_ImageCache);
  native FTC_Manager(FTC_Manager);
  
- /*
-@@ -87,7 +88,7 @@ interface nsIFreeType2 : nsISupports
+ // #ifdef MOZ_SVG
+@@ -99,7 +100,7 @@ interface nsIFreeType2 : nsISupports
  
      readonly attribute FT_Library library;
      readonly attribute FTC_Manager FTCacheManager;
@@ -24,16 +24,15 @@
  
      void    doneFace(in FT_Face face);
      void    doneFreeType(in FT_Library lib);
-@@ -103,16 +104,16 @@ interface nsIFreeType2 : nsISupports
+@@ -115,16 +116,16 @@ interface nsIFreeType2 : nsISupports
      void    outlineDecompose(in FT_Outline_p outline,
                               in const_FT_Outline_Funcs_p funcs, in voidPtr p);
      void    setCharmap(in FT_Face face, in FT_CharMap charmap);
 -    void    imageCacheLookup(in FTC_Image_Cache cache, in FTC_Image_Desc_p desc,
--                             in FT_UInt gindex, out FT_Glyph glyph);
++    void    imageCacheLookup(in FTC_ImageCache cache, in FTC_ImageType_p desc,
+                              in FT_UInt gindex, out FT_Glyph glyph);
 -    void    managerLookupSize(in FTC_Manager manager, in FTC_Font font,
 -                              out FT_Face face, out FT_Size size);
-+    void    imageCacheLookup(in FTC_ImageCache cache, in FTC_ImageType_p desc,
-+			     in FT_UInt gindex, out FT_Glyph glyph);
 +    void    managerLookupFace(in FTC_Manager manager, in FTC_FaceID face_id,
 +                              out FT_Face face);
      void    managerDone(in FTC_Manager manager);
@@ -43,6 +42,6 @@
                         out FTC_Manager manager);
 -    void    imageCacheNew(in FTC_Manager manager, out FTC_Image_Cache cache);
 +    void    imageCacheNew(in FTC_Manager manager, out FTC_ImageCache cache);
- 
-     FT_ULong getFirstChar(in FT_Face face, out FT_UInt gindex);
-     FT_ULong getNextChar(in FT_Face face, in FT_ULong charcode, out FT_UInt gindex);
+ /* #ifdef MOZ_SVG */
+     void glyphTransform(in FT_Glyph glyph, in FT_Matrix_p matrix,
+                         in FT_Vector_p delta);
Index: patches/patch-gfx_src_freetype_nsFreeType_cpp
===================================================================
RCS file: /cvs/ports/www/mozilla/patches/patch-gfx_src_freetype_nsFreeType_cpp,v
retrieving revision 1.1
diff -u -r1.1 patch-gfx_src_freetype_nsFreeType_cpp
--- patches/patch-gfx_src_freetype_nsFreeType_cpp	7 Nov 2004 00:46:10 -0000	1.1
+++ patches/patch-gfx_src_freetype_nsFreeType_cpp	14 Dec 2004 19:40:45 -0000
@@ -1,6 +1,6 @@
-$OpenBSD: patch-gfx_src_freetype_nsFreeType_cpp,v 1.1 2004/11/07 00:46:10 naddy Exp $
---- gfx/src/freetype/nsFreeType.cpp.orig	Mon Sep  8 00:20:37 2003
-+++ gfx/src/freetype/nsFreeType.cpp	Sun Nov  7 00:08:54 2004
+$OpenBSD: patch-gfx_src_freetype_nsFreeType_cpp,v 1.2 2004/11/26 18:29:15 pvalchev Exp $
+--- gfx/src/freetype/nsFreeType.cpp.orig	Sat Feb  7 16:22:30 2004
++++ gfx/src/freetype/nsFreeType.cpp	Sat Nov  6 02:13:33 2004
 @@ -110,11 +110,11 @@ FtFuncList nsFreeType2::FtFuncs [] = {
    {"FT_New_Face",             NS_FT2_OFFSET(nsFT_New_Face),             PR_TRUE},
    {"FT_Outline_Decompose",    NS_FT2_OFFSET(nsFT_Outline_Decompose),    PR_TRUE},
@@ -13,10 +13,10 @@
    {"FTC_Manager_New",         NS_FT2_OFFSET(nsFTC_Manager_New),         PR_TRUE},
 -  {"FTC_Image_Cache_New",     NS_FT2_OFFSET(nsFTC_Image_Cache_New),     PR_TRUE},
 +  {"FTC_ImageCache_New",      NS_FT2_OFFSET(nsFTC_Image_Cache_New),     PR_TRUE},
-   {"FT_Get_First_Char",       NS_FT2_OFFSET(nsFT_Get_First_Char),       PR_FALSE},
-   {"FT_Get_Next_Char",        NS_FT2_OFFSET(nsFT_Get_Next_Char),        PR_FALSE},
-   {nsnull,                    0, 0},
-@@ -276,7 +276,7 @@ nsFreeType2::SetCharmap(FT_Face face, FT
+ // #ifdef MOZ_SVG
+   {"FT_Glyph_Transform",      NS_FT2_OFFSET(nsFT_Glyph_Transform),      PR_TRUE},
+   {"FT_Get_Kerning",          NS_FT2_OFFSET(nsFT_Get_Kerning),          PR_TRUE},
+@@ -282,7 +282,7 @@ nsFreeType2::SetCharmap(FT_Face face, FT
  } 
   
  NS_IMETHODIMP
@@ -25,7 +25,7 @@
                                FT_UInt glyphID, FT_Glyph *glyph)
  { 
    // call the FreeType2 function via the function pointer
-@@ -285,11 +285,11 @@ nsFreeType2::ImageCacheLookup(FTC_Image_
+@@ -291,11 +291,11 @@ nsFreeType2::ImageCacheLookup(FTC_Image_
  } 
   
  NS_IMETHODIMP
@@ -40,7 +40,7 @@
    return error ? NS_ERROR_FAILURE : NS_OK;
  } 
   
-@@ -314,7 +314,7 @@ nsFreeType2::ManagerNew(FT_Library libra
+@@ -320,7 +320,7 @@ nsFreeType2::ManagerNew(FT_Library libra
  } 
   
  NS_IMETHODIMP
@@ -49,7 +49,7 @@
  { 
    // call the FreeType2 function via the function pointer
    FT_Error error = nsFTC_Image_Cache_New(manager, cache);
-@@ -345,7 +345,7 @@ nsFreeType2::SupportsExtFunc(PRBool *res
+@@ -389,7 +389,7 @@ nsFreeType2::SupportsExtFunc(PRBool *res
  } 
   
  NS_IMETHODIMP
Index: patches/patch-gfx_src_freetype_nsFreeType_h
===================================================================
RCS file: /cvs/ports/www/mozilla/patches/patch-gfx_src_freetype_nsFreeType_h,v
retrieving revision 1.1
diff -u -r1.1 patch-gfx_src_freetype_nsFreeType_h
--- patches/patch-gfx_src_freetype_nsFreeType_h	7 Nov 2004 00:46:10 -0000	1.1
+++ patches/patch-gfx_src_freetype_nsFreeType_h	14 Dec 2004 19:40:45 -0000
@@ -1,6 +1,6 @@
-$OpenBSD: patch-gfx_src_freetype_nsFreeType_h,v 1.1 2004/11/07 00:46:10 naddy Exp $
---- gfx/src/freetype/nsFreeType.h.orig	Wed Jun 11 20:15:22 2003
-+++ gfx/src/freetype/nsFreeType.h	Sun Nov  7 00:08:54 2004
+$OpenBSD: patch-gfx_src_freetype_nsFreeType_h,v 1.2 2004/11/26 18:29:15 pvalchev Exp $
+--- gfx/src/freetype/nsFreeType.h.orig	Fri Apr 16 23:31:42 2004
++++ gfx/src/freetype/nsFreeType.h	Sat Nov  6 02:11:14 2004
 @@ -104,13 +104,15 @@ typedef FT_Error (*FT_Outline_Decompose_
  typedef FT_Error (*FT_New_Face_t)(FT_Library, const char*, FT_Long, FT_Face*);
  typedef FT_Error (*FT_Set_Charmap_t)(FT_Face face, FT_CharMap  charmap);
@@ -16,10 +16,10 @@
                         FTC_Face_Requester, FT_Pointer, FTC_Manager*);
 -typedef FT_Error (*FTC_Image_Cache_New_t)(FTC_Manager, FTC_Image_Cache*);
 +typedef FT_Error (*FTC_Image_Cache_New_t)(FTC_Manager, FTC_ImageCache*);
- 
- typedef FT_ULong (*FT_Get_First_Char_t)(FT_Face, FT_UInt*);
- typedef FT_ULong (*FT_Get_Next_Char_t)(FT_Face, FT_ULong, FT_UInt*);
-@@ -157,7 +159,7 @@ protected:
+ // #ifdef MOZ_SVG
+ typedef FT_Error (*FT_Glyph_Transform_t)(FT_Glyph, FT_Matrix*, FT_Vector*);
+ typedef FT_Error (*FT_Get_Kerning_t)
+@@ -165,7 +167,7 @@ protected:
    FT_Outline_Decompose_t    nsFT_Outline_Decompose;
    FT_Set_Charmap_t          nsFT_Set_Charmap;
    FTC_Image_Cache_Lookup_t  nsFTC_Image_Cache_Lookup;
@@ -28,7 +28,7 @@
    FTC_Manager_Done_t        nsFTC_Manager_Done;
    FTC_Manager_New_t         nsFTC_Manager_New;
    FTC_Image_Cache_New_t     nsFTC_Image_Cache_New;
-@@ -195,7 +197,7 @@ protected:
+@@ -213,7 +215,7 @@ protected:
    PRLibrary      *mSharedLib;
    FT_Library      mFreeTypeLibrary;
    FTC_Manager     mFTCacheManager;
Index: patches/patch-gfx_src_ps_nsFontMetricsPS_cpp
===================================================================
RCS file: /cvs/ports/www/mozilla/patches/patch-gfx_src_ps_nsFontMetricsPS_cpp,v
retrieving revision 1.1
diff -u -r1.1 patch-gfx_src_ps_nsFontMetricsPS_cpp
--- patches/patch-gfx_src_ps_nsFontMetricsPS_cpp	7 Nov 2004 00:46:10 -0000	1.1
+++ patches/patch-gfx_src_ps_nsFontMetricsPS_cpp	14 Dec 2004 19:40:45 -0000
@@ -1,7 +1,7 @@
-$OpenBSD: patch-gfx_src_ps_nsFontMetricsPS_cpp,v 1.1 2004/11/07 00:46:10 naddy Exp $
---- gfx/src/ps/nsFontMetricsPS.cpp.orig	Fri Oct 24 00:43:04 2003
-+++ gfx/src/ps/nsFontMetricsPS.cpp	Sun Nov  7 00:08:54 2004
-@@ -1126,10 +1126,10 @@ nsFontPSFreeType::Init(nsITrueTypeFontCa
+$OpenBSD: patch-gfx_src_ps_nsFontMetricsPS_cpp,v 1.2 2004/11/26 18:29:15 pvalchev Exp $
+--- gfx/src/ps/nsFontMetricsPS.cpp.orig	Thu Feb  5 02:57:05 2004
++++ gfx/src/ps/nsFontMetricsPS.cpp	Sat Nov  6 02:00:00 2004
+@@ -1141,10 +1141,10 @@ nsFontPSFreeType::Init(nsITrueTypeFontCa
    
    mPixelSize = NSToIntRound(app2dev * mFont->size);
  
@@ -16,7 +16,7 @@
  
    nsresult rv;
    mFt2 = do_GetService(NS_FREETYPE2_CONTRACTID, &rv);
-@@ -1175,7 +1175,7 @@ nsFontPSFreeType::GetWidth(const PRUnich
+@@ -1190,7 +1190,7 @@ nsFontPSFreeType::GetWidth(const PRUnich
    if (!face)
      return 0;
  
@@ -25,7 +25,7 @@
    nsresult rv = mFt2->GetImageCache(&iCache);
    if (NS_FAILED(rv)) {
      NS_ERROR("Failed to get Image Cache");
-@@ -1213,8 +1213,8 @@ nsFontPSFreeType::getFTFace()
+@@ -1228,8 +1228,8 @@ nsFontPSFreeType::getFTFace()
    
    FTC_Manager cManager;
    mFt2->GetFTCacheManager(&cManager);
@@ -36,7 +36,7 @@
    NS_ASSERTION(rv==0, "failed to get face/size");
    if (rv)
      return nsnull;
-@@ -1609,16 +1609,16 @@ void nsFT2Type8Generator::GeneratePSFont
+@@ -1622,16 +1622,16 @@ void nsFT2Type8Generator::GeneratePSFont
    mEntry->GetFamilyName(fontName);
    mEntry->GetStyleName(styleName);
    
Index: patches/patch-gfx_src_ps_nsFontMetricsPS_h
===================================================================
RCS file: /cvs/ports/www/mozilla/patches/patch-gfx_src_ps_nsFontMetricsPS_h,v
retrieving revision 1.1
diff -u -r1.1 patch-gfx_src_ps_nsFontMetricsPS_h
--- patches/patch-gfx_src_ps_nsFontMetricsPS_h	7 Nov 2004 00:46:10 -0000	1.1
+++ patches/patch-gfx_src_ps_nsFontMetricsPS_h	14 Dec 2004 19:40:45 -0000
@@ -1,6 +1,6 @@
-$OpenBSD: patch-gfx_src_ps_nsFontMetricsPS_h,v 1.1 2004/11/07 00:46:10 naddy Exp $
+$OpenBSD: patch-gfx_src_ps_nsFontMetricsPS_h,v 1.2 2004/11/26 18:29:15 pvalchev Exp $
 --- gfx/src/ps/nsFontMetricsPS.h.orig	Tue Apr 22 18:25:09 2003
-+++ gfx/src/ps/nsFontMetricsPS.h	Sun Nov  7 00:08:54 2004
++++ gfx/src/ps/nsFontMetricsPS.h	Sat Nov  6 02:00:00 2004
 @@ -320,7 +320,7 @@ protected:
    nsCOMPtr<nsITrueTypeFontCatalogEntry> mFaceID;
    nsCOMPtr<nsIFreeType2> mFt2;
Index: patches/patch-gfx_src_x11shared_nsFontFreeType_cpp
===================================================================
RCS file: /cvs/ports/www/mozilla/patches/patch-gfx_src_x11shared_nsFontFreeType_cpp,v
retrieving revision 1.1
diff -u -r1.1 patch-gfx_src_x11shared_nsFontFreeType_cpp
--- patches/patch-gfx_src_x11shared_nsFontFreeType_cpp	7 Nov 2004 00:46:10 -0000	1.1
+++ patches/patch-gfx_src_x11shared_nsFontFreeType_cpp	14 Dec 2004 19:40:45 -0000
@@ -1,6 +1,6 @@
-$OpenBSD: patch-gfx_src_x11shared_nsFontFreeType_cpp,v 1.1 2004/11/07 00:46:10 naddy Exp $
---- gfx/src/x11shared/nsFontFreeType.cpp.orig	Sat May 24 00:18:07 2003
-+++ gfx/src/x11shared/nsFontFreeType.cpp	Sun Nov  7 00:08:54 2004
+$OpenBSD: patch-gfx_src_x11shared_nsFontFreeType_cpp,v 1.2 2004/11/26 18:29:15 pvalchev Exp $
+--- gfx/src/x11shared/nsFontFreeType.cpp.orig	Thu Dec 25 09:24:52 2003
++++ gfx/src/x11shared/nsFontFreeType.cpp	Sat Nov  6 02:00:00 2004
 @@ -177,7 +177,7 @@ nsFreeTypeFont::getFTFace()
    FTC_Manager mgr;
    nsresult rv;
@@ -63,7 +63,7 @@
    mFt2->GetImageCache(&icache);
    if (!icache)
      return 0;
-@@ -725,7 +717,7 @@ nsFreeTypeXImage::DrawString(nsRendering
+@@ -723,7 +715,7 @@ nsFreeTypeXImage::DrawString(nsRendering
      if (y%4==0) (*blendPixelFunc)(sub_image, y, ascent-1, black, 255/2);
  #endif
  
Index: patches/patch-gfx_src_x11shared_nsFontFreeType_h
===================================================================
RCS file: /cvs/ports/www/mozilla/patches/patch-gfx_src_x11shared_nsFontFreeType_h,v
retrieving revision 1.1
diff -u -r1.1 patch-gfx_src_x11shared_nsFontFreeType_h
--- patches/patch-gfx_src_x11shared_nsFontFreeType_h	7 Nov 2004 00:46:10 -0000	1.1
+++ patches/patch-gfx_src_x11shared_nsFontFreeType_h	14 Dec 2004 19:40:45 -0000
@@ -1,6 +1,6 @@
-$OpenBSD: patch-gfx_src_x11shared_nsFontFreeType_h,v 1.1 2004/11/07 00:46:10 naddy Exp $
+$OpenBSD: patch-gfx_src_x11shared_nsFontFreeType_h,v 1.2 2004/11/26 18:29:15 pvalchev Exp $
 --- gfx/src/x11shared/nsFontFreeType.h.orig	Tue Apr 22 18:25:13 2003
-+++ gfx/src/x11shared/nsFontFreeType.h	Sun Nov  7 00:08:54 2004
++++ gfx/src/x11shared/nsFontFreeType.h	Sat Nov  6 02:00:00 2004
 @@ -110,7 +110,7 @@ protected:
    XImage *GetXImage(PRUint32 width, PRUint32 height);
    nsITrueTypeFontCatalogEntry *mFaceID;
Index: patches/patch-modules_plugin_base_public_nptypes_h
===================================================================
RCS file: patches/patch-modules_plugin_base_public_nptypes_h
diff -N patches/patch-modules_plugin_base_public_nptypes_h
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ patches/patch-modules_plugin_base_public_nptypes_h	14 Dec 2004 18:30:42 -0000
@@ -0,0 +1,13 @@
+$OpenBSD: patch-modules_plugin_base_public_nptypes_h,v 1.1 2004/11/26 18:29:15 pvalchev Exp $
+--- modules/plugin/base/public/nptypes.h.orig	Wed Sep  1 18:59:55 2004
++++ modules/plugin/base/public/nptypes.h	Fri Sep 17 18:43:21 2004
+@@ -78,7 +78,9 @@
+     typedef int bool;
+   #endif
+   #else /* OPENBSD is defined, so use its bool */
++  #if !defined(__cplusplus)
+     #include <stdbool.h>
++  #endif
+   #endif
+   #else
+   /*
Index: patches/patch-nsprpub_configure_in
===================================================================
RCS file: /cvs/ports/www/mozilla/patches/patch-nsprpub_configure_in,v
retrieving revision 1.7
diff -u -r1.7 patch-nsprpub_configure_in
--- patches/patch-nsprpub_configure_in	18 Jan 2004 10:49:33 -0000	1.7
+++ patches/patch-nsprpub_configure_in	14 Dec 2004 18:30:52 -0000
@@ -1,36 +1,12 @@
-$OpenBSD: patch-nsprpub_configure_in,v 1.7 2004/01/18 10:49:33 wilfried Exp $
---- nsprpub/configure.in.orig	2003-12-15 20:58:56.000000000 +0100
-+++ nsprpub/configure.in	2004-01-17 22:46:21.000000000 +0100
-@@ -1482,6 +1482,7 @@ mips-sony-newsos*)
-     AC_DEFINE(XP_UNIX)
+$OpenBSD: patch-nsprpub_configure_in,v 1.2 2004/11/26 18:29:15 pvalchev Exp $
+--- nsprpub/configure.in.orig	Fri Oct 22 16:48:52 2004
++++ nsprpub/configure.in	Fri Oct 22 16:47:30 2004
+@@ -1493,6 +1493,8 @@ mips-sony-newsos*)
      AC_DEFINE(OPENBSD)
      AC_DEFINE(HAVE_BSD_FLOCK)
-+    AC_DEFINE(HAVE_SOCKLEN_T)
+     AC_DEFINE(HAVE_SOCKLEN_T)
++    AC_DEFINE(_PR_HAVE_GETPROTO_R)
++    AC_DEFINE(_PR_HAVE_GETPROTO_R_INT)
      CFLAGS="$CFLAGS -ansi -Wall"
      CXXFLAGS="$CXXFLAGS -ansi -Wall"
      DLL_SUFFIX=so.1.0
-@@ -1489,12 +1490,8 @@ mips-sony-newsos*)
-     MDCPUCFG_H=_openbsd.cfg
-     PR_MD_CSRCS=openbsd.c
-     USE_NSPR_THREADS=1
--    case "$OS_TEST" in
--    alpha|mips|pmax)
--        DSO_LDOPTS=-shared ;;
--    *)
--        DSO_LDOPTS=-Bshareable ;;
--    esac
-+    DSO_LDOPTS='-shared -fPIC'
-+    MKSHLIB='$(CC) $(DSO_LDOPTS) -o $@'
-     ;;
- 
- *-openvms*)
-@@ -2186,7 +2183,8 @@ if test -n "$USE_PTHREADS"; then
- 	    AC_DEFINE(_THREAD_SAFE)
- 	    dnl -pthread links in -lc_r, so don't specify it explicitly.
- 	    if test "$ac_cv_have_dash_pthread" = "yes"; then
--	        _PTHREAD_LDFLAGS=
-+	        _PTHREAD_LDFLAGS=-pthread
-+	        LDFLAGS="${_PTHREAD_LDFLAGS} ${LDFLAGS}"
- 	    fi
- 	    ;;
-     *-linux*)
Index: pkg/DEINSTALL
===================================================================
RCS file: /cvs/ports/www/mozilla/pkg/DEINSTALL,v
retrieving revision 1.2
diff -u -r1.2 DEINSTALL
--- pkg/DEINSTALL	1 Jul 2003 08:49:46 -0000	1.2
+++ pkg/DEINSTALL	14 Dec 2004 18:32:51 -0000
@@ -21,7 +21,15 @@
 #
 case $2 in
     DEINSTALL)
-	cd ${MOZ} && rm -rf components/compreg.dat components/xpti.dat chrome/chrome.rdf chrome/overlayinfo
+	cd ${MOZ}/components
+	rm -f compreg.dat xpti.dat
+	cd ${MOZ}/chrome
+	rm -rf chrome.rdf overlayinfo
+	cd ${MOZ}
+	rm -f .autoreg components.ini install.log registry
+	rm -f extensions/Extensions.rdf extensions/installed-extensions-processed.txt
+	rm -rf extensions/{*
+	rmdir extensions
 	;;
     *)
 	echo "usage: $0 distname DEINSTALL" >&2
Index: pkg/INSTALL
===================================================================
RCS file: /cvs/ports/www/mozilla/pkg/INSTALL,v
retrieving revision 1.3
diff -u -r1.3 INSTALL
--- pkg/INSTALL	15 Feb 2004 19:44:01 -0000	1.3
+++ pkg/INSTALL	14 Dec 2004 18:33:15 -0000
@@ -29,6 +29,13 @@
 	env HOME=/tmp LD_LIBRARY_PATH=${MOZ} ./regxpcom
 	env HOME=/tmp LD_LIBRARY_PATH=${MOZ} ./regchrome
 	rm -rf /tmp/.mozilla
+
+	mkdir -m 777 -p extensions
+	touch .autoreg components.ini install.log registry
+	chmod 666 .autoreg components.ini install.log registry
+
+	cd ${MOZ}/chrome
+	chmod 666 installed-chrome.txt 
 	;;
     *)
 	echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
Index: pkg/PFRAG.shared
===================================================================
RCS file: /cvs/ports/www/mozilla/pkg/PFRAG.shared,v
retrieving revision 1.5
diff -u -r1.5 PFRAG.shared
--- pkg/PFRAG.shared	17 Oct 2004 22:25:52 -0000	1.5
+++ pkg/PFRAG.shared	15 Dec 2004 10:15:33 -0000
@@ -27,7 +27,6 @@
 @lib mozilla/components/libipcdc.so.1.0
 @lib mozilla/components/libjar50.so.1.0
 @lib mozilla/components/libjsd.so.1.0
-_(_at_)_lib mozilla/components/libjsdom.so.1.0
 @lib mozilla/components/liblocalmail.so.1.0
 @lib mozilla/components/libmailnews.so.1.0
 @lib mozilla/components/libmailview.so.1.0
@@ -35,6 +34,7 @@
 @lib mozilla/components/libmimeemitter.so.1.0
 @lib mozilla/components/libmork.so.1.0
 @lib mozilla/components/libmozfind.so.1.0
+_(_at_)_lib mozilla/components/libmozldap.so.1.0
 @lib mozilla/components/libmsgcompose.so.1.0
 @lib mozilla/components/libmsgdb.so.1.0
 @lib mozilla/components/libmsgimap.so.1.0
@@ -55,6 +55,7 @@
 @lib mozilla/components/libprofile.so.1.0
 @lib mozilla/components/librdf.so.1.0
 @lib mozilla/components/libspellchecker.so.1.0
+_(_at_)_lib mozilla/components/libsroaming.so.1.0
 @lib mozilla/components/libtransformiix.so.1.0
 @lib mozilla/components/libtxmgr.so.1.0
 @lib mozilla/components/libtypeaheadfind.so.1.0
@@ -73,11 +74,13 @@
 @lib mozilla/components/libxpinstall.so.1.0
 @lib mozilla/components/libxremote_client.so.1.0
 @lib mozilla/components/libxremoteservice.so.1.0
+_(_at_)_lib mozilla/libgfxpsshar.so.1.0
 @lib mozilla/libgkgfx.so.1.0
 @lib mozilla/libgtkembedmoz.so.1.0
 @lib mozilla/libgtksuperwin.so.1.0
 @lib mozilla/libgtkxtbin.so.1.0
 @lib mozilla/libjsj.so.1.0
+_(_at_)_lib mozilla/libldap50.so.1.0
 @lib mozilla/libmozjs.so.1.0
 @lib mozilla/libmsgbaseutil.so.1.0
 @lib mozilla/libnspr4.so.1.0
@@ -85,10 +88,12 @@
 @lib mozilla/libnssckbi.so.1.0
 @lib mozilla/libplc4.so.1.0
 @lib mozilla/libplds4.so.1.0
+_(_at_)_lib mozilla/libprldap50.so.1.0
 @lib mozilla/libsmime3.so.1.0
 @lib mozilla/libsoftokn3.so.1.0
 @lib mozilla/libssl3.so.1.0
 @lib mozilla/libxlibrgb.so.1.0
 @lib mozilla/libxpcom.so.1.0
 @lib mozilla/libxpcom_compat.so.1.0
+_(_at_)_lib mozilla/libxpcom_core.so.1.0
 @lib mozilla/libxpistub.so.1.0
Index: pkg/PFRAG.shared-devel
===================================================================
RCS file: /cvs/ports/www/mozilla/pkg/PFRAG.shared-devel,v
retrieving revision 1.4
diff -u -r1.4 PFRAG.shared-devel
--- pkg/PFRAG.shared-devel	17 Oct 2004 22:25:52 -0000	1.4
+++ pkg/PFRAG.shared-devel	15 Dec 2004 10:15:49 -0000
@@ -27,7 +27,6 @@
 @comment @lib mozilla/lib/components/libipcdc.so.1.0
 @comment @lib mozilla/lib/components/libjar50.so.1.0
 @comment @lib mozilla/lib/components/libjsd.so.1.0
-_(_at_)_comment @lib mozilla/lib/components/libjsdom.so.1.0
 @comment @lib mozilla/lib/components/liblocalmail.so.1.0
 @comment @lib mozilla/lib/components/libmailnews.so.1.0
 @comment @lib mozilla/lib/components/libmailview.so.1.0
@@ -35,6 +34,7 @@
 @comment @lib mozilla/lib/components/libmimeemitter.so.1.0
 @comment @lib mozilla/lib/components/libmork.so.1.0
 @comment @lib mozilla/lib/components/libmozfind.so.1.0
+_(_at_)_comment @lib mozilla/lib/components/libmozldap.so.1.0
 @comment @lib mozilla/lib/components/libmsgcompose.so.1.0
 @comment @lib mozilla/lib/components/libmsgdb.so.1.0
 @comment @lib mozilla/lib/components/libmsgimap.so.1.0
@@ -55,6 +55,7 @@
 @comment @lib mozilla/lib/components/libprofile.so.1.0
 @comment @lib mozilla/lib/components/librdf.so.1.0
 @comment @lib mozilla/lib/components/libspellchecker.so.1.0
+_(_at_)_comment @lib mozilla/lib/components/libsroaming.so.1.0
 @comment @lib mozilla/lib/components/libtransformiix.so.1.0
 @comment @lib mozilla/lib/components/libtxmgr.so.1.0
 @comment @lib mozilla/lib/components/libtypeaheadfind.so.1.0
@@ -74,11 +75,13 @@
 @comment @lib mozilla/lib/components/libxremote_client.so.1.0
 @comment @lib mozilla/lib/components/libxremoteservice.so.1.0
 @lib mozilla/lib/libfort.so.1.0
+_(_at_)_lib mozilla/lib/libgfxpsshar.so.1.0
 @lib mozilla/lib/libgkgfx.so.1.0
 @lib mozilla/lib/libgtkembedmoz.so.1.0
 @lib mozilla/lib/libgtksuperwin.so.1.0
 @lib mozilla/lib/libgtkxtbin.so.1.0
 @lib mozilla/lib/libjsj.so.1.0
+_(_at_)_lib mozilla/lib/libldap50.so.1.0
 @lib mozilla/lib/libmozjs.so.1.0
 @lib mozilla/lib/libmsgbaseutil.so.1.0
 @lib mozilla/lib/libnspr4.so.1.0
@@ -86,6 +89,7 @@
 @lib mozilla/lib/libnssckbi.so.1.0
 @lib mozilla/lib/libplc4.so.1.0
 @lib mozilla/lib/libplds4.so.1.0
+_(_at_)_lib mozilla/lib/libprldap50.so.1.0
 @lib mozilla/lib/libsmime3.so.1.0
 @lib mozilla/lib/libsoftokn3.so.1.0
 @lib mozilla/lib/libssl3.so.1.0
@@ -93,4 +97,5 @@
 @lib mozilla/lib/libxlibrgb.so.1.0
 @lib mozilla/lib/libxpcom.so.1.0
 @lib mozilla/lib/libxpcom_compat.so.1.0
+_(_at_)_lib mozilla/lib/libxpcom_core.so.1.0
 @lib mozilla/lib/libxpistub.so.1.0
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/www/mozilla/pkg/PLIST,v
retrieving revision 1.27
diff -u -r1.27 PLIST
--- pkg/PLIST	17 Oct 2004 22:25:52 -0000	1.27
+++ pkg/PLIST	15 Dec 2004 10:17:49 -0000
@@ -21,7 +21,7 @@
 mozilla/chrome/chatzilla/content/chatzilla/lib/
 mozilla/chrome/chatzilla/content/chatzilla/lib/js/
 mozilla/chrome/chatzilla/content/chatzilla/lib/xul/
-mozilla/chrome/chatzilla/content/chatzilla/prefpanel/
+mozilla/chrome/chatzilla/content/chatzilla/sm/
 mozilla/chrome/chatzilla/locale/
 mozilla/chrome/chatzilla/locale/en-US/
 mozilla/chrome/chatzilla/locale/en-US/chatzilla/
@@ -41,6 +41,7 @@
 mozilla/chrome/classic/skin/classic/communicator/cookie/
 mozilla/chrome/classic/skin/classic/communicator/directory/
 mozilla/chrome/classic/skin/classic/communicator/icons/
+mozilla/chrome/classic/skin/classic/communicator/icons/smileys/
 mozilla/chrome/classic/skin/classic/communicator/profile/
 mozilla/chrome/classic/skin/classic/communicator/related/
 mozilla/chrome/classic/skin/classic/communicator/search/
@@ -97,6 +98,7 @@
 mozilla/chrome/comm/content/editor/
 mozilla/chrome/comm/content/editor-region/
 mozilla/chrome/comm/content/editor/images/
+mozilla/chrome/comm/content/mozldap/
 mozilla/chrome/comm/content/navigator/
 mozilla/chrome/comm/content/navigator-platform/
 mozilla/chrome/comm/content/navigator-region/
@@ -146,10 +148,12 @@
 mozilla/chrome/en-US/locale/en-US/help/
 mozilla/chrome/en-US/locale/en-US/help/images/
 mozilla/chrome/en-US/locale/en-US/messenger/
+mozilla/chrome/en-US/locale/en-US/messenger-mapi/
 mozilla/chrome/en-US/locale/en-US/messenger-mdn/
 mozilla/chrome/en-US/locale/en-US/messenger-smime/
 mozilla/chrome/en-US/locale/en-US/messenger/addressbook/
 mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/
+mozilla/chrome/en-US/locale/en-US/mozldap/
 mozilla/chrome/en-US/locale/en-US/navigator/
 mozilla/chrome/en-US/locale/en-US/necko/
 mozilla/chrome/en-US/locale/en-US/p3p/
@@ -179,7 +183,6 @@
 mozilla/chrome/en-win/locale/en-US/communicator-platform/
 mozilla/chrome/en-win/locale/en-US/communicator-platform/pref/
 mozilla/chrome/en-win/locale/en-US/global-platform/
-mozilla/chrome/en-win/locale/en-US/messenger-mapi/
 mozilla/chrome/en-win/locale/en-US/navigator-platform/
 mozilla/chrome/help/
 mozilla/chrome/help.jar
@@ -283,6 +286,8 @@
 mozilla/chrome/modern/
 mozilla/chrome/modern.jar
 mozilla/chrome/modern/skin/
+mozilla/chrome/modern/skin/classic/
+mozilla/chrome/modern/skin/classic/messenger/
 mozilla/chrome/modern/skin/modern/
 mozilla/chrome/modern/skin/modern/communicator/
 mozilla/chrome/modern/skin/modern/communicator/alerts/
@@ -292,6 +297,7 @@
 mozilla/chrome/modern/skin/modern/communicator/directory/
 mozilla/chrome/modern/skin/modern/communicator/help/
 mozilla/chrome/modern/skin/modern/communicator/icons/
+mozilla/chrome/modern/skin/modern/communicator/icons/smileys/
 mozilla/chrome/modern/skin/modern/communicator/profile/
 mozilla/chrome/modern/skin/modern/communicator/related/
 mozilla/chrome/modern/skin/modern/communicator/search/
@@ -336,6 +342,20 @@
 mozilla/chrome/pippki.jar
 mozilla/chrome/pippki/content/
 mozilla/chrome/pippki/content/pippki/
+mozilla/chrome/sroaming/
+mozilla/chrome/sroaming.jar
+mozilla/chrome/sroaming/content/
+mozilla/chrome/sroaming/content/sroaming/
+mozilla/chrome/sroaming/content/sroaming/prefs/
+mozilla/chrome/sroaming/content/sroaming/transfer/
+mozilla/chrome/sroaming/locale/
+mozilla/chrome/sroaming/locale/en-US/
+mozilla/chrome/sroaming/locale/en-US/sroaming/
+mozilla/chrome/sroaming/skin/
+mozilla/chrome/sroaming/skin/classic/
+mozilla/chrome/sroaming/skin/classic/sroaming/
+mozilla/chrome/sroaming/skin/modern/
+mozilla/chrome/sroaming/skin/modern/sroaming/
 mozilla/chrome/toolkit/
 mozilla/chrome/toolkit.jar
 mozilla/chrome/toolkit/content/
@@ -358,7 +378,9 @@
 mozilla/components/
 mozilla/components/accessibility.xpt
 mozilla/components/addrbook.xpt
+mozilla/components/alerts.xpt
 mozilla/components/appshell.xpt
+mozilla/components/appstartup.xpt
 mozilla/components/autocomplete.xpt
 mozilla/components/autoconfig.xpt
 mozilla/components/bookmarks.xpt
@@ -373,6 +395,7 @@
 mozilla/components/content_htmldoc.xpt
 mozilla/components/content_xmldoc.xpt
 mozilla/components/content_xslt.xpt
+mozilla/components/content_xtf.xpt
 mozilla/components/cookie.xpt
 mozilla/components/directory.xpt
 mozilla/components/docshell.xpt
@@ -382,6 +405,7 @@
 mozilla/components/dom_css.xpt
 mozilla/components/dom_events.xpt
 mozilla/components/dom_html.xpt
+mozilla/components/dom_loadsave.xpt
 mozilla/components/dom_range.xpt
 mozilla/components/dom_stylesheets.xpt
 mozilla/components/dom_traversal.xpt
@@ -396,7 +420,6 @@
 mozilla/components/filepicker.xpt
 mozilla/components/find.xpt
 mozilla/components/gfx.xpt
-mozilla/components/helperAppDlg.xpt
 mozilla/components/history.xpt
 mozilla/components/htmlparser.xpt
 mozilla/components/imglib2.xpt
@@ -406,6 +429,9 @@
 mozilla/components/inspector.xpt
 mozilla/components/intl.xpt
 mozilla/components/ipcd.xpt
+mozilla/components/ipcd_dconnect.xpt
+mozilla/components/ipcd_lock.xpt
+mozilla/components/ipcd_transmngr.xpt
 mozilla/components/jar.xpt
 mozilla/components/jsconsole-clhandler.js
 mozilla/components/jsconsole.xpt
@@ -423,6 +449,7 @@
 mozilla/components/mimetype.xpt
 mozilla/components/mozbrwsr.xpt
 mozilla/components/mozfind.xpt
+mozilla/components/mozldap.xpt
 mozilla/components/msgbase.xpt
 mozilla/components/msgcompose.xpt
 mozilla/components/msgdb.xpt
@@ -443,18 +470,19 @@
 mozilla/components/necko_file.xpt
 mozilla/components/necko_ftp.xpt
 mozilla/components/necko_http.xpt
-mozilla/components/necko_jar.xpt
 mozilla/components/necko_res.xpt
 mozilla/components/necko_socket.xpt
 mozilla/components/necko_strconv.xpt
 mozilla/components/necko_viewsource.xpt
 mozilla/components/nsCloseAllWindows.js
+mozilla/components/nsComposerCmdLineHandler.js
 mozilla/components/nsDictionary.js
 mozilla/components/nsDownloadProgressListener.js
 mozilla/components/nsFilePicker.js
 mozilla/components/nsHelperAppDlg.js
 mozilla/components/nsInterfaceInfoToIDL.js
 mozilla/components/nsKillAll.js
+mozilla/components/nsLDAPPrefsService.js
 mozilla/components/nsProgressDialog.js
 mozilla/components/nsProxyAutoConfig.js
 mozilla/components/nsResetPref.js
@@ -486,12 +514,9 @@
 mozilla/components/txmgr.xpt
 mozilla/components/txtsvc.xpt
 mozilla/components/typeaheadfind.xpt
-mozilla/components/ucnative.xpt
 mozilla/components/uconv.xpt
 mozilla/components/unicharutil.xpt
 mozilla/components/uriloader.xpt
-mozilla/components/urlbarhistory.xpt
-mozilla/components/util.xpt
 mozilla/components/venkman-service.js
 mozilla/components/wallet.xpt
 mozilla/components/walleteditor.xpt
@@ -530,16 +555,12 @@
 mozilla/defaults/messenger/US/mailViews.dat
 mozilla/defaults/messenger/mailViews.dat
 mozilla/defaults/pref/
-mozilla/defaults/pref/all.js
-mozilla/defaults/pref/editor.js
+mozilla/defaults/pref/browser-prefs.js
+mozilla/defaults/pref/composer.js
 mozilla/defaults/pref/inspector.js
 mozilla/defaults/pref/mailnews.js
 mozilla/defaults/pref/mdn.js
-mozilla/defaults/pref/non-shared.txt
-mozilla/defaults/pref/security-prefs.js
 mozilla/defaults/pref/smime.js
-mozilla/defaults/pref/unix.js
-mozilla/defaults/pref/xpinstall.js
 mozilla/defaults/profile/
 mozilla/defaults/profile/US/
 mozilla/defaults/profile/US/bookmarks.html
@@ -566,6 +587,13 @@
 mozilla/defaults/wallet/SchemaStrings.tbl
 mozilla/defaults/wallet/StateSchema.tbl
 mozilla/defaults/wallet/VcardSchema.tbl
+mozilla/greprefs/
+mozilla/greprefs/all.js
+mozilla/greprefs/non-shared.txt
+mozilla/greprefs/security-prefs.js
+mozilla/greprefs/xpinstall.js
+mozilla/mozicon16.xpm
+mozilla/mozicon50.xpm
 mozilla/mozilla-bin
 mozilla/mozilla-config
 mozilla/regchrome
@@ -577,7 +605,6 @@
 mozilla/res/bloatcycle.html
 mozilla/res/broken-image.gif
 mozilla/res/builtin/
-mozilla/res/builtin/htmlBindings.xml
 mozilla/res/builtin/platformHTMLBindings.xml
 mozilla/res/charsetData.properties
 mozilla/res/charsetalias.properties
@@ -593,7 +620,6 @@
 mozilla/res/entityTables/mathml20.properties
 mozilla/res/entityTables/transliterate.properties
 mozilla/res/fonts/
-mozilla/res/fonts/fontEncoding.properties
 mozilla/res/fonts/mathfont.properties
 mozilla/res/fonts/mathfontCMEX10.properties
 mozilla/res/fonts/mathfontCMSY10.properties
@@ -759,23 +785,9 @@
 mozilla/res/viewsource.css
 mozilla/run-mozilla.sh
 mozilla/searchplugins/
-mozilla/searchplugins/bugzilla.gif
-mozilla/searchplugins/bugzilla.src
 mozilla/searchplugins/dmoz.gif
 mozilla/searchplugins/dmoz.src
 mozilla/searchplugins/google.gif
 mozilla/searchplugins/google.src
 mozilla/searchplugins/jeeves.gif
 mozilla/searchplugins/jeeves.src
-mozilla/searchplugins/lxrmozilla.gif
-mozilla/searchplugins/lxrmozilla.src
-mozilla/searchplugins/mozilla.gif
-mozilla/searchplugins/mozilla.src
-share/applications/
-share/applications/mozilla-compose.desktop
-share/applications/mozilla-mail.desktop
-share/applications/mozilla.desktop
-share/pixmaps/
-share/pixmaps/mozilla-compose-icon.gif
-share/pixmaps/mozilla-icon.png
-share/pixmaps/mozilla-mail-icon.gif
Index: pkg/PLIST-devel
===================================================================
RCS file: /cvs/ports/www/mozilla/pkg/PLIST-devel,v
retrieving revision 1.8
diff -u -r1.8 PLIST-devel
--- pkg/PLIST-devel	17 Oct 2004 22:25:52 -0000	1.8
+++ pkg/PLIST-devel	15 Dec 2004 10:17:03 -0000
@@ -23,12 +23,14 @@
 mozilla/include/accessibility/nsIAccessibleProvider.h
 mozilla/include/accessibility/nsIAccessibleRetrieval.h
 mozilla/include/accessibility/nsIAccessibleSelectable.h
+mozilla/include/accessibility/nsIAccessibleTreeCache.h
 mozilla/include/accessibility/nsPIAccessNode.h
 mozilla/include/accessibility/nsPIAccessible.h
 mozilla/include/accessibility/nsPIAccessibleDocument.h
 mozilla/include/accessibility/nsRootAccessible.h
 mozilla/include/accessibility/nsRootAccessibleWrap.h
 mozilla/include/accessibility/nsTextAccessibleWrap.h
+mozilla/include/accessibility/nsXULTabAccessibleWrap.h
 mozilla/include/addrbook/
 mozilla/include/addrbook/nsAbAddressCollecter.h
 mozilla/include/addrbook/nsAbAutoCompleteSession.h
@@ -42,6 +44,16 @@
 mozilla/include/addrbook/nsAbDirectoryQuery.h
 mozilla/include/addrbook/nsAbDirectoryQueryProxy.h
 mozilla/include/addrbook/nsAbDirectoryRDFResource.h
+mozilla/include/addrbook/nsAbLDAPAutoCompFormatter.h
+mozilla/include/addrbook/nsAbLDAPCard.h
+mozilla/include/addrbook/nsAbLDAPChangeLogData.h
+mozilla/include/addrbook/nsAbLDAPChangeLogQuery.h
+mozilla/include/addrbook/nsAbLDAPDirFactory.h
+mozilla/include/addrbook/nsAbLDAPDirectory.h
+mozilla/include/addrbook/nsAbLDAPDirectoryQuery.h
+mozilla/include/addrbook/nsAbLDAPReplicationData.h
+mozilla/include/addrbook/nsAbLDAPReplicationQuery.h
+mozilla/include/addrbook/nsAbLDAPReplicationService.h
 mozilla/include/addrbook/nsAbMDBCard.h
 mozilla/include/addrbook/nsAbMDBCardProperty.h
 mozilla/include/addrbook/nsAbMDBDirFactory.h
@@ -67,6 +79,10 @@
 mozilla/include/addrbook/nsIAbDirectoryQuery.h
 mozilla/include/addrbook/nsIAbDirectoryQueryProxy.h
 mozilla/include/addrbook/nsIAbDirectorySearch.h
+mozilla/include/addrbook/nsIAbLDAPAutoCompFormatter.h
+mozilla/include/addrbook/nsIAbLDAPReplicationData.h
+mozilla/include/addrbook/nsIAbLDAPReplicationQuery.h
+mozilla/include/addrbook/nsIAbLDAPReplicationService.h
 mozilla/include/addrbook/nsIAbListener.h
 mozilla/include/addrbook/nsIAbMDBCard.h
 mozilla/include/addrbook/nsIAbMDBDirectory.h
@@ -78,6 +94,7 @@
 mozilla/include/addrbook/nsIAddrDBListener.h
 mozilla/include/addrbook/nsIAddrDatabase.h
 mozilla/include/addrbook/nsIAddressBook.h
+mozilla/include/addrbook/nsILDAPPrefsService.h
 mozilla/include/addrbook/nsIMsgVCardService.h
 mozilla/include/addrbook/nsMsgVCardService.h
 mozilla/include/addrbook/nsVCard.h
@@ -85,31 +102,35 @@
 mozilla/include/appcomps/
 mozilla/include/appcomps/nsCharsetMenu.h
 mozilla/include/appcomps/nsFontPackageHandler.h
+mozilla/include/appcomps/nsIAlertsService.h
+mozilla/include/appcomps/nsIAppStartup.h
 mozilla/include/appcomps/nsIAutoCompleteListener.h
 mozilla/include/appcomps/nsIAutoCompleteResults.h
 mozilla/include/appcomps/nsIAutoCompleteSession.h
 mozilla/include/appcomps/nsIBookmarksService.h
+mozilla/include/appcomps/nsICloseAllWindows.h
+mozilla/include/appcomps/nsICmdLineHandler.h
+mozilla/include/appcomps/nsICmdLineService.h
 mozilla/include/appcomps/nsIFindService.h
 mozilla/include/appcomps/nsIHTTPIndex.h
+mozilla/include/appcomps/nsILDAPAutoCompFormatter.h
+mozilla/include/appcomps/nsILDAPAutoCompleteSession.h
+mozilla/include/appcomps/nsINativeAppSupport.h
 mozilla/include/appcomps/nsIRelatedLinksHandler.h
 mozilla/include/appcomps/nsISearchContext.h
 mozilla/include/appcomps/nsISearchService.h
-mozilla/include/appcomps/nsIUrlbarHistory.h
+mozilla/include/appcomps/nsISplashScreen.h
+mozilla/include/appcomps/nsIUserInfo.h
 mozilla/include/appcomps/nsIWindowDataSource.h
+mozilla/include/appcomps/nsXPFEComponentsCID.h
 mozilla/include/appshell/
-mozilla/include/appshell/nsAppShellCIDs.h
+mozilla/include/appshell/nsAppShellCID.h
 mozilla/include/appshell/nsIAppShellService.h
-mozilla/include/appshell/nsICloseAllWindows.h
-mozilla/include/appshell/nsICmdLineHandler.h
-mozilla/include/appshell/nsICmdLineService.h
-mozilla/include/appshell/nsINativeAppSupport.h
 mozilla/include/appshell/nsIPopupWindowManager.h
-mozilla/include/appshell/nsISplashScreen.h
-mozilla/include/appshell/nsITimingService.h
-mozilla/include/appshell/nsIUserInfo.h
 mozilla/include/appshell/nsIWebShellWindow.h
 mozilla/include/appshell/nsIWindowMediator.h
 mozilla/include/appshell/nsIWindowMediatorListener.h
+mozilla/include/appshell/nsIXULBrowserWindow.h
 mozilla/include/appshell/nsIXULWindow.h
 mozilla/include/autoconfig/
 mozilla/include/autoconfig/nsIAutoConfig.h
@@ -120,7 +141,6 @@
 mozilla/include/bayesflt/nsBayesianFilterCID.h
 mozilla/include/browser/
 mozilla/include/browser/nsIBrowserInstance.h
-mozilla/include/browser/nsIXULBrowserWindow.h
 mozilla/include/caps/
 mozilla/include/caps/nsIPrincipal.h
 mozilla/include/caps/nsIScriptSecurityManager.h
@@ -143,7 +163,7 @@
 mozilla/include/chardet/nsMetaCharsetCID.h
 mozilla/include/chardet/nsXMLEncodingCID.h
 mozilla/include/chrome/
-mozilla/include/chrome/nsIChromeRegistry.h
+mozilla/include/chrome/nsIChromeRegistrySea.h
 mozilla/include/commandhandler/
 mozilla/include/commandhandler/nsICommandManager.h
 mozilla/include/commandhandler/nsICommandParams.h
@@ -154,6 +174,7 @@
 mozilla/include/composer/
 mozilla/include/composer/nsIEditingSession.h
 mozilla/include/content/
+mozilla/include/content/mozFlushType.h
 mozilla/include/content/mozISanitizingSerializer.h
 mozilla/include/content/nsAtomListUtils.h
 mozilla/include/content/nsBidiUtils.h
@@ -172,22 +193,24 @@
 mozilla/include/content/nsCSSValue.h
 mozilla/include/content/nsChangeHint.h
 mozilla/include/content/nsContentCID.h
+mozilla/include/content/nsContentCreatorFunctions.h
 mozilla/include/content/nsContentErrors.h
 mozilla/include/content/nsContentPolicyUtils.h
 mozilla/include/content/nsContentUtils.h
+mozilla/include/content/nsCopySupport.h
 mozilla/include/content/nsDOMCSSDeclaration.h
+mozilla/include/content/nsFrameManager.h
+mozilla/include/content/nsFrameManagerBase.h
 mozilla/include/content/nsHTMLAtomList.h
 mozilla/include/content/nsHTMLAtoms.h
 mozilla/include/content/nsHTMLValue.h
-mozilla/include/content/nsIAnonymousContent.h
 mozilla/include/content/nsIAttribute.h
-mozilla/include/content/nsIAttributeContent.h
 mozilla/include/content/nsIBindingManager.h
+mozilla/include/content/nsICSSDeclaration.h
 mozilla/include/content/nsICSSGroupRule.h
 mozilla/include/content/nsICSSImportRule.h
 mozilla/include/content/nsICSSLoader.h
 mozilla/include/content/nsICSSLoaderObserver.h
-mozilla/include/content/nsICSSMediaRule.h
 mozilla/include/content/nsICSSNameSpaceRule.h
 mozilla/include/content/nsICSSOMFactory.h
 mozilla/include/content/nsICSSParser.h
@@ -195,8 +218,8 @@
 mozilla/include/content/nsICSSRule.h
 mozilla/include/content/nsICSSStyleRule.h
 mozilla/include/content/nsICSSStyleRuleDOMWrapper.h
-mozilla/include/content/nsICSSStyleRuleProcessor.h
 mozilla/include/content/nsICSSStyleSheet.h
+mozilla/include/content/nsIChromeRegistry.h
 mozilla/include/content/nsIComputedDOMStyle.h
 mozilla/include/content/nsIContent.h
 mozilla/include/content/nsIContentIterator.h
@@ -209,7 +232,6 @@
 mozilla/include/content/nsIDocumentTransformer.h
 mozilla/include/content/nsIDocumentViewer.h
 mozilla/include/content/nsIDragDropHandler.h
-mozilla/include/content/nsIElementFactory.h
 mozilla/include/content/nsIEventListenerManager.h
 mozilla/include/content/nsIEventStateManager.h
 mozilla/include/content/nsIFIXptr.h
@@ -220,10 +242,7 @@
 mozilla/include/content/nsIFrameSetElement.h
 mozilla/include/content/nsIHTMLCSSStyleSheet.h
 mozilla/include/content/nsIHTMLContent.h
-mozilla/include/content/nsIHTMLContentContainer.h
 mozilla/include/content/nsIHTMLDocument.h
-mozilla/include/content/nsIHTMLTableCellElement.h
-mozilla/include/content/nsIHTMLTableColElement.h
 mozilla/include/content/nsIHTMLToTextSink.h
 mozilla/include/content/nsIImageDocument.h
 mozilla/include/content/nsIImageLoadingContent.h
@@ -266,7 +285,6 @@
 mozilla/include/content/nsIStyleSheetLinkingElement.h
 mozilla/include/content/nsIStyledContent.h
 mozilla/include/content/nsISyncLoadDOMService.h
-mozilla/include/content/nsITextAreaElement.h
 mozilla/include/content/nsITextContent.h
 mozilla/include/content/nsITextControlElement.h
 mozilla/include/content/nsIWyciwygChannel.h
@@ -274,20 +292,42 @@
 mozilla/include/content/nsIXBLDocumentInfo.h
 mozilla/include/content/nsIXBLService.h
 mozilla/include/content/nsIXMLContent.h
+mozilla/include/content/nsIXMLContentBuilder.h
 mozilla/include/content/nsIXMLContentSink.h
 mozilla/include/content/nsIXPathEvaluatorInternal.h
 mozilla/include/content/nsIXPointer.h
 mozilla/include/content/nsIXSLTException.h
 mozilla/include/content/nsIXSLTProcessor.h
 mozilla/include/content/nsIXSLTProcessorObsolete.h
+mozilla/include/content/nsIXTFAttributeHandler.h
+mozilla/include/content/nsIXTFElement.h
+mozilla/include/content/nsIXTFElementFactory.h
+mozilla/include/content/nsIXTFElementWrapper.h
+mozilla/include/content/nsIXTFElementWrapperPrivate.h
+mozilla/include/content/nsIXTFGenericElement.h
+mozilla/include/content/nsIXTFGenericElementWrapper.h
+mozilla/include/content/nsIXTFPrivate.h
+mozilla/include/content/nsIXTFService.h
+mozilla/include/content/nsIXTFVisual.h
+mozilla/include/content/nsIXTFVisualWrapperPrivate.h
+mozilla/include/content/nsIXTFXMLVisual.h
+mozilla/include/content/nsIXTFXMLVisualWrapper.h
+mozilla/include/content/nsIXTFXULVisual.h
+mozilla/include/content/nsIXTFXULVisualWrapper.h
 mozilla/include/content/nsImageMapUtils.h
 mozilla/include/content/nsLayoutAtomList.h
 mozilla/include/content/nsLayoutAtoms.h
+mozilla/include/content/nsLayoutStylesheetCache.h
 mozilla/include/content/nsMutationEvent.h
+mozilla/include/content/nsNodeInfoManager.h
+mozilla/include/content/nsPropertyTable.h
+mozilla/include/content/nsRuleData.h
 mozilla/include/content/nsRuleNode.h
 mozilla/include/content/nsRuleWalker.h
+mozilla/include/content/nsStubDocumentObserver.h
 mozilla/include/content/nsStyleContext.h
 mozilla/include/content/nsStyleCoord.h
+mozilla/include/content/nsStyleSet.h
 mozilla/include/content/nsStyleStruct.h
 mozilla/include/content/nsStyleStructList.h
 mozilla/include/content/nsStyleUtil.h
@@ -301,7 +341,6 @@
 mozilla/include/cookie/nsICookiePromptService.h
 mozilla/include/cookie/nsIImgManager.h
 mozilla/include/cookie/nsIPermission.h
-mozilla/include/cookie/nsIPermissionManager.h
 mozilla/include/dbm/
 mozilla/include/dbm/cdefs.h
 mozilla/include/dbm/mcom_db.h
@@ -311,6 +350,7 @@
 mozilla/include/docshell/
 mozilla/include/docshell/nsCDefaultURIFixup.h
 mozilla/include/docshell/nsCDocShell.h
+mozilla/include/docshell/nsDocShellCID.h
 mozilla/include/docshell/nsIContentViewer.h
 mozilla/include/docshell/nsIContentViewerEdit.h
 mozilla/include/docshell/nsIContentViewerFile.h
@@ -321,6 +361,8 @@
 mozilla/include/docshell/nsIDocShellTreeNode.h
 mozilla/include/docshell/nsIDocShellTreeOwner.h
 mozilla/include/docshell/nsIEditorDocShell.h
+mozilla/include/docshell/nsIGlobalHistory.h
+mozilla/include/docshell/nsIGlobalHistory2.h
 mozilla/include/docshell/nsIMarkupDocumentViewer.h
 mozilla/include/docshell/nsIScrollable.h
 mozilla/include/docshell/nsITextScroll.h
@@ -331,6 +373,7 @@
 mozilla/include/dom/domstubs.h
 mozilla/include/dom/nsDOMCID.h
 mozilla/include/dom/nsDOMError.h
+mozilla/include/dom/nsDOMString.h
 mozilla/include/dom/nsIBaseDOMException.h
 mozilla/include/dom/nsIDOM3Document.h
 mozilla/include/dom/nsIDOM3DocumentEvent.h
@@ -346,6 +389,7 @@
 mozilla/include/dom/nsIDOMCSSFontFaceRule.h
 mozilla/include/dom/nsIDOMCSSImportRule.h
 mozilla/include/dom/nsIDOMCSSMediaRule.h
+mozilla/include/dom/nsIDOMCSSMozDocumentRule.h
 mozilla/include/dom/nsIDOMCSSPageRule.h
 mozilla/include/dom/nsIDOMCSSPrimitiveValue.h
 mozilla/include/dom/nsIDOMCSSRule.h
@@ -368,6 +412,7 @@
 mozilla/include/dom/nsIDOMDOMConfiguration.h
 mozilla/include/dom/nsIDOMDOMException.h
 mozilla/include/dom/nsIDOMDOMImplementation.h
+mozilla/include/dom/nsIDOMDOMImplementationLS.h
 mozilla/include/dom/nsIDOMDOMStringList.h
 mozilla/include/dom/nsIDOMDocument.h
 mozilla/include/dom/nsIDOMDocumentCSS.h
@@ -452,6 +497,16 @@
 mozilla/include/dom/nsIDOMJSWindow.h
 mozilla/include/dom/nsIDOMKeyEvent.h
 mozilla/include/dom/nsIDOMKeyListener.h
+mozilla/include/dom/nsIDOMLSException.h
+mozilla/include/dom/nsIDOMLSInput.h
+mozilla/include/dom/nsIDOMLSLoadEvent.h
+mozilla/include/dom/nsIDOMLSOutput.h
+mozilla/include/dom/nsIDOMLSParser.h
+mozilla/include/dom/nsIDOMLSParserFilter.h
+mozilla/include/dom/nsIDOMLSProgressEvent.h
+mozilla/include/dom/nsIDOMLSResourceResolver.h
+mozilla/include/dom/nsIDOMLSSerializer.h
+mozilla/include/dom/nsIDOMLSSerializerFilter.h
 mozilla/include/dom/nsIDOMLinkStyle.h
 mozilla/include/dom/nsIDOMLoadListener.h
 mozilla/include/dom/nsIDOMLocation.h
@@ -464,6 +519,7 @@
 mozilla/include/dom/nsIDOMMutationEvent.h
 mozilla/include/dom/nsIDOMMutationListener.h
 mozilla/include/dom/nsIDOMNSDocument.h
+mozilla/include/dom/nsIDOMNSDocumentStyle.h
 mozilla/include/dom/nsIDOMNSEvent.h
 mozilla/include/dom/nsIDOMNSHTMLAnchorElement.h
 mozilla/include/dom/nsIDOMNSHTMLAreaElement.h
@@ -512,11 +568,14 @@
 mozilla/include/dom/nsIDOMTextListener.h
 mozilla/include/dom/nsIDOMTreeWalker.h
 mozilla/include/dom/nsIDOMUIEvent.h
+mozilla/include/dom/nsIDOMUIListener.h
 mozilla/include/dom/nsIDOMUserDataHandler.h
 mozilla/include/dom/nsIDOMViewCSS.h
 mozilla/include/dom/nsIDOMWindow.h
+mozilla/include/dom/nsIDOMWindow2.h
 mozilla/include/dom/nsIDOMWindowCollection.h
 mozilla/include/dom/nsIDOMWindowInternal.h
+mozilla/include/dom/nsIDOMWindowUtils.h
 mozilla/include/dom/nsIDOMXMLDocument.h
 mozilla/include/dom/nsIDOMXPathEvaluator.h
 mozilla/include/dom/nsIDOMXPathException.h
@@ -541,13 +600,13 @@
 mozilla/include/dom/nsIDOMXULSelectCntrlEl.h
 mozilla/include/dom/nsIDOMXULSelectCntrlItemEl.h
 mozilla/include/dom/nsIDOMXULTextboxElement.h
+mozilla/include/dom/nsIDOMXULTreeElement.h
 mozilla/include/dom/nsIEntropyCollector.h
 mozilla/include/dom/nsIFocusController.h
 mozilla/include/dom/nsIJSEventListener.h
 mozilla/include/dom/nsIJSNativeInitializer.h
 mozilla/include/dom/nsIScriptContext.h
 mozilla/include/dom/nsIScriptContextOwner.h
-mozilla/include/dom/nsIScriptEventListener.h
 mozilla/include/dom/nsIScriptExternalNameSet.h
 mozilla/include/dom/nsIScriptGlobalObject.h
 mozilla/include/dom/nsIScriptGlobalObjectOwner.h
@@ -587,17 +646,13 @@
 mozilla/include/embed_base/nsIWindowCreator2.h
 mozilla/include/embedcomponents/
 mozilla/include/embedcomponents/nsIAppStartupNotifier.h
-mozilla/include/embedstring/
-mozilla/include/embedstring/nsEmbedString.h
 mozilla/include/expat/
 mozilla/include/expat/xmlparse.h
 mozilla/include/exthandler/
 mozilla/include/exthandler/nsCExternalHandlerService.h
-mozilla/include/exthandler/nsExternalHelperAppService.h
-mozilla/include/exthandler/nsExternalProtocolHandler.h
-mozilla/include/exthandler/nsHelperAppRDF.h
 mozilla/include/exthandler/nsIExternalHelperAppService.h
 mozilla/include/exthandler/nsIExternalProtocolService.h
+mozilla/include/exthandler/nsIHelperAppLauncherDialog.h
 mozilla/include/exthandler/nsOSHelperAppService.h
 mozilla/include/filepicker/
 mozilla/include/filepicker/nsIFileView.h
@@ -605,14 +660,17 @@
 mozilla/include/find/nsIFind.h
 mozilla/include/find/nsIWebBrowserFind.h
 mozilla/include/gfx/
+mozilla/include/gfx/gfxCore.h
 mozilla/include/gfx/gfxIFormats.h
 mozilla/include/gfx/gfxIImageFrame.h
 mozilla/include/gfx/gfxtypes.h
+mozilla/include/gfx/nsCUPSShim.h
 mozilla/include/gfx/nsColor.h
 mozilla/include/gfx/nsColorNameList.h
 mozilla/include/gfx/nsColorNames.h
 mozilla/include/gfx/nsCoord.h
 mozilla/include/gfx/nsDeviceContext.h
+mozilla/include/gfx/nsEPSObjectPS.h
 mozilla/include/gfx/nsFont.h
 mozilla/include/gfx/nsGfxCIID.h
 mozilla/include/gfx/nsGfxPSCID.h
@@ -631,7 +689,6 @@
 mozilla/include/gfx/nsIFontList.h
 mozilla/include/gfx/nsIFontMetrics.h
 mozilla/include/gfx/nsIFreeType2.h
-mozilla/include/gfx/nsIGraphics.h
 mozilla/include/gfx/nsIImage.h
 mozilla/include/gfx/nsIPrintOptions.h
 mozilla/include/gfx/nsIPrintSession.h
@@ -644,11 +701,13 @@
 mozilla/include/gfx/nsIScriptableRegion.h
 mozilla/include/gfx/nsITheme.h
 mozilla/include/gfx/nsMargin.h
+mozilla/include/gfx/nsPSPrinters.h
+mozilla/include/gfx/nsPaperPS.h
 mozilla/include/gfx/nsPoint.h
-mozilla/include/gfx/nsPostScriptObj.h
 mozilla/include/gfx/nsRect.h
 mozilla/include/gfx/nsRegion.h
 mozilla/include/gfx/nsSize.h
+mozilla/include/gfx/nsTempfilePS.h
 mozilla/include/gfx/nsThemeConstants.h
 mozilla/include/gfx/nsTransform2D.h
 mozilla/include/gtkembedmoz/
@@ -657,11 +716,8 @@
 mozilla/include/gtkxtbin/
 mozilla/include/gtkxtbin/gtk2xtbin.h
 mozilla/include/gtkxtbin/gtkxtbin.h
-mozilla/include/helperAppDlg/
-mozilla/include/helperAppDlg/nsIHelperAppLauncherDialog.h
 mozilla/include/history/
 mozilla/include/history/nsIBrowserHistory.h
-mozilla/include/history/nsIGlobalHistory.h
 mozilla/include/htmlparser/
 mozilla/include/htmlparser/nsHTMLTagList.h
 mozilla/include/htmlparser/nsHTMLTags.h
@@ -670,15 +726,16 @@
 mozilla/include/htmlparser/nsIDTD.h
 mozilla/include/htmlparser/nsIElementObserver.h
 mozilla/include/htmlparser/nsIExpatSink.h
+mozilla/include/htmlparser/nsIFragmentContentSink.h
 mozilla/include/htmlparser/nsIHTMLContentSink.h
-mozilla/include/htmlparser/nsIHTMLFragmentContentSink.h
 mozilla/include/htmlparser/nsIParser.h
 mozilla/include/htmlparser/nsIParserFilter.h
 mozilla/include/htmlparser/nsIParserNode.h
 mozilla/include/htmlparser/nsIParserService.h
 mozilla/include/htmlparser/nsITokenizer.h
 mozilla/include/htmlparser/nsParserCIID.h
-mozilla/include/htmlparser/nsParserError.h
+mozilla/include/htmlparser/nsParserDataListener.h
+mozilla/include/htmlparser/nsScannerString.h
 mozilla/include/htmlparser/nsToken.h
 mozilla/include/imglib2/
 mozilla/include/imglib2/ImageErrors.h
@@ -717,20 +774,25 @@
 mozilla/include/intl/nsIStringBundle.h
 mozilla/include/intl/nsIStringBundleOverride.h
 mozilla/include/ipcd/
+mozilla/include/ipcd/ipcCID.h
 mozilla/include/ipcd/ipcIClientObserver.h
-mozilla/include/ipcd/ipcIClientQueryHandler.h
-mozilla/include/ipcd/ipcILockNotify.h
+mozilla/include/ipcd/ipcIDConnectService.h
 mozilla/include/ipcd/ipcILockService.h
 mozilla/include/ipcd/ipcIMessageObserver.h
 mozilla/include/ipcd/ipcIService.h
 mozilla/include/ipcd/ipcITransactionObserver.h
 mozilla/include/ipcd/ipcITransactionService.h
+mozilla/include/ipcd/ipcLockCID.h
 mozilla/include/ipcd/ipcMessageReader.h
 mozilla/include/ipcd/ipcMessageWriter.h
 mozilla/include/ipcd/ipcModule.h
 mozilla/include/ipcd/ipcModuleUtil.h
+mozilla/include/ipcd/ipcdclient.h
 mozilla/include/jar/
 mozilla/include/jar/nsIJAR.h
+mozilla/include/jar/nsIJARChannel.h
+mozilla/include/jar/nsIJARProtocolHandler.h
+mozilla/include/jar/nsIJARURI.h
 mozilla/include/jar/nsIZipReader.h
 mozilla/include/jar/zipfile.h
 mozilla/include/jar/zipstruct.h
@@ -800,6 +862,7 @@
 mozilla/include/js/jstypes.h
 mozilla/include/js/jsutil.h
 mozilla/include/js/jsxdrapi.h
+mozilla/include/js/jsxml.h
 mozilla/include/jsconsole/
 mozilla/include/jsconsole/nsIJSConsoleService.h
 mozilla/include/jsdebug/
@@ -812,6 +875,7 @@
 mozilla/include/layout/nsBidi.h
 mozilla/include/layout/nsBidiFrames.h
 mozilla/include/layout/nsBidiPresUtils.h
+mozilla/include/layout/nsCSSFrameConstructor.h
 mozilla/include/layout/nsCompatibility.h
 mozilla/include/layout/nsFrameList.h
 mozilla/include/layout/nsFrameTraversal.h
@@ -831,26 +895,22 @@
 mozilla/include/layout/nsIBoxObject.h
 mozilla/include/layout/nsIBoxPaintManager.h
 mozilla/include/layout/nsIBrowserBoxObject.h
-mozilla/include/layout/nsICSSFrameConstructor.h
 mozilla/include/layout/nsICanvasFrame.h
 mozilla/include/layout/nsICaret.h
 mozilla/include/layout/nsICheckboxControlFrame.h
 mozilla/include/layout/nsIChromeEventHandler.h
 mozilla/include/layout/nsIComboboxControlFrame.h
 mozilla/include/layout/nsIEditorBoxObject.h
-mozilla/include/layout/nsIFocusTracker.h
 mozilla/include/layout/nsIFormControlFrame.h
 mozilla/include/layout/nsIFormProcessor.h
 mozilla/include/layout/nsIFormSubmitObserver.h
 mozilla/include/layout/nsIFrame.h
 mozilla/include/layout/nsIFrameDebug.h
 mozilla/include/layout/nsIFrameFrame.h
-mozilla/include/layout/nsIFrameManager.h
 mozilla/include/layout/nsIFrameSelection.h
 mozilla/include/layout/nsIFrameTraversal.h
 mozilla/include/layout/nsIFrameUtil.h
 mozilla/include/layout/nsIGridPart.h
-mozilla/include/layout/nsIHTMLStyleSheet.h
 mozilla/include/layout/nsIIFrameBoxObject.h
 mozilla/include/layout/nsIImageControlFrame.h
 mozilla/include/layout/nsIImageFrame.h
@@ -862,17 +922,15 @@
 mozilla/include/layout/nsIListControlFrame.h
 mozilla/include/layout/nsIMenuBoxObject.h
 mozilla/include/layout/nsIMenuFrame.h
+mozilla/include/layout/nsIMenuParent.h
 mozilla/include/layout/nsIMutableStyleContext.h
 mozilla/include/layout/nsIObjectFrame.h
 mozilla/include/layout/nsIPageSequenceFrame.h
 mozilla/include/layout/nsIPercentHeightObserver.h
 mozilla/include/layout/nsIPopupBoxObject.h
 mozilla/include/layout/nsIPopupSetFrame.h
-mozilla/include/layout/nsIPresContext.h
 mozilla/include/layout/nsIPresShell.h
 mozilla/include/layout/nsIPresState.h
-mozilla/include/layout/nsIPrintContext.h
-mozilla/include/layout/nsIPrintPreviewContext.h
 mozilla/include/layout/nsIRadioControlFrame.h
 mozilla/include/layout/nsIReflowCallback.h
 mozilla/include/layout/nsIScrollBoxObject.h
@@ -882,12 +940,11 @@
 mozilla/include/layout/nsISelectControlFrame.h
 mozilla/include/layout/nsISelectionImageService.h
 mozilla/include/layout/nsIStatefulFrame.h
-mozilla/include/layout/nsIStyleFrameConstruction.h
-mozilla/include/layout/nsIStyleSet.h
 mozilla/include/layout/nsITableCellLayout.h
 mozilla/include/layout/nsITableLayout.h
 mozilla/include/layout/nsITextControlFrame.h
 mozilla/include/layout/nsITreeBoxObject.h
+mozilla/include/layout/nsITreeColumns.h
 mozilla/include/layout/nsITreeContentView.h
 mozilla/include/layout/nsITreeSelection.h
 mozilla/include/layout/nsITreeView.h
@@ -895,14 +952,12 @@
 mozilla/include/layout/nsLayoutErrors.h
 mozilla/include/layout/nsLayoutUtils.h
 mozilla/include/layout/nsPIBoxObject.h
+mozilla/include/layout/nsPresContext.h
 mozilla/include/layout/nsReflowType.h
 mozilla/include/layout/nsStyleChangeList.h
 mozilla/include/layout/nsStyleConsts.h
 mozilla/include/layout/nsTextTransformer.h
-mozilla/include/layout/nsTreeBodyFrame.h
 mozilla/include/layout/nsTreeColFrame.h
-mozilla/include/layout/nsTreeContentView.h
-mozilla/include/layout/nsTreeSelection.h
 mozilla/include/layout/nsTreeUtils.h
 mozilla/include/libreg/
 mozilla/include/libreg/NSReg.h
@@ -923,7 +978,6 @@
 mozilla/include/locale/nsIFontPackageHandler.h
 mozilla/include/locale/nsIFontPackageProxy.h
 mozilla/include/locale/nsIFontPackageService.h
-mozilla/include/locale/nsILanguageAtom.h
 mozilla/include/locale/nsILanguageAtomService.h
 mozilla/include/locale/nsILocale.h
 mozilla/include/locale/nsILocaleService.h
@@ -1001,6 +1055,17 @@
 mozilla/include/mork/nsIMdbFactoryFactory.h
 mozilla/include/mork/nsMorkCID.h
 mozilla/include/mozilla-config.h
+mozilla/include/mozldap/
+mozilla/include/mozldap/nsILDAPBERValue.h
+mozilla/include/mozldap/nsILDAPConnection.h
+mozilla/include/mozldap/nsILDAPErrors.h
+mozilla/include/mozldap/nsILDAPMessage.h
+mozilla/include/mozldap/nsILDAPMessageListener.h
+mozilla/include/mozldap/nsILDAPOperation.h
+mozilla/include/mozldap/nsILDAPServer.h
+mozilla/include/mozldap/nsILDAPService.h
+mozilla/include/mozldap/nsILDAPURL.h
+mozilla/include/mozldap/nsLDAP.h
 mozilla/include/msgbase/
 mozilla/include/msgbase/msgCore.h
 mozilla/include/msgbase/nsCopyMessageStreamListener.h
@@ -1008,6 +1073,7 @@
 mozilla/include/msgbase/nsICopyMsgStreamListener.h
 mozilla/include/msgbase/nsIFolderListener.h
 mozilla/include/msgbase/nsIIncomingServerListener.h
+mozilla/include/msgbase/nsIMapiRegistry.h
 mozilla/include/msgbase/nsIMessenger.h
 mozilla/include/msgbase/nsIMessengerMigrator.h
 mozilla/include/msgbase/nsIMessengerOSIntegration.h
@@ -1115,7 +1181,6 @@
 mozilla/include/msgbaseutil/nsMsgMailNewsUrl.h
 mozilla/include/msgbaseutil/nsMsgProtocol.h
 mozilla/include/msgbaseutil/nsMsgTxn.h
-mozilla/include/msgbaseutil/nsMsgUtf7Utils.h
 mozilla/include/msgbaseutil/nsMsgUtils.h
 mozilla/include/msgbaseutil/nsNewsSummarySpec.h
 mozilla/include/msgbaseutil/nsUInt32Array.h
@@ -1226,6 +1291,7 @@
 mozilla/include/msglocal/nsIMovemailService.h
 mozilla/include/msglocal/nsIMsgLocalMailFolder.h
 mozilla/include/msglocal/nsIMsgParseMailMsgState.h
+mozilla/include/msglocal/nsINewsBlogFeedDownloader.h
 mozilla/include/msglocal/nsINoIncomingServer.h
 mozilla/include/msglocal/nsINoneService.h
 mozilla/include/msglocal/nsIPop3IncomingServer.h
@@ -1233,6 +1299,8 @@
 mozilla/include/msglocal/nsIPop3Service.h
 mozilla/include/msglocal/nsIPop3Sink.h
 mozilla/include/msglocal/nsIPop3URL.h
+mozilla/include/msglocal/nsIRssIncomingServer.h
+mozilla/include/msglocal/nsIRssService.h
 mozilla/include/msglocal/nsLocalMailFolder.h
 mozilla/include/msglocal/nsLocalStringBundle.h
 mozilla/include/msglocal/nsMailboxProtocol.h
@@ -1249,6 +1317,8 @@
 mozilla/include/msglocal/nsPop3Service.h
 mozilla/include/msglocal/nsPop3Sink.h
 mozilla/include/msglocal/nsPop3URL.h
+mozilla/include/msglocal/nsRssIncomingServer.h
+mozilla/include/msglocal/nsRssService.h
 mozilla/include/msgmdn/
 mozilla/include/msgmdn/nsMsgMdnCID.h
 mozilla/include/msgmdn/nsMsgMdnGenerator.h
@@ -1295,10 +1365,12 @@
 mozilla/include/necko/nsIAsyncStreamCopier.h
 mozilla/include/necko/nsIAuthModule.h
 mozilla/include/necko/nsIAuthPrompt.h
+mozilla/include/necko/nsIAuthPromptProvider.h
 mozilla/include/necko/nsIBufferedStreams.h
 mozilla/include/necko/nsIByteRangeRequest.h
 mozilla/include/necko/nsICachingChannel.h
 mozilla/include/necko/nsIChannel.h
+mozilla/include/necko/nsIContentSniffer.h
 mozilla/include/necko/nsICookie.h
 mozilla/include/necko/nsICookie2.h
 mozilla/include/necko/nsICookieConsent.h
@@ -1314,7 +1386,6 @@
 mozilla/include/necko/nsIDataChannel.h
 mozilla/include/necko/nsIDirIndex.h
 mozilla/include/necko/nsIDirIndexListener.h
-mozilla/include/necko/nsIDirectoryListing.h
 mozilla/include/necko/nsIDownloader.h
 mozilla/include/necko/nsIEncodedChannel.h
 mozilla/include/necko/nsIExternalProtocolHandler.h
@@ -1334,20 +1405,17 @@
 mozilla/include/necko/nsIIOService.h
 mozilla/include/necko/nsIInputStreamChannel.h
 mozilla/include/necko/nsIInputStreamPump.h
-mozilla/include/necko/nsIJARChannel.h
-mozilla/include/necko/nsIJARProtocolHandler.h
-mozilla/include/necko/nsIJARURI.h
 mozilla/include/necko/nsILoadGroup.h
 mozilla/include/necko/nsIMIMEInputStream.h
 mozilla/include/necko/nsIMultiPartChannel.h
 mozilla/include/necko/nsIPasswordManager.h
 mozilla/include/necko/nsIPasswordManagerInternal.h
+mozilla/include/necko/nsIPermissionManager.h
 mozilla/include/necko/nsIProgressEventSink.h
 mozilla/include/necko/nsIPrompt.h
 mozilla/include/necko/nsIProtocolHandler.h
 mozilla/include/necko/nsIProtocolProxyService.h
 mozilla/include/necko/nsIProxiedProtocolHandler.h
-mozilla/include/necko/nsIProxy.h
 mozilla/include/necko/nsIProxyAutoConfig.h
 mozilla/include/necko/nsIProxyInfo.h
 mozilla/include/necko/nsIRequest.h
@@ -1355,10 +1423,10 @@
 mozilla/include/necko/nsIRequestObserverProxy.h
 mozilla/include/necko/nsIResProtocolHandler.h
 mozilla/include/necko/nsIResumableChannel.h
-mozilla/include/necko/nsIResumableEntityID.h
 mozilla/include/necko/nsISOCKSSocketInfo.h
 mozilla/include/necko/nsISSLSocketControl.h
 mozilla/include/necko/nsISSLSocketProvider.h
+mozilla/include/necko/nsISafeOutputStream.h
 mozilla/include/necko/nsISecretDecoderRing.h
 mozilla/include/necko/nsISecureBrowserUI.h
 mozilla/include/necko/nsISecurityEventSink.h
@@ -1384,6 +1452,7 @@
 mozilla/include/necko/nsIURIChecker.h
 mozilla/include/necko/nsIURL.h
 mozilla/include/necko/nsIURLParser.h
+mozilla/include/necko/nsIUnicharStreamListener.h
 mozilla/include/necko/nsIUnicharStreamLoader.h
 mozilla/include/necko/nsIUploadChannel.h
 mozilla/include/necko/nsNetCID.h
@@ -1391,7 +1460,6 @@
 mozilla/include/necko/nsNetUtil.h
 mozilla/include/necko/nsReadLine.h
 mozilla/include/necko/nsURIHashKey.h
-mozilla/include/necko/nsUnixColorPrintf.h
 mozilla/include/necko2/
 mozilla/include/necko2/nsIViewSourceChannel.h
 mozilla/include/nkcache/
@@ -1457,9 +1525,8 @@
 mozilla/include/nspr/md/_rhapsody.h
 mozilla/include/nspr/md/_scoos.cfg
 mozilla/include/nspr/md/_scoos.h
+mozilla/include/nspr/md/_solaris.cfg
 mozilla/include/nspr/md/_solaris.h
-mozilla/include/nspr/md/_solaris32.cfg
-mozilla/include/nspr/md/_solaris64.cfg
 mozilla/include/nspr/md/_sony.cfg
 mozilla/include/nspr/md/_sony.h
 mozilla/include/nspr/md/_sunos4.cfg
@@ -1552,7 +1619,6 @@
 mozilla/include/nss/crmft.h
 mozilla/include/nss/cryptohi.h
 mozilla/include/nss/cryptoht.h
-mozilla/include/nss/ecl-curve.h
 mozilla/include/nss/ecl-exp.h
 mozilla/include/nss/hasht.h
 mozilla/include/nss/jar-ds.h
@@ -1677,6 +1743,7 @@
 mozilla/include/pipnss/nsICipherInfo.h
 mozilla/include/pipnss/nsIClientAuthDialogs.h
 mozilla/include/pipnss/nsIDOMCryptoDialogs.h
+mozilla/include/pipnss/nsIFormSigningDialog.h
 mozilla/include/pipnss/nsIGenKeypairInfoDlg.h
 mozilla/include/pipnss/nsIHash.h
 mozilla/include/pipnss/nsIKeygenThread.h
@@ -1701,6 +1768,8 @@
 mozilla/include/pippki/nsIPKIParamBlock.h
 mozilla/include/plugin/
 mozilla/include/plugin/npapi.h
+mozilla/include/plugin/npruntime.h
+mozilla/include/plugin/nptypes.h
 mozilla/include/plugin/npupp.h
 mozilla/include/plugin/nsDefaultPlugin.h
 mozilla/include/plugin/nsIClassicPluginFactory.h
@@ -1710,6 +1779,7 @@
 mozilla/include/plugin/nsIHTTPHeaderListener.h
 mozilla/include/plugin/nsIJRILiveConnectPIPeer.h
 mozilla/include/plugin/nsIJRILiveConnectPlugin.h
+mozilla/include/plugin/nsINPRuntimePlugin.h
 mozilla/include/plugin/nsIPlugin.h
 mozilla/include/plugin/nsIPluginDocument.h
 mozilla/include/plugin/nsIPluginHost.h
@@ -1778,6 +1848,7 @@
 mozilla/include/rdf/nsIRDFDelegateFactory.h
 mozilla/include/rdf/nsIRDFFileSystem.h
 mozilla/include/rdf/nsIRDFInMemoryDataSource.h
+mozilla/include/rdf/nsIRDFInferDataSource.h
 mozilla/include/rdf/nsIRDFLiteral.h
 mozilla/include/rdf/nsIRDFNode.h
 mozilla/include/rdf/nsIRDFObserver.h
@@ -1810,37 +1881,36 @@
 mozilla/include/spellchecker/mozISpellI18NManager.h
 mozilla/include/spellchecker/mozISpellI18NUtil.h
 mozilla/include/string/
-mozilla/include/string/nsAFlatString.h
-mozilla/include/string/nsASingleFragmentString.h
 mozilla/include/string/nsAString.h
-mozilla/include/string/nsAStringGenerator.h
 mozilla/include/string/nsAlgorithm.h
-mozilla/include/string/nsBufferHandle.h
-mozilla/include/string/nsBufferHandleUtils.h
 mozilla/include/string/nsCharTraits.h
-mozilla/include/string/nsDependentConcatenation.h
 mozilla/include/string/nsDependentString.h
 mozilla/include/string/nsDependentSubstring.h
-mozilla/include/string/nsFragmentedString.h
+mozilla/include/string/nsEmbedString.h
 mozilla/include/string/nsLiteralString.h
+mozilla/include/string/nsObsoleteAString.h
 mozilla/include/string/nsPrintfCString.h
 mozilla/include/string/nsPromiseFlatString.h
 mozilla/include/string/nsReadableUtils.h
-mozilla/include/string/nsSharableString.h
-mozilla/include/string/nsSharedBufferList.h
-mozilla/include/string/nsSlidingString.h
-mozilla/include/string/nsStr.h
-mozilla/include/string/nsStrShared.h
 mozilla/include/string/nsString.h
-mozilla/include/string/nsString2.h
-mozilla/include/string/nsStringDefines.h
-mozilla/include/string/nsStringFragment.h
+mozilla/include/string/nsStringAPI.h
 mozilla/include/string/nsStringFwd.h
 mozilla/include/string/nsStringIterator.h
-mozilla/include/string/nsStringIteratorUtils.h
-mozilla/include/string/nsStringTraits.h
+mozilla/include/string/nsSubstring.h
+mozilla/include/string/nsSubstringTuple.h
+mozilla/include/string/nsTAString.h
+mozilla/include/string/nsTDependentString.h
+mozilla/include/string/nsTDependentSubstring.h
+mozilla/include/string/nsTObsoleteAString.h
+mozilla/include/string/nsTPromiseFlatString.h
+mozilla/include/string/nsTString.h
+mozilla/include/string/nsTSubstring.h
+mozilla/include/string/nsTSubstringTuple.h
 mozilla/include/string/nsUTF8Utils.h
 mozilla/include/string/nsXPIDLString.h
+mozilla/include/string/string-template-def-char.h
+mozilla/include/string/string-template-def-unichar.h
+mozilla/include/string/string-template-undef.h
 mozilla/include/txmgr/
 mozilla/include/txmgr/nsITransaction.h
 mozilla/include/txmgr/nsITransactionList.h
@@ -1855,8 +1925,6 @@
 mozilla/include/txtsvc/nsTextServicesCID.h
 mozilla/include/typeaheadfind/
 mozilla/include/typeaheadfind/nsITypeAheadFind.h
-mozilla/include/ucnative/
-mozilla/include/ucnative/nsINativeUConvService.h
 mozilla/include/uconv/
 mozilla/include/uconv/nsEncoderDecoderUtils.h
 mozilla/include/uconv/nsICharRepresentable.h
@@ -1917,10 +1985,8 @@
 mozilla/include/uriloader/nsIWebProgressListener.h
 mozilla/include/uriloader/nsURILoader.h
 mozilla/include/util/
-mozilla/include/util/nsITimeRecorder.h
 mozilla/include/util/nsTimer.h
 mozilla/include/util/stopwatch.h
-mozilla/include/util/xp_obs.h
 mozilla/include/view/
 mozilla/include/view/nsICompositeListener.h
 mozilla/include/view/nsIScrollPositionListener.h
@@ -1958,10 +2024,10 @@
 mozilla/include/webbrwsr/nsIWebBrowserFocus.h
 mozilla/include/webbrwsr/nsIWebBrowserPrint.h
 mozilla/include/webbrwsr/nsIWebBrowserSetup.h
+mozilla/include/webbrwsr/nsIWebBrowserStream.h
 mozilla/include/webshell/
 mozilla/include/webshell/nsIClipboardCommands.h
 mozilla/include/webshell/nsIContentViewerContainer.h
-mozilla/include/webshell/nsIDocStreamLoaderFactory.h
 mozilla/include/webshell/nsIDocumentLoaderFactory.h
 mozilla/include/webshell/nsILinkHandler.h
 mozilla/include/webshell/nsIRefreshURI.h
@@ -1996,6 +2062,7 @@
 mozilla/include/websrvcs/nsIWSDLSOAPBinding.h
 mozilla/include/websrvcs/nsIWSPInterfaceInfoService.h
 mozilla/include/websrvcs/nsIWebScriptsAccessService.h
+mozilla/include/websrvcs/nsIWebServiceErrorHandler.h
 mozilla/include/websrvcs/nsIWebServiceProxy.h
 mozilla/include/widget/
 mozilla/include/widget/gdksuperwin.h
@@ -2032,6 +2099,7 @@
 mozilla/include/widget/nsIMenuListener.h
 mozilla/include/widget/nsIMenuRollup.h
 mozilla/include/widget/nsIMouseListener.h
+mozilla/include/widget/nsINativeKeyBindings.h
 mozilla/include/widget/nsINativeScrollbar.h
 mozilla/include/widget/nsIPluginWidget.h
 mozilla/include/widget/nsIRollupListener.h
@@ -2046,6 +2114,7 @@
 mozilla/include/widget/nsWidgetSupport.h
 mozilla/include/widget/nsWidgetsCID.h
 mozilla/include/widget/nsXRemoteClientCID.h
+mozilla/include/widget/widgetCore.h
 mozilla/include/windowwatcher/
 mozilla/include/windowwatcher/nsIAuthPromptWrapper.h
 mozilla/include/windowwatcher/nsIDialogParamBlock.h
@@ -2069,18 +2138,17 @@
 mozilla/include/xpcom/nsArray.h
 mozilla/include/xpcom/nsArrayEnumerator.h
 mozilla/include/xpcom/nsAtomService.h
+mozilla/include/xpcom/nsAutoBuffer.h
 mozilla/include/xpcom/nsAutoLock.h
 mozilla/include/xpcom/nsAutoPtr.h
 mozilla/include/xpcom/nsBaseHashtable.h
 mozilla/include/xpcom/nsCOMArray.h
 mozilla/include/xpcom/nsCOMPtr.h
 mozilla/include/xpcom/nsCRT.h
-mozilla/include/xpcom/nsCWeakReference.h
 mozilla/include/xpcom/nsCategoryManagerUtils.h
 mozilla/include/xpcom/nsCheapSets.h
 mozilla/include/xpcom/nsClassHashtable.h
 mozilla/include/xpcom/nsCom.h
-mozilla/include/xpcom/nsComObsolete.h
 mozilla/include/xpcom/nsComponentManagerObsolete.h
 mozilla/include/xpcom/nsComponentManagerUtils.h
 mozilla/include/xpcom/nsCppSharedAllocator.h
@@ -2128,6 +2196,7 @@
 mozilla/include/xpcom/nsIDebug.h
 mozilla/include/xpcom/nsIDirectoryService.h
 mozilla/include/xpcom/nsIEnumerator.h
+mozilla/include/xpcom/nsIEnvironment.h
 mozilla/include/xpcom/nsIErrorService.h
 mozilla/include/xpcom/nsIEventQueue.h
 mozilla/include/xpcom/nsIEventQueueService.h
@@ -2177,7 +2246,6 @@
 mozilla/include/xpcom/nsIStorageStream.h
 mozilla/include/xpcom/nsIStreamBufferAccess.h
 mozilla/include/xpcom/nsIStringEnumerator.h
-mozilla/include/xpcom/nsIStringService.h
 mozilla/include/xpcom/nsIStringStream.h
 mozilla/include/xpcom/nsISupports.h
 mozilla/include/xpcom/nsISupportsArray.h
@@ -2201,10 +2269,12 @@
 mozilla/include/xpcom/nsIXPTLoader.h
 mozilla/include/xpcom/nsInt64.h
 mozilla/include/xpcom/nsInterfaceHashtable.h
+mozilla/include/xpcom/nsInterfaceRequestorAgg.h
 mozilla/include/xpcom/nsLinebreakConverter.h
 mozilla/include/xpcom/nsLocalFile.h
 mozilla/include/xpcom/nsLocalFileUnix.h
 mozilla/include/xpcom/nsMemory.h
+mozilla/include/xpcom/nsModule.h
 mozilla/include/xpcom/nsMultiplexInputStream.h
 mozilla/include/xpcom/nsNativeCharsetUtils.h
 mozilla/include/xpcom/nsNativeComponentLoader.h
@@ -2216,6 +2286,7 @@
 mozilla/include/xpcom/nsProxyRelease.h
 mozilla/include/xpcom/nsQuickSort.h
 mozilla/include/xpcom/nsRecyclingAllocator.h
+mozilla/include/xpcom/nsRefPtrHashtable.h
 mozilla/include/xpcom/nsScriptableInputStream.h
 mozilla/include/xpcom/nsStaticAtom.h
 mozilla/include/xpcom/nsStaticComponent.h
@@ -2235,7 +2306,6 @@
 mozilla/include/xpcom/nsUnitConversion.h
 mozilla/include/xpcom/nsValueArray.h
 mozilla/include/xpcom/nsVariant.h
-mozilla/include/xpcom/nsVector.h
 mozilla/include/xpcom/nsVoidArray.h
 mozilla/include/xpcom/nsWeakPtr.h
 mozilla/include/xpcom/nsWeakReference.h
@@ -2246,7 +2316,6 @@
 mozilla/include/xpcom/nsrootidl.h
 mozilla/include/xpcom/pldhash.h
 mozilla/include/xpcom/plevent.h
-mozilla/include/xpcom/plvector.h
 mozilla/include/xpcom/xcDll.h
 mozilla/include/xpcom/xpcom-config.h
 mozilla/include/xpcom/xpt_arena.h
@@ -2264,6 +2333,7 @@
 mozilla/include/xpcom_obsolete/nsIRegistry.h
 mozilla/include/xpcom_obsolete/nsIRegistryUtils.h
 mozilla/include/xpcom_obsolete/nsSpecialSystemDirectory.h
+mozilla/include/xpcom_obsolete/xpcomobsolete.h
 mozilla/include/xpconnect/
 mozilla/include/xpconnect/XPCIDispatch.h
 mozilla/include/xpconnect/mozIJSSubScriptLoader.h
@@ -2304,6 +2374,7 @@
 mozilla/include/xuldoc/nsIControllers.h
 mozilla/include/xuldoc/nsIXULContentSink.h
 mozilla/include/xuldoc/nsIXULDocument.h
+mozilla/include/xuldoc/nsIXULOverlayProvider.h
 mozilla/include/xuldoc/nsIXULPrototypeCache.h
 mozilla/include/xuldoc/nsIXULPrototypeDocument.h
 mozilla/include/xultmpl/
@@ -2319,6 +2390,7 @@
 mozilla/lib/libaccessibility_xul_s.a
 mozilla/lib/libaddrbook_s.a
 mozilla/lib/libappcompintl_s.a
+mozilla/lib/libappstartup_s.a
 mozilla/lib/libappstartupnotifier_s.a
 mozilla/lib/libasn1.a
 mozilla/lib/libautocomplete_s.a
@@ -2337,8 +2409,6 @@
 mozilla/lib/libdownloadmanager_s.a
 mozilla/lib/libeditorbase_s.a
 mozilla/lib/libembed_base_s.a
-mozilla/lib/libembedstring.a
-mozilla/lib/libembedstring_s.a
 mozilla/lib/libemitterutil_s.a
 mozilla/lib/libexpat_s.a
 mozilla/lib/libexthandler_s.a
@@ -2354,6 +2424,7 @@
 mozilla/lib/libgkconhtmldoc_s.a
 mozilla/lib/libgkconhtmlstyle_s.a
 mozilla/lib/libgkconshared_s.a
+mozilla/lib/libgkcontentxtf_s.a
 mozilla/lib/libgkconxbl_s.a
 mozilla/lib/libgkconxmlcon_s.a
 mozilla/lib/libgkconxmldoc_s.a
@@ -2368,6 +2439,7 @@
 mozilla/lib/libgkmathmlbase_s.a
 mozilla/lib/libgkmathmlcon_s.a
 mozilla/lib/libgkview_s.a
+mozilla/lib/libgkxtfbase_s.a
 mozilla/lib/libgkxulbase_s.a
 mozilla/lib/libgkxulgrid_s.a
 mozilla/lib/libgkxultree_s.a
@@ -2380,15 +2452,20 @@
 mozilla/lib/libimgpng_s.a
 mozilla/lib/libimgxbm_s.a
 mozilla/lib/libinspector_s.a
+mozilla/lib/libipcddconnect_s.a
 mozilla/lib/libipcdlock_s.a
 mozilla/lib/libipcdshared_s.a
 mozilla/lib/libipcdutil_s.a
+mozilla/lib/libiutil50.a
 mozilla/lib/libjar.a
 mozilla/lib/libjsconsole_s.a
 mozilla/lib/libjsdombase_s.a
 mozilla/lib/libjsdomevents_s.a
 mozilla/lib/libjsloader_s.a
 mozilla/lib/libjsurl_s.a
+mozilla/lib/liblber50.a
+mozilla/lib/libldap50.a
+mozilla/lib/libldif50.a
 mozilla/lib/liblwbrk_s.a
 mozilla/lib/libmailview_s.a
 mozilla/lib/libmime_s.a
@@ -2422,7 +2499,6 @@
 mozilla/lib/libnkftp_s.a
 mozilla/lib/libnkgopher_s.a
 mozilla/lib/libnkhttp_s.a
-mozilla/lib/libnkjar_s.a
 mozilla/lib/libnkkeyword_s.a
 mozilla/lib/libnkmime_s.a
 mozilla/lib/libnkres_s.a
@@ -2444,6 +2520,7 @@
 mozilla/lib/libprefetch_s.a
 mozilla/lib/libprintingui_s.a
 mozilla/lib/libprofdirserviceprovider_s.a
+mozilla/lib/libprofdirserviceprovidersa_s.a
 mozilla/lib/libprofile_s.a
 mozilla/lib/libprofilesharingsetup_s.a
 mozilla/lib/librdfbase_s.a
@@ -2459,15 +2536,20 @@
 mozilla/lib/libsoftokn.a
 mozilla/lib/libsoftokn3.chk
 mozilla/lib/libssl.a
-mozilla/lib/libstring_obsolete_s.a
 mozilla/lib/libstring_s.a
 mozilla/lib/libstrres_s.a
 mozilla/lib/libswfci.a
 mozilla/lib/libtransmgr_s.a
 mozilla/lib/libtransmgrcom_s.a
+mozilla/lib/libtxbase_s.a
 mozilla/lib/libtxtsvc_s.a
+mozilla/lib/libtxxml_s.a
+mozilla/lib/libtxxmlparser_s.a
+mozilla/lib/libtxxpath_s.a
+mozilla/lib/libtxxslt_s.a
+mozilla/lib/libtxxsltfunctions_s.a
+mozilla/lib/libtxxsltutil_s.a
 mozilla/lib/libucharucomp_s.a
-mozilla/lib/libucnative_s.a
 mozilla/lib/libucvcn_s.a
 mozilla/lib/libucvibm_s.a
 mozilla/lib/libucvja_s.a
@@ -2478,7 +2560,6 @@
 mozilla/lib/libucvutil_s.a
 mozilla/lib/libunicharutil_s.a
 mozilla/lib/liburiloaderbase_s.a
-mozilla/lib/liburlbarhistory_s.a
 mozilla/lib/libwalleteditor_s.a
 mozilla/lib/libwalletpreview_s.a
 mozilla/lib/libwebbrowserpersist_s.a
@@ -2493,7 +2574,6 @@
 mozilla/lib/libwindowwatcher_s.a
 mozilla/lib/libxmlextrasbase_s.a
 mozilla/lib/libxmlextraspointers_s.a
-mozilla/lib/libxmltok_s.a
 mozilla/lib/libxpcombase_s.a
 mozilla/lib/libxpcomcomponents_s.a
 mozilla/lib/libxpcomds_s.a

Visit your host, monkey.org