ports/72762: [PATCH] www/nvu: [Merged patches from mozilla 1.7.1, lots of other stuff]

Michael Johnson ahze at ahze.net
Sat Oct 16 17:10:28 UTC 2004


>Number:         72762
>Category:       ports
>Synopsis:       [PATCH] www/nvu: [Merged patches from mozilla 1.7.1, lots of other stuff]
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Oct 16 17:10:26 GMT 2004
>Closed-Date:
>Last-Modified:
>Originator:     Michael Johnson
>Release:        FreeBSD 5.3-BETA6 i386
>Organization:
>Environment:
System: FreeBSD blueheron.ahze.net 5.3-BETA6 FreeBSD 5.3-BETA6 #67: Fri Oct  1 15:03:41 EDT
>Description:
- Merged patches from mozilla 1.7
   ** pointed out by marcus@
- auto create plist
- Respect CC/CXX/CFLAGS/CXXFLAGS/PTHREAD_LIBS
- add WITH_XFT WITH_DEBUG WITH_OPTIMIZED_CFLAGS options
- I added my own mirror because cvs.nvu.com is pretty slow for me
- Don't install share/idl/* 
- No longer depend on mozilla

Added file(s):
- files/mozconfig.in
- files/patch-nsprpub-pr-include-md-_pth.h
- files/patch-nsprpub-pr-src-io-prprf.c
- files/patch-nsprpub::pr::include::md::_freebsd.cfg
- files/patch-nsprpub::pr::include::md::_freebsd.h
- files/patch-nsprpub::pr::src::pthreads::ptio.c
- files/patch-xpcom::reflect::xptcall::public::xptcstubsdecl.inc
- files/patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in
- files/patch-xptcall-alpha
- files/patch-xptcall-amd64
- files/patch-xptcall-ia64
- files/patch-xptcall-sparc64

Removed file(s):
- files/patch-.mozconfig
- pkg-plist

Generated with FreeBSD Port Tools 0.63
>How-To-Repeat:
>Fix:

--- nvu-0.50.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/Makefile /usr/ports/www/nvu/Makefile
--- /usr/ports/www/nvu.orig/Makefile	Sat Oct 16 12:49:53 2004
+++ /usr/ports/www/nvu/Makefile	Sat Oct 16 12:57:07 2004
@@ -8,26 +8,120 @@
 PORTNAME=	nvu
 PORTVERSION=	0.50
 CATEGORIES=	www
-MASTER_SITES=	http://cvs.nvu.com/download/
-DISTNAME=	${PORTNAME}-${PORTVERSION}-sources
+# vtel.rgv.net is a temp mirror, nvu.com is SLOW
+MASTER_SITES=	http://vtel.rgv.net/~ahze/ \
+		http://cvs.nvu.com/download/
+DISTNAME=	${PKGNAME}-sources
 
 MAINTAINER=	ports at FreeBSD.org
-COMMENT=	A complete Web Authoring System
+COMMENT=	A complete Web Authoring System similar to Dreamweaver or Frontpage
 
-BUILD_DEPENDS=	${X11BASE}/lib/mozilla/libmozjs.so:${PORTSDIR}/www/mozilla
-RUN_DEPENDS=	${BUILD_DEPENDS}
-
-WRKSRC=		${WRKDIR}/mozilla
+BUILD_DEPENDS=	zip:${PORTSDIR}/archivers/zip \
+		freetype-config:${PORTSDIR}/print/freetype2
+LIB_DEPENDS=	jpeg.9:${PORTSDIR}/graphics/jpeg \
+		png.5:${PORTSDIR}/graphics/png \
+		mng.1:${PORTSDIR}/graphics/libmng \
+		freetype.9:${PORTSDIR}/print/freetype2 \
+		nspr4.1:${PORTSDIR}/devel/nspr
 
 USE_BZIP2=	yes
+USE_PERL5=	yes
+USE_GNOME=	gtk20 libidl
+USE_REINPLACE=	yes
 USE_GMAKE=	yes
-USE_PERL5_BUILD=yes
+
+OPTIONS=	XFT "Enable Xft font anti-aliasing" on \
+		DEBUG "Enable debugging (i.e. gdb) support" off \
+		OPTIMIZED_CFLAGS "Enable -O2 optimizations" off
+
+NVU=		${PORTNAME}-0.17+
+FAKEDIR=	${WRKDIR}/FAKE
+WRKSRC=		${WRKDIR}/mozilla
+PLIST=		${WRKDIR}/plist
+
 MAKEFILE=	client.mk
 ALL_TARGET=	build_all
 
-PLIST_SUB=	NVUDIR=${PORTNAME}-0.17+
+PKG_CONFIGS=	nvu-gtkmozembed.pc nvu-js.pc nvu-nspr.pc \
+		nvu-nss.pc nvu-plugin.pc nvu-xpcom.pc
+
+.include <bsd.port.pre.mk>
 
-post-extract:
-	${CP} -p ${WRKSRC}/mozconfig.linux ${WRKSRC}/.mozconfig
+.if !defined(WITHOUT_XFT)
+LIB_DEPENDS+=	Xft.2:${PORTSDIR}/x11-fonts/libXft
+.endif
+
+post-patch:
+	@${SED} -e 's|%%CC%%|${CC}|; s|%%CXX%%|${CXX}|; \
+		s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|; \
+		s|%%CFLAGS%%|${CFLAGS}|; \
+		s|%%CXXFLAGS%%|${CXXFLAGS}|; \
+		s|%%PREFIX%%|${FAKEDIR}|; \
+		s|%%LOCALBASE%%|${LOCALBASE}|' \
+		${FILESDIR}/mozconfig.in >${WRKSRC}/.mozconfig
+.if defined(WITHOUT_XFT)
+	@${ECHO_CMD} "ac_add_options  --disable-xft" >> ${WRKSRC}/.mozconfig
+.else
+	@${ECHO_CMD} "ac_add_options  --enable-xft" >> ${WRKSRC}/.mozconfig
+.endif
+.if defined(WITH_DEBUG)
+	@${ECHO_CMD} "ac_add_options  --enable-debug" >> ${WRKSRC}/.mozconfig
+	@${ECHO_CMD} "ac_add_options  --disable-strip" >> ${WRKSRC}/.mozconfig
+.else
+	@${ECHO_CMD} "ac_add_options  --disable-debug" >> ${WRKSRC}/.mozconfig
+	@${ECHO_CMD} "ac_add_options  --enable-strip" >> ${WRKSRC}/.mozconfig
+.endif
+.if defined(WITH_OPTIMIZED_CFLAGS)
+	@${ECHO_CMD} "ac_add_options --enable-optimize=-O2" >> ${WRKSRC}/.mozconfig
+.endif
+	@${REINPLACE_CMD} -e 's|-lc_r|${PTHREAD_LIBS}|g ; \
+		s|-lpthread|${PTHREAD_LIBS}|g' \
+		${WRKSRC}/configure \
+		${WRKSRC}/nsprpub/configure
+	@${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g' \
+		${WRKSRC}/nsprpub/configure \
+		${WRKSRC}/security/coreconf/FreeBSD.mk \
+		${WRKSRC}/directory/c-sdk/config/FreeBSD.mk \
+		${WRKSRC}/js/src/Makefile.in
+
+pre-install:
+	${RM} -rf ${PLIST} ${FAKEDIR}
+	${TOUCH} -f ${PLIST}
+	cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} \
+		 ${MAKEFILE} ${MAKE_ARGS} install
+	${ECHO_CMD} bin/nvu >> ${PLIST}
+	${ECHO_CMD} bin/nvu-config >> ${PLIST}
+	cd ${FAKEDIR}/lib/${NVU} && ${FIND} -s * -type f -o -type l | \
+		${SED} -e 's|^|lib/${NVU}/|' >> ${PLIST} \
+			&& ${FIND} -d * -type d | \
+			${SED} -e 's:^:@dirrm lib/${NVU}/:' >> ${PLIST}
+	${ECHO_CMD} @dirrm lib/${NVU} >> ${PLIST}
+.for p in ${PKG_CONFIGS}
+	${ECHO_CMD} ${p:S|^|libdata/pkgconfig/|} >> ${PLIST}
+.endfor
+	cd ${FAKEDIR}/include/${NVU} && ${FIND} -s * -type f -o -type l | \
+		${SED} -e 's|^|include/${NVU}/|' >> ${PLIST} \
+		&& ${FIND} -d * -type d | \
+		${SED} -e 's|^|@dirrm include/${NVU}/|' >> ${PLIST}
+	${ECHO_CMD} @dirrm include/${NVU} >> ${PLIST}
+
+do-install:
+	${REINPLACE_CMD} -e 's|${FAKEDIR}|${PREFIX}|' \
+		${FAKEDIR}/bin/* \
+		${FAKEDIR}/lib/pkgconfig/*
+	${RM} -f ${FAKEDIR}/bin/*.bak ${FAKEDIR}/lib/pkgconfig/*.bak
+	${MKDIR} ${PREFIX}/lib/${NVU}
+	${CHMOD} 755 ${PREFIX}/lib/${NVU}
+	${INSTALL_SCRIPT} ${FAKEDIR}/bin/* ${PREFIX}/bin
+	if [ ! -d ${PREFIX}/libdata/pkgconfig ]; then \
+		${MKDIR} ${PREFIX}/libdata/pkgconfig ; \
+	fi
+.for i in ${PKG_CONFIGS}
+	${INSTALL_DATA} ${FAKEDIR}/lib/pkgconfig/${i} ${PREFIX}/libdata/pkgconfig/
+.endfor
+	cd ${FAKEDIR}/lib/${NVU} && ${FIND} . | \
+		${CPIO} -pdm -L -R ${LIBOWN}:${LIBGRP} ${PREFIX}/lib/${NVU}
+	cd ${FAKEDIR}/include/${NVU} && ${FIND} . | \
+		${CPIO} -pdm -L -R ${LIBOWN}:${LIBGRP} ${PREFIX}/include/${NVU}
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/files/mozconfig.in /usr/ports/www/nvu/files/mozconfig.in
--- /usr/ports/www/nvu.orig/files/mozconfig.in	Wed Dec 31 19:00:00 1969
+++ /usr/ports/www/nvu/files/mozconfig.in	Sat Oct 16 12:52:33 2004
@@ -0,0 +1,41 @@
+export MOZILLA_OFFICIAL=1
+export BUILD_OFFICIAL=1
+
+export MOZ_STANDALONE_COMPOSER=1
+mk_add_options MOZ_STANDALONE_COMPOSER=1
+
+export CC="%%CC%%"
+export CXX="%%CXX%%"
+export OS_LIBS="%%PTHREAD_LIBS%%"
+export CFLAGS="%%CFLAGS%%"
+export CXXFLAGS="%%CXXFLAGS%%"
+
+ac_add_options	--prefix=%%PREFIX%%
+ac_add_options  --disable-svg
+ac_add_options  --without-system-mng
+ac_add_options  --without-system-png
+ac_add_options  --disable-ldap
+ac_add_options  --disable-mailnews
+ac_add_options  --disable-installer
+ac_add_options  --disable-activex
+ac_add_options  --disable-activex-scripting
+ac_add_options  --disable-tests
+ac_add_options  --disable-oji
+ac_add_options  --disable-necko-disk-cache
+ac_add_options  --disable-profilesharing
+ac_add_options  --enable-extensions=wallet,spellcheck,xmlextras,pref,universalchardet,editor/cascades,venkman,inspector
+ac_add_options  --enable-necko-protocols=http,ftp,file,jar,viewsource,res,data
+ac_add_options  --with-system-jpeg=%%LOCALBASE%%
+ac_add_options  --with-system-png=%%LOCALBASE%%
+ac_add_options  --with-system-mng=%%LOCALBASE%%
+ac_add_options  --disable-pedantic
+ac_add_options  --disable-short-wchar
+ac_add_options  --enable-xprint
+ac_add_options  --enable-crypto
+ac_add_options  --disable-mathml
+ac_add_options  --with-system-zlib
+ac_add_options  --enable-freetype2
+ac_add_options  --enable-toolkit=gtk2
+ac_add_options  --enable-default-toolkit=gtk2
+ac_add_options  --with-pthreads
+ac_add_options  --with-gssapi=/usr
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/files/patch-.mozconfig /usr/ports/www/nvu/files/patch-.mozconfig
--- /usr/ports/www/nvu.orig/files/patch-.mozconfig	Sat Oct 16 12:49:53 2004
+++ /usr/ports/www/nvu/files/patch-.mozconfig	Wed Dec 31 19:00:00 1969
@@ -1,35 +0,0 @@
---- .mozconfig.orig	Wed Oct  6 14:11:20 2004
-+++ .mozconfig	Sat Oct 16 12:43:39 2004
-@@ -12,9 +12,9 @@
- 
- # Uncomment the 3 following lines on Debian (this includes
- # Linspire)
--export OS_LIBS="-lc -lpthread"
--export CFLAGS="-DDEBIAN"
--export CXXFLAGS="-DDEBIAN"
-+#export OS_LIBS="-lc -lpthread"
-+#export CFLAGS="-DDEBIAN"
-+#export CXXFLAGS="-DDEBIAN"
- 
- # Uncomment the two following lines on Linspire
- #export LINSPIRE=1
-@@ -22,7 +22,7 @@
- 
- # Uncomment and edit this line if you want to build
- # outside of the source tree
--mk_add_options MOZ_OBJDIR=/home/glazman/nvu-0.50
-+#mk_add_options MOZ_OBJDIR=/home/glazman/nvu-0.50
- 
- # Uncomment the following lines for an optimized build
- ac_add_options --enable-optimize
-@@ -30,7 +30,9 @@
- 
- # You may need to uncomment and edit that line. On Linspire,
- # just uncomment it
--#ac_add_options --with-default-mozilla-five-home=/usr/lib/mozilla
-+ac_add_options --with-default-mozilla-five-home=${X11BASE}/lib/mozilla
-+
-+ac_add_options --prefix=${PREFIX}
- 
- # You probably have nothing to change below that line
- ac_add_options  --disable-svg
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/files/patch-nsprpub-pr-include-md-_pth.h /usr/ports/www/nvu/files/patch-nsprpub-pr-include-md-_pth.h
--- /usr/ports/www/nvu.orig/files/patch-nsprpub-pr-include-md-_pth.h	Wed Dec 31 19:00:00 1969
+++ /usr/ports/www/nvu/files/patch-nsprpub-pr-include-md-_pth.h	Sat Oct 16 12:52:33 2004
@@ -0,0 +1,11 @@
+--- nsprpub/pr/include/md/_pth.h.orig	Mon Jul 26 07:23:42 2004
++++ nsprpub/pr/include/md/_pth.h	Mon Jul 26 07:18:37 2004
+@@ -90,7 +90,7 @@
+ #define _PT_PTHREAD_MUTEXATTR_INIT        pthread_mutexattr_init
+ #define _PT_PTHREAD_MUTEXATTR_DESTROY     pthread_mutexattr_destroy
+ #define _PT_PTHREAD_MUTEX_INIT(m, a)      pthread_mutex_init(&(m), &(a))
+-#define _PT_PTHREAD_MUTEX_IS_LOCKED(m)    (EBUSY == pthread_mutex_trylock(&(m)))
++#define _PT_PTHREAD_MUTEX_IS_LOCKED(m)    (0 != pthread_mutex_trylock(&(m)))
+ #if defined(DARWIN)
+ #define _PT_PTHREAD_CONDATTR_INIT(x)      0
+ #else
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/files/patch-nsprpub-pr-src-io-prprf.c /usr/ports/www/nvu/files/patch-nsprpub-pr-src-io-prprf.c
--- /usr/ports/www/nvu.orig/files/patch-nsprpub-pr-src-io-prprf.c	Wed Dec 31 19:00:00 1969
+++ /usr/ports/www/nvu/files/patch-nsprpub-pr-src-io-prprf.c	Sat Oct 16 12:52:33 2004
@@ -0,0 +1,14 @@
+--- nsprpub/pr/src/io/prprf.c.orig	Mon Mar  8 22:18:19 2004
++++ nsprpub/pr/src/io/prprf.c	Fri Mar 19 15:26:55 2004
+@@ -51,7 +51,10 @@
+ ** Note: on some platforms va_list is defined as an array,
+ ** and requires array notation.
+ */
+-#if (defined(LINUX) && defined(__x86_64__))
++#if defined(__amd64__)
++#include <stdarg.h>
++#define VARARGS_ASSIGN(foo, bar) va_copy((foo), (bar))
++#elif (defined(LINUX) && defined(__x86_64__))
+ #define VARARGS_ASSIGN(foo, bar) __va_copy((foo), (bar))
+ #elif (defined(LINUX) && defined(__powerpc__)) || \
+     (defined(LINUX) && defined(__s390__)) || \
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/files/patch-nsprpub::pr::include::md::_freebsd.cfg /usr/ports/www/nvu/files/patch-nsprpub::pr::include::md::_freebsd.cfg
--- /usr/ports/www/nvu.orig/files/patch-nsprpub::pr::include::md::_freebsd.cfg	Wed Dec 31 19:00:00 1969
+++ /usr/ports/www/nvu/files/patch-nsprpub::pr::include::md::_freebsd.cfg	Sat Oct 16 12:52:33 2004
@@ -0,0 +1,124 @@
+--- nsprpub/pr/include/md/_freebsd.cfg.orig	Sat Nov 15 15:36:12 2003
++++ nsprpub/pr/include/md/_freebsd.cfg	Sun Feb  1 13:36:44 2004
+@@ -91,7 +91,7 @@
+ #define PR_ALIGN_OF_DOUBLE  4
+ #define PR_ALIGN_OF_POINTER 4
+ 
+-#elif defined(__alpha)
++#elif defined(__alpha__)
+ 
+ #define IS_LITTLE_ENDIAN 1
+ #undef  IS_BIG_ENDIAN
+@@ -138,8 +138,7 @@
+ #define PR_ALIGN_OF_DOUBLE  8
+ #define PR_ALIGN_OF_POINTER 8
+ 
+-#elif defined(__sparc__)
+-
++#elif defined(__sparc64__)
+ #undef IS_LITTLE_ENDIAN
+ #define IS_BIG_ENDIAN 1
+ #define	HAVE_LONG_LONG
+@@ -185,6 +184,102 @@
+ #define PR_ALIGN_OF_DOUBLE  8
+ #define PR_ALIGN_OF_POINTER 8
+ 
++#elif defined(__ia64__)
++#define IS_LITTLE_ENDIAN 1
++#undef  IS_BIG_ENDIAN
++#define HAVE_LONG_LONG
++#define HAVE_ALIGNED_DOUBLES
++#define HAVE_ALIGNED_LONGLONGS
++#define IS_64
++
++#define PR_BYTES_PER_BYTE   1
++#define PR_BYTES_PER_SHORT  2
++#define PR_BYTES_PER_INT    4
++#define PR_BYTES_PER_INT64  8
++#define PR_BYTES_PER_LONG   8
++#define PR_BYTES_PER_FLOAT  4
++#define PR_BYTES_PER_DOUBLE 8
++#define PR_BYTES_PER_WORD   8
++#define PR_BYTES_PER_DWORD  8
++
++#define PR_BITS_PER_BYTE    8
++#define PR_BITS_PER_SHORT   16
++#define PR_BITS_PER_INT     32
++#define PR_BITS_PER_INT64   64
++#define PR_BITS_PER_LONG    64
++#define PR_BITS_PER_FLOAT   32
++#define PR_BITS_PER_DOUBLE  64
++#define PR_BITS_PER_WORD    64
++
++#define PR_BITS_PER_BYTE_LOG2   3
++#define PR_BITS_PER_SHORT_LOG2  4
++#define PR_BITS_PER_INT_LOG2    5
++#define PR_BITS_PER_INT64_LOG2  6
++#define PR_BITS_PER_LONG_LOG2   6
++#define PR_BITS_PER_FLOAT_LOG2  5
++#define PR_BITS_PER_DOUBLE_LOG2 6
++#define PR_BITS_PER_WORD_LOG2   6
++
++#define PR_ALIGN_OF_SHORT   2
++#define PR_ALIGN_OF_INT     4
++#define PR_ALIGN_OF_LONG    8
++#define PR_ALIGN_OF_INT64   8
++#define PR_ALIGN_OF_FLOAT   4
++#define PR_ALIGN_OF_DOUBLE  8
++#define PR_ALIGN_OF_POINTER 8
++#define PR_ALIGN_OF_WORD    8
++
++#define PR_BYTES_PER_WORD_LOG2  3
++#define PR_BYTES_PER_DWORD_LOG2 3
++
++#elif defined(__amd64__)
++#define IS_LITTLE_ENDIAN 1
++#undef  IS_BIG_ENDIAN
++#define IS_64
++
++#define PR_BYTES_PER_BYTE   1
++#define PR_BYTES_PER_SHORT  2
++#define PR_BYTES_PER_INT    4
++#define PR_BYTES_PER_INT64  8
++#define PR_BYTES_PER_LONG   8
++#define PR_BYTES_PER_FLOAT  4
++#define PR_BYTES_PER_DOUBLE 8
++#define PR_BYTES_PER_WORD   8
++#define PR_BYTES_PER_DWORD  8
++
++#define PR_BITS_PER_BYTE    8
++#define PR_BITS_PER_SHORT   16
++#define PR_BITS_PER_INT     32
++#define PR_BITS_PER_INT64   64
++#define PR_BITS_PER_LONG    64
++#define PR_BITS_PER_FLOAT   32
++#define PR_BITS_PER_DOUBLE  64
++#define PR_BITS_PER_WORD    64
++
++#define PR_BITS_PER_BYTE_LOG2   3
++#define PR_BITS_PER_SHORT_LOG2  4
++#define PR_BITS_PER_INT_LOG2    5
++#define PR_BITS_PER_INT64_LOG2  6
++#define PR_BITS_PER_LONG_LOG2   6
++#define PR_BITS_PER_FLOAT_LOG2  5
++#define PR_BITS_PER_DOUBLE_LOG2 6
++#define PR_BITS_PER_WORD_LOG2   6
++
++#define PR_ALIGN_OF_SHORT   2
++#define PR_ALIGN_OF_INT     4
++#define PR_ALIGN_OF_LONG    8
++#define PR_ALIGN_OF_INT64   8
++#define PR_ALIGN_OF_FLOAT   4
++#define PR_ALIGN_OF_DOUBLE  8
++#define PR_ALIGN_OF_POINTER 8
++#define PR_ALIGN_OF_WORD    8
++
++#define PR_BYTES_PER_WORD_LOG2  3
++#define PR_BYTES_PER_DWORD_LOG2 3
++
++#define HAVE_LONG_LONG
++#define HAVE_ALIGNED_DOUBLES
++#define HAVE_ALIGNED_LONGLONGS
+ #else
+ 
+ #error "Unknown CPU architecture"
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/files/patch-nsprpub::pr::include::md::_freebsd.h /usr/ports/www/nvu/files/patch-nsprpub::pr::include::md::_freebsd.h
--- /usr/ports/www/nvu.orig/files/patch-nsprpub::pr::include::md::_freebsd.h	Wed Dec 31 19:00:00 1969
+++ /usr/ports/www/nvu/files/patch-nsprpub::pr::include::md::_freebsd.h	Sat Oct 16 12:52:33 2004
@@ -0,0 +1,13 @@
+--- nsprpub/pr/include/md/_freebsd.h.orig	Sat Nov 15 18:36:13 2003
++++ nsprpub/pr/include/md/_freebsd.h	Sun Dec 14 11:40:08 2003
+@@ -50,6 +50,10 @@
+ #define _PR_SI_ARCHITECTURE "alpha"
+ #elif defined(__sparc__)
+ #define _PR_SI_ARCHITECTURE "sparc"
++#elif defined(__ia64__)
++#define _PR_SI_ARCHITECTURE "ia64"
++#elif defined(__amd64__)
++#define _PR_SI_ARCHITECTURE "amd64"
+ #else
+ #error "Unknown CPU architecture"
+ #endif
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/files/patch-nsprpub::pr::src::pthreads::ptio.c /usr/ports/www/nvu/files/patch-nsprpub::pr::src::pthreads::ptio.c
--- /usr/ports/www/nvu.orig/files/patch-nsprpub::pr::src::pthreads::ptio.c	Wed Dec 31 19:00:00 1969
+++ /usr/ports/www/nvu/files/patch-nsprpub::pr::src::pthreads::ptio.c	Sat Oct 16 12:52:33 2004
@@ -0,0 +1,29 @@
+--- nsprpub/pr/src/pthreads/ptio.c.orig	Mon Jul 14 17:59:47 2003
++++ nsprpub/pr/src/pthreads/ptio.c	Fri Aug 29 15:39:46 2003
+@@ -189,7 +189,7 @@
+ #endif
+ #endif
+ 
+-#ifdef DARWIN
++#if defined(DARWIN) || defined(FREEBSD)
+ 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
+@@ -1154,7 +1154,7 @@
+     _pr_stderr = pt_SetMethods(2, PR_DESC_FILE, PR_FALSE, PR_TRUE);
+     PR_ASSERT(_pr_stdin && _pr_stdout && _pr_stderr);
+ 
+-#ifdef DARWIN
++#if defined(DARWIN) || defined(FREEBSD)
+     /* In Mac OS X v10.3 Panther Beta the IPV6_V6ONLY socket option
+      * is turned on by default, contrary to what RFC 3493, Section
+      * 5.3 says.  So we have to turn it off.  Find out whether we
+@@ -3462,7 +3462,7 @@
+     if (osfd == -1) pt_MapError(_PR_MD_MAP_SOCKET_ERROR, errno);
+     else
+     {
+-#ifdef DARWIN
++#if defined(DARWIN) || defined(FREEBSD)
+         if ((domain == AF_INET6) && _pr_ipv6_v6only_on_by_default)
+         {
+             int on = 0;
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/files/patch-xpcom::reflect::xptcall::public::xptcstubsdecl.inc /usr/ports/www/nvu/files/patch-xpcom::reflect::xptcall::public::xptcstubsdecl.inc
--- /usr/ports/www/nvu.orig/files/patch-xpcom::reflect::xptcall::public::xptcstubsdecl.inc	Wed Dec 31 19:00:00 1969
+++ /usr/ports/www/nvu/files/patch-xpcom::reflect::xptcall::public::xptcstubsdecl.inc	Sat Oct 16 12:52:33 2004
@@ -0,0 +1,11 @@
+--- xpcom/reflect/xptcall/public/xptcstubsdecl.inc.orig	Tue Mar 16 03:07:25 2004
++++ xpcom/reflect/xptcall/public/xptcstubsdecl.inc	Fri Mar 19 15:58:14 2004
+@@ -8,7 +8,7 @@
+ *  1 is AddRef
+ *  2 is Release
+ */
+-#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__))
++#if !defined(__ia64)
+ NS_IMETHOD Stub3();
+ NS_IMETHOD Stub4();
+ NS_IMETHOD Stub5();
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/files/patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in /usr/ports/www/nvu/files/patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in
--- /usr/ports/www/nvu.orig/files/patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in	Wed Dec 31 19:00:00 1969
+++ /usr/ports/www/nvu/files/patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in	Sat Oct 16 12:52:33 2004
@@ -0,0 +1,56 @@
+--- xpcom/reflect/xptcall/src/md/unix/Makefile.in.orig	Thu Aug 14 21:00:23 2003
++++ xpcom/reflect/xptcall/src/md/unix/Makefile.in	Sun Feb  1 14:31:25 2004
+@@ -49,6 +49,9 @@
+ ifeq (86,$(findstring 86,$(OS_TEST)))
+ CPPSRCS		:= xptcinvoke_unixish_x86.cpp xptcstubs_unixish_x86.cpp
+ endif
++ifeq (amd64,$(OS_TEST))
++CPPSRCS		:= xptcinvoke_amd64_freebsd.cpp xptcstubs_amd64_freebsd.cpp
++endif
+ endif
+ #
+ # New code for Linux, et. al., with gcc
+@@ -59,8 +62,8 @@
+ CPPSRCS		:= xptcinvoke_gcc_x86_unix.cpp xptcstubs_gcc_x86_unix.cpp
+ endif
+ endif
+-# IA64 Linux
+-ifneq (,$(filter Linux,$(OS_ARCH)))
++# IA64 Linux & FreeBSD
++ifneq (,$(filter Linux FreeBSD,$(OS_ARCH)))
+ ifneq (,$(findstring ia64,$(OS_TEST)))
+ CPPSRCS		:= xptcinvoke_ipf64.cpp xptcstubs_ipf64.cpp
+ ASFILES		:= xptcstubs_asm_ipf64.s xptcinvoke_asm_ipf64.s
+@@ -106,9 +109,15 @@
+ ASFILES		:= xptcinvoke_asm_osf1_alpha.s xptcstubs_asm_osf1_alpha.s
+ endif
+ #
++# FreeBSD/Alpha
++#
++ifeq ($(OS_ARCH)$(OS_TEST),FreeBSDalpha)
++CPPSRCS		:= xptcinvoke_freebsd_alpha.cpp xptcstubs_freebsd_alpha.cpp
++endif
++#
+ # Linux/Alpha
+ #
+-ifneq (,$(filter Linuxalpha FreeBSDalpha NetBSDalpha,$(OS_ARCH)$(OS_TEST)))                           
++ifneq (,$(filter Linuxalpha NetBSDalpha,$(OS_ARCH)$(OS_TEST)))                           
+ CPPSRCS		:= xptcinvoke_linux_alpha.cpp xptcstubs_linux_alpha.cpp
+ endif
+ #
+@@ -294,6 +303,15 @@
+ ifeq ($(OS_ARCH)$(OS_TEST),NetBSDsparc)
+ CPPSRCS		:= xptcinvoke_sparc_netbsd.cpp xptcstubs_sparc_netbsd.cpp
+ ASFILES		:= xptcinvoke_asm_sparc_netbsd.s xptcstubs_asm_sparc_netbsd.s
++endif
++#
++# FreeBSD/SPARC64
++#
++ifeq ($(OS_ARCH),FreeBSD)
++ifneq (,$(findstring sparc,$(OS_TEST)))
++CPPSRCS		:= xptcinvoke_sparc64_freebsd.cpp xptcstubs_sparc64_freebsd.cpp
++ASFILES		:= xptcinvoke_asm_sparc64_freebsd.s xptcstubs_asm_sparcv9_solaris.s
++endif
+ endif
+ #
+ # Solaris/SPARC
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/files/patch-xptcall-alpha /usr/ports/www/nvu/files/patch-xptcall-alpha
--- /usr/ports/www/nvu.orig/files/patch-xptcall-alpha	Wed Dec 31 19:00:00 1969
+++ /usr/ports/www/nvu/files/patch-xptcall-alpha	Sat Oct 16 12:52:33 2004
@@ -0,0 +1,459 @@
+--- xpcom/reflect/xptcall/src/md/unix/xptcinvoke_freebsd_alpha.cpp.orig	Tue May 27 01:37:25 2003
++++ xpcom/reflect/xptcall/src/md/unix/xptcinvoke_freebsd_alpha.cpp	Tue May 27 01:37:00 2003
+@@ -0,0 +1,184 @@
++/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
++/* ***** BEGIN LICENSE BLOCK *****
++ * Version: NPL 1.1/GPL 2.0/LGPL 2.1
++ *
++ * The contents of this file are subject to the Netscape Public License
++ * Version 1.1 (the "License"); you may not use this file except in
++ * compliance with the License. You may obtain a copy of the License at
++ * http://www.mozilla.org/NPL/
++ *
++ * Software distributed under the License is distributed on an "AS IS" basis,
++ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
++ * for the specific language governing rights and limitations under the
++ * License.
++ *
++ * The Original Code is mozilla.org code.
++ *
++ * The Initial Developer of the Original Code is 
++ * Netscape Communications Corporation.
++ * Portions created by the Initial Developer are Copyright (C) 1998
++ * the Initial Developer. All Rights Reserved.
++ *
++ * Contributor(s):
++ *
++ * Alternatively, the contents of this file may be used under the terms of
++ * either the GNU General Public License Version 2 or later (the "GPL"), or 
++ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
++ * in which case the provisions of the GPL or the LGPL are applicable instead
++ * of those above. If you wish to allow use of your version of this file only
++ * under the terms of either the GPL or the LGPL, and not to allow others to
++ * use your version of this file under the terms of the NPL, indicate your
++ * decision by deleting the provisions above and replace them with the notice
++ * and other provisions required by the GPL or the LGPL. If you do not delete
++ * the provisions above, a recipient may use your version of this file under
++ * the terms of any one of the NPL, the GPL or the LGPL.
++ *
++ * ***** END LICENSE BLOCK ***** */
++
++/* Platform specific code to invoke XPCOM methods on native objects */
++
++/* contributed by Glen Nakamura <glen.nakamura at usa.net> */
++
++#include "xptcprivate.h"
++
++/* Prototype specifies unmangled function name and disables unused warning */
++static void
++invoke_copy_to_stack(PRUint64* d, PRUint32 paramCount, nsXPTCVariant* s)
++__asm__("invoke_copy_to_stack") __attribute__((unused));
++
++static void
++invoke_copy_to_stack(PRUint64* d, PRUint32 paramCount, nsXPTCVariant* s)
++{
++    const PRUint8 NUM_ARG_REGS = 6-1;        // -1 for "this" pointer
++
++    for(PRUint32 i = 0; i < paramCount; i++, d++, s++)
++    {
++        if(s->IsPtrData())
++        {
++            *d = (PRUint64)s->ptr;
++            continue;
++        }
++        switch(s->type)
++        {
++        case nsXPTType::T_I8     : *d = (PRUint64)s->val.i8;     break;
++        case nsXPTType::T_I16    : *d = (PRUint64)s->val.i16;    break;
++        case nsXPTType::T_I32    : *d = (PRUint64)s->val.i32;    break;
++        case nsXPTType::T_I64    : *d = (PRUint64)s->val.i64;    break;
++        case nsXPTType::T_U8     : *d = (PRUint64)s->val.u8;     break;
++        case nsXPTType::T_U16    : *d = (PRUint64)s->val.u16;    break;
++        case nsXPTType::T_U32    : *d = (PRUint64)s->val.u32;    break;
++        case nsXPTType::T_U64    : *d = (PRUint64)s->val.u64;    break;
++        case nsXPTType::T_FLOAT  :
++            if(i < NUM_ARG_REGS)
++            {
++                // convert floats to doubles if they are to be passed
++                // via registers so we can just deal with doubles later
++                union { PRUint64 u64; double d; } t;
++                t.d = (double)s->val.f;
++                *d = t.u64;
++            }
++            else
++                // otherwise copy to stack normally
++                *d = (PRUint64)s->val.u32;
++            break;
++        case nsXPTType::T_DOUBLE : *d = (PRUint64)s->val.u64;    break;
++        case nsXPTType::T_BOOL   : *d = (PRUint64)s->val.b;      break;
++        case nsXPTType::T_CHAR   : *d = (PRUint64)s->val.c;      break;
++        case nsXPTType::T_WCHAR  : *d = (PRUint64)s->val.wc;     break;
++        default:
++            // all the others are plain pointer types
++            *d = (PRUint64)s->val.p;
++            break;
++        }
++    }
++}
++
++/*
++ * XPTC_PUBLIC_API(nsresult)
++ * XPTC_InvokeByIndex(nsISupports* that, PRUint32 methodIndex,
++ *                    PRUint32 paramCount, nsXPTCVariant* params, void* vt)
++ */
++__asm__(
++    "#### XPTC_InvokeByIndex ####\n"
++".text\n\t"
++    ".align 5\n\t"
++    ".globl XPTC_InvokeByIndex\n\t"
++    ".ent XPTC_InvokeByIndex\n"
++"XPTC_InvokeByIndex:\n\t"
++    ".frame $15,32,$26,0\n\t"
++    ".mask 0x4008000,-32\n\t"
++    "ldgp $29,0($27)\n"
++"$XPTC_InvokeByIndex..ng:\n\t"
++    "subq $30,32,$30\n\t"
++    "stq $26,0($30)\n\t"
++    "stq $15,8($30)\n\t"
++    "bis $30,$30,$15\n\t"
++    ".prologue 1\n\t"
++
++    /*
++     * Allocate enough stack space to hold the greater of 6 or "paramCount"+1
++     * parameters. (+1 for "this" pointer)  Room for at least 6 parameters
++     * is required for storage of those passed via registers.
++     */
++
++    "bis $31,5,$2\n\t"      /* count = MAX(5, "paramCount") */
++    "cmplt $2,$18,$1\n\t"
++    "cmovne $1,$18,$2\n\t"
++    "s8addq $2,16,$1\n\t"   /* room for count+1 params (8 bytes each) */
++    "bic $1,15,$1\n\t"      /* stack space is rounded up to 0 % 16 */
++    "subq $30,$1,$30\n\t"
++
++    "stq $16,0($30)\n\t"    /* save "that" (as "this" pointer) */
++    "stq $17,16($15)\n\t"   /* save "methodIndex" */
++
++    "addq $30,8,$16\n\t"    /* pass stack pointer */
++    "bis $18,$18,$17\n\t"   /* pass "paramCount" */
++    "bis $19,$19,$18\n\t"   /* pass "params" */
++    "bsr $26,$invoke_copy_to_stack..ng\n\t"     /* call invoke_copy_to_stack */
++
++    /*
++     * Copy the first 6 parameters to registers and remove from stack frame.
++     * Both the integer and floating point registers are set for each parameter
++     * except the first which is the "this" pointer.  (integer only)
++     * The floating point registers are all set as doubles since the
++     * invoke_copy_to_stack function should have converted the floats.
++     */
++    "ldq $16,0($30)\n\t"    /* integer registers */
++    "ldq $17,8($30)\n\t"
++    "ldq $18,16($30)\n\t"
++    "ldq $19,24($30)\n\t"
++    "ldq $20,32($30)\n\t"
++    "ldq $21,40($30)\n\t"
++    "ldt $f17,8($30)\n\t"   /* floating point registers */
++    "ldt $f18,16($30)\n\t"
++    "ldt $f19,24($30)\n\t"
++    "ldt $f20,32($30)\n\t"
++    "ldt $f21,40($30)\n\t"
++
++    "addq $30,48,$30\n\t"   /* remove params from stack */
++
++    /*
++     * Call the virtual function with the constructed stack frame.
++     */
++    "bis $16,$16,$1\n\t"    /* load "this" */
++    "ldq $2,16($15)\n\t"    /* load "methodIndex" */
++    "ldq $1,0($1)\n\t"      /* load vtable */
++#if 0
++    "s8addq $2,16,$2\n\t"   /* vtable index = "methodIndex" * 8 + 16 */
++#else
++    "mulq $2, 8, $2\n\t"
++    "addq $2, 0, $2\n\t"   /* vtable index = "methodIndex" * 16 + 24 */
++#endif
++    "addq $1,$2,$1\n\t"
++    "ldq $27,0($1)\n\t"     /* load address of function */
++    "jsr $26,($27),0\n\t"   /* call virtual function */
++    "ldgp $29,0($26)\n\t"
++
++    "bis $15,$15,$30\n\t"
++    "ldq $26,0($30)\n\t"
++    "ldq $15,8($30)\n\t"
++    "addq $30,32,$30\n\t"
++    "ret $31,($26),1\n\t"
++    ".end XPTC_InvokeByIndex"
++    );
++
+--- xpcom/reflect/xptcall/src/md/unix/xptcstubs_freebsd_alpha.cpp.orig	Tue May 27 01:37:30 2003
++++ xpcom/reflect/xptcall/src/md/unix/xptcstubs_freebsd_alpha.cpp	Tue May 27 01:37:04 2003
+@@ -0,0 +1,269 @@
++/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
++/* ***** BEGIN LICENSE BLOCK *****
++ * Version: NPL 1.1/GPL 2.0/LGPL 2.1
++ *
++ * The contents of this file are subject to the Netscape Public License
++ * Version 1.1 (the "License"); you may not use this file except in
++ * compliance with the License. You may obtain a copy of the License at
++ * http://www.mozilla.org/NPL/
++ *
++ * Software distributed under the License is distributed on an "AS IS" basis,
++ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
++ * for the specific language governing rights and limitations under the
++ * License.
++ *
++ * The Original Code is mozilla.org code.
++ *
++ * The Initial Developer of the Original Code is 
++ * Netscape Communications Corporation.
++ * Portions created by the Initial Developer are Copyright (C) 1999
++ * the Initial Developer. All Rights Reserved.
++ *
++ * Contributor(s):
++ *
++ * Alternatively, the contents of this file may be used under the terms of
++ * either the GNU General Public License Version 2 or later (the "GPL"), or 
++ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
++ * in which case the provisions of the GPL or the LGPL are applicable instead
++ * of those above. If you wish to allow use of your version of this file only
++ * under the terms of either the GPL or the LGPL, and not to allow others to
++ * use your version of this file under the terms of the NPL, indicate your
++ * decision by deleting the provisions above and replace them with the notice
++ * and other provisions required by the GPL or the LGPL. If you do not delete
++ * the provisions above, a recipient may use your version of this file under
++ * the terms of any one of the NPL, the GPL or the LGPL.
++ *
++ * ***** END LICENSE BLOCK ***** */
++
++/* Implement shared vtbl methods. */
++
++/* contributed by Glen Nakamura <glen.nakamura at usa.net> */
++
++#include <sys/types.h>
++#include <machine/cpu.h>
++#include "xptcprivate.h"
++
++/* Prototype specifies unmangled function name and disables unused warning */
++static nsresult
++PrepareAndDispatch(nsXPTCStubBase* self, uint32 methodIndex, PRUint64* args)
++__asm__("PrepareAndDispatch") __attribute__((unused));
++
++static nsresult
++PrepareAndDispatch(nsXPTCStubBase* self, uint32 methodIndex, PRUint64* args)
++{
++    const PRUint8 PARAM_BUFFER_COUNT = 16;
++    const PRUint8 NUM_ARG_REGS = 6-1;        // -1 for "this" pointer
++
++    nsXPTCMiniVariant paramBuffer[PARAM_BUFFER_COUNT];
++    nsXPTCMiniVariant* dispatchParams = NULL;
++    nsIInterfaceInfo* iface_info = NULL;
++    const nsXPTMethodInfo* info;
++    PRUint8 paramCount;
++    PRUint8 i;
++    nsresult result = NS_ERROR_FAILURE;
++
++    NS_ASSERTION(self,"no self");
++
++    self->GetInterfaceInfo(&iface_info);
++    NS_ASSERTION(iface_info,"no interface info");
++
++    iface_info->GetMethodInfo(PRUint16(methodIndex), &info);
++    NS_ASSERTION(info,"no interface info");
++
++    paramCount = info->GetParamCount();
++
++    // setup variant array pointer
++    if(paramCount > PARAM_BUFFER_COUNT)
++        dispatchParams = new nsXPTCMiniVariant[paramCount];
++    else
++        dispatchParams = paramBuffer;
++    NS_ASSERTION(dispatchParams,"no place for params");
++
++    // args[0] to args[NUM_ARG_REGS] hold floating point register values
++    PRUint64* ap = args + NUM_ARG_REGS;
++    for(i = 0; i < paramCount; i++, ap++)
++    {
++        const nsXPTParamInfo& param = info->GetParam(i);
++        const nsXPTType& type = param.GetType();
++        nsXPTCMiniVariant* dp = &dispatchParams[i];
++
++        if(param.IsOut() || !type.IsArithmetic())
++        {
++            dp->val.p = (void*) *ap;
++            continue;
++        }
++        // else
++        switch(type)
++        {
++        case nsXPTType::T_I8     : dp->val.i8  = (PRInt8)    *ap;    break;
++        case nsXPTType::T_I16    : dp->val.i16 = (PRInt16)   *ap;    break;
++        case nsXPTType::T_I32    : dp->val.i32 = (PRInt32)   *ap;    break;
++        case nsXPTType::T_I64    : dp->val.i64 = (PRInt64)   *ap;    break;
++        case nsXPTType::T_U8     : dp->val.u8  = (PRUint8)   *ap;    break;
++        case nsXPTType::T_U16    : dp->val.u16 = (PRUint16)  *ap;    break;
++        case nsXPTType::T_U32    : dp->val.u32 = (PRUint32)  *ap;    break;
++        case nsXPTType::T_U64    : dp->val.u64 = (PRUint64)  *ap;    break;
++        case nsXPTType::T_FLOAT  :
++            if(i < NUM_ARG_REGS)
++            {
++                // floats passed via registers are stored as doubles
++                // in the first NUM_ARG_REGS entries in args
++                dp->val.u64 = (PRUint64) args[i];
++                dp->val.f = (float) dp->val.d;    // convert double to float
++            }
++            else
++                dp->val.u32 = (PRUint32) *ap;
++            break;
++        case nsXPTType::T_DOUBLE :
++            // doubles passed via registers are also stored
++            // in the first NUM_ARG_REGS entries in args
++            dp->val.u64 = (i < NUM_ARG_REGS) ? args[i] : *ap;
++            break;
++        case nsXPTType::T_BOOL   : dp->val.b   = (PRBool)    *ap;    break;
++        case nsXPTType::T_CHAR   : dp->val.c   = (char)      *ap;    break;
++        case nsXPTType::T_WCHAR  : dp->val.wc  = (PRUnichar) *ap;    break;
++        default:
++            NS_ASSERTION(0, "bad type");
++            break;
++        }
++    }
++
++    result = self->CallMethod((PRUint16)methodIndex, info, dispatchParams);
++
++    NS_RELEASE(iface_info);
++
++    if(dispatchParams != paramBuffer)
++        delete [] dispatchParams;
++
++    return result;
++}
++
++/*
++ * SharedStub()
++ *  Collects arguments and calls PrepareAndDispatch.  The "methodIndex" is
++ *  passed to this function via $1 to preserve the argument registers.
++ */
++__asm__(
++    "#### SharedStub ####\n"
++".text\n\t"
++    ".align 5\n\t"
++    ".ent SharedStub\n"
++"SharedStub:\n\t"
++    ".frame $30,96,$26,0\n\t"
++    ".mask 0x4000000,-96\n\t"
++    "ldgp $29,0($27)\n"
++"$SharedStub..ng:\n\t"
++    "subq $30,96,$30\n\t"
++    "stq $26,0($30)\n\t"
++    ".prologue 1\n\t"
++
++    /*
++     * Store arguments passed via registers to the stack.
++     * Floating point registers are stored as doubles and converted
++     * to floats in PrepareAndDispatch if necessary.
++     */
++    "stt $f17,16($30)\n\t"   /* floating point registers */
++    "stt $f18,24($30)\n\t"
++    "stt $f19,32($30)\n\t"
++    "stt $f20,40($30)\n\t"
++    "stt $f21,48($30)\n\t"
++    "stq $17,56($30)\n\t"    /* integer registers */
++    "stq $18,64($30)\n\t"
++    "stq $19,72($30)\n\t"
++    "stq $20,80($30)\n\t"
++    "stq $21,88($30)\n\t"
++
++    /*
++     * Call PrepareAndDispatch function.
++     */
++    "bis $1,$1,$17\n\t"      /* pass "methodIndex" */
++    "addq $30,16,$18\n\t"    /* pass "args" */
++    "bsr $26,$PrepareAndDispatch..ng\n\t"
++
++    "ldq $26,0($30)\n\t"
++    "addq $30,96,$30\n\t"
++    "ret $31,($26),1\n\t"
++    ".end SharedStub"
++    );
++
++#if defined(__GXX_ABI_VERSION) && __GXX_ABI_VERSION >= 100 /* G++ V3 ABI */
++/*
++ * nsresult nsXPTCStubBase::Stub##n()
++ *  Sets register $1 to "methodIndex" and jumps to SharedStub.
++ */
++#define STUB_ENTRY(n) \
++__asm__( \
++    "#### Stub"#n" ####\n" \
++".text\n\t" \
++    ".align 5\n\t" \
++    ".globl _ZN14nsXPTCStubBase5Stub"#n"Ev\n\t" \
++    ".ent _ZN14nsXPTCStubBase5Stub"#n"Ev\n" \
++"_ZN14nsXPTCStubBase5Stub"#n"Ev:\n\t" \
++    ".frame $30,0,$26,0\n\t" \
++    "ldgp $29,0($27)\n" \
++"$_ZN14nsXPTCStubBase5Stub"#n"Ev..ng:\n\t" \
++    ".prologue 1\n\t" \
++    "lda $1,"#n"\n\t" \
++    "br $31,$SharedStub..ng\n\t" \
++    ".end _ZN14nsXPTCStubBase5Stub"#n"Ev" \
++    ); \
++__asm__( \
++    "#### Stub"#n" ####\n" \
++".text\n\t" \
++    ".align 5\n\t" \
++    ".globl _ZN14nsXPTCStubBase6Stub"#n"Ev\n\t" \
++    ".ent _ZN14nsXPTCStubBase6Stub"#n"Ev\n" \
++"_ZN14nsXPTCStubBase6Stub"#n"Ev:\n\t" \
++    ".frame $30,0,$26,0\n\t" \
++    "ldgp $29,0($27)\n" \
++"$_ZN14nsXPTCStubBase6Stub"#n"Ev..ng:\n\t" \
++    ".prologue 1\n\t" \
++    "lda $1,"#n"\n\t" \
++    "br $31,$SharedStub..ng\n\t" \
++    ".end _ZN14nsXPTCStubBase6Stub"#n"Ev" \
++    ); \
++__asm__( \
++    "#### Stub"#n" ####\n" \
++".text\n\t" \
++    ".align 5\n\t" \
++    ".globl _ZN14nsXPTCStubBase7Stub"#n"Ev\n\t" \
++    ".ent _ZN14nsXPTCStubBase7Stub"#n"Ev\n" \
++"_ZN14nsXPTCStubBase7Stub"#n"Ev:\n\t" \
++    ".frame $30,0,$26,0\n\t" \
++    "ldgp $29,0($27)\n" \
++"$_ZN14nsXPTCStubBase7Stub"#n"Ev..ng:\n\t" \
++    ".prologue 1\n\t" \
++    "lda $1,"#n"\n\t" \
++    "br $31,$SharedStub..ng\n\t" \
++    ".end _ZN14nsXPTCStubBase7Stub"#n"Ev" \
++    );
++#else
++/*
++ * nsresult nsXPTCStubBase::Stub##n()
++ *  Sets register $1 to "methodIndex" and jumps to SharedStub.
++ */
++#define STUB_ENTRY(n) \
++nsresult nsXPTCStubBase::Stub##n() \
++{ \
++    nsresult result; \
++__asm__ __volatile__( \
++    "ldah    $29,0($27)\n\t" \
++    "lda     $29,0($29)\n\t" \
++    "lda $1, "#n"\n\t" \
++    "br $31, $SharedStub..ng\n\t" \
++    "mov $0, %0\n\t" \
++    : "=r" (result) \
++    ); \
++    return result; \
++}
++#endif
++
++#define SENTINEL_ENTRY(n) \
++nsresult nsXPTCStubBase::Sentinel##n() \
++{ \
++    NS_ASSERTION(0,"nsXPTCStubBase::Sentinel called"); \
++    return NS_ERROR_NOT_IMPLEMENTED; \
++}
++
++#include "xptcstubsdef.inc"
++
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/files/patch-xptcall-amd64 /usr/ports/www/nvu/files/patch-xptcall-amd64
--- /usr/ports/www/nvu.orig/files/patch-xptcall-amd64	Wed Dec 31 19:00:00 1969
+++ /usr/ports/www/nvu/files/patch-xptcall-amd64	Sat Oct 16 12:52:33 2004
@@ -0,0 +1,386 @@
+--- /dev/null	Wed Dec 31 16:00:00 1969
++++ xpcom/reflect/xptcall/src/md/unix/xptcinvoke_amd64_freebsd.cpp	Thu Oct 16 22:59:43 2003
+@@ -0,0 +1,174 @@
++/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
++// Platform specific code to invoke XPCOM methods on native objects
++
++#include "xptcprivate.h"
++
++// 6 integral parameters are passed in registers
++const PRUint32 GPR_COUNT = 6;
++
++// 8 floating point parameters are passed in SSE registers
++const PRUint32 FPR_COUNT = 8;
++
++// Remember that these 'words' are 64-bit long
++static inline void
++invoke_count_words(PRUint32 paramCount, nsXPTCVariant * s,
++                   PRUint32 & nr_gpr, PRUint32 & nr_fpr, PRUint32 & nr_stack)
++{
++    nr_gpr = 1; // skip one GP register for 'that'
++    nr_fpr = 0;
++    nr_stack = 0;
++
++    /* Compute number of eightbytes of class MEMORY.  */
++    for (uint32 i = 0; i < paramCount; i++, s++) {
++        if (!s->IsPtrData()
++            && (s->type == nsXPTType::T_FLOAT || s->type == nsXPTType::T_DOUBLE)) {
++            if (nr_fpr < FPR_COUNT)
++                nr_fpr++;
++            else
++                nr_stack++;
++        }
++        else {
++            if (nr_gpr < GPR_COUNT)
++                nr_gpr++;
++            else
++                nr_stack++;
++        }
++    }
++}
++
++static void
++invoke_copy_to_stack(PRUint64 * d, PRUint32 paramCount, nsXPTCVariant * s,
++                     PRUint64 * gpregs, double * fpregs)
++{
++    PRUint32 nr_gpr = 1; // skip one GP register for 'that'
++    PRUint32 nr_fpr = 0;
++    PRUint64 value;
++
++    for (uint32 i = 0; i < paramCount; i++, s++) {
++        if (s->IsPtrData())
++            value = (PRUint64) s->ptr;
++        else {
++            switch (s->type) {
++            case nsXPTType::T_FLOAT:                                break;
++            case nsXPTType::T_DOUBLE:                               break;
++            case nsXPTType::T_I8:     value = s->val.i8;            break;
++            case nsXPTType::T_I16:    value = s->val.i16;           break;
++            case nsXPTType::T_I32:    value = s->val.i32;           break;
++            case nsXPTType::T_I64:    value = s->val.i64;           break;
++            case nsXPTType::T_U8:     value = s->val.u8;            break;
++            case nsXPTType::T_U16:    value = s->val.u16;           break;
++            case nsXPTType::T_U32:    value = s->val.u32;           break;
++            case nsXPTType::T_U64:    value = s->val.u64;           break;
++            case nsXPTType::T_BOOL:   value = s->val.b;             break;
++            case nsXPTType::T_CHAR:   value = s->val.c;             break;
++            case nsXPTType::T_WCHAR:  value = s->val.wc;            break;
++            default:                  value = (PRUint64) s->val.p;  break;
++            }
++        }
++
++        if (!s->IsPtrData() && s->type == nsXPTType::T_DOUBLE) {
++            if (nr_fpr < FPR_COUNT)
++                fpregs[nr_fpr++] = s->val.d;
++            else {
++                *((double *)d) = s->val.d;
++                d++;
++            }
++        }
++        else if (!s->IsPtrData() && s->type == nsXPTType::T_FLOAT) {
++            if (nr_fpr < FPR_COUNT)
++                // The value in %xmm register is already prepared to
++                // be retrieved as a float. Therefore, we pass the
++                // value verbatim, as a double without conversion.
++                fpregs[nr_fpr++] = s->val.d;
++            else {
++                *((float *)d) = s->val.f;
++                d++;
++            }
++        }
++        else {
++            if (nr_gpr < GPR_COUNT)
++                gpregs[nr_gpr++] = value;
++            else
++                *d++ = value;
++        }
++    }
++}
++
++extern "C"
++XPTC_PUBLIC_API(nsresult)
++XPTC_InvokeByIndex(nsISupports * that, PRUint32 methodIndex,
++                   PRUint32 paramCount, nsXPTCVariant * params)
++{
++    PRUint32 nr_gpr, nr_fpr, nr_stack;
++    invoke_count_words(paramCount, params, nr_gpr, nr_fpr, nr_stack);
++    
++    // Stack, if used, must be 16-bytes aligned
++    if (nr_stack)
++        nr_stack = (nr_stack + 1) & ~1;
++
++    // Load parameters to stack, if necessary
++    PRUint64 *stack = (PRUint64 *) __builtin_alloca(nr_stack * 8);
++    PRUint64 gpregs[GPR_COUNT];
++    double fpregs[FPR_COUNT];
++    invoke_copy_to_stack(stack, paramCount, params, gpregs, fpregs);
++
++    // Load FPR registers from fpregs[]
++    register double d0 asm("xmm0");
++    register double d1 asm("xmm1");
++    register double d2 asm("xmm2");
++    register double d3 asm("xmm3");
++    register double d4 asm("xmm4");
++    register double d5 asm("xmm5");
++    register double d6 asm("xmm6");
++    register double d7 asm("xmm7");
++
++    switch (nr_fpr) {
++#define ARG_FPR(N) \
++    case N+1: d##N = fpregs[N];
++        ARG_FPR(7);
++        ARG_FPR(6);
++        ARG_FPR(5);
++        ARG_FPR(4);
++        ARG_FPR(3);
++        ARG_FPR(2);
++        ARG_FPR(1);
++        ARG_FPR(0);
++    case 0:;
++#undef ARG_FPR
++    }
++    
++    // Load GPR registers from gpregs[]
++    register PRUint64 a0 asm("rdi");
++    register PRUint64 a1 asm("rsi");
++    register PRUint64 a2 asm("rdx");
++    register PRUint64 a3 asm("rcx");
++    register PRUint64 a4 asm("r8");
++    register PRUint64 a5 asm("r9");
++    
++    switch (nr_gpr) {
++#define ARG_GPR(N) \
++    case N+1: a##N = gpregs[N];
++        ARG_GPR(5);
++        ARG_GPR(4);
++        ARG_GPR(3);
++        ARG_GPR(2);
++        ARG_GPR(1);
++    case 1: a0 = (PRUint64) that;
++    case 0:;
++#undef ARG_GPR
++    }
++
++    // Ensure that assignments to SSE registers won't be optimized away
++    asm("" ::
++        "x" (d0), "x" (d1), "x" (d2), "x" (d3),
++        "x" (d4), "x" (d5), "x" (d6), "x" (d7));
++    
++    // Get pointer to method
++    PRUint64 methodAddress = *((PRUint64 *)that);
++    methodAddress += 8 * methodIndex;
++    methodAddress = *((PRUint64 *)methodAddress);
++    
++    typedef PRUint32 (*Method)(PRUint64, PRUint64, PRUint64, PRUint64, PRUint64, PRUint64);
++    PRUint32 result = ((Method)methodAddress)(a0, a1, a2, a3, a4, a5);
++    return result;
++}
+--- /dev/null	Wed Dec 31 16:00:00 1969
++++ xpcom/reflect/xptcall/src/md/unix/xptcstubs_amd64_freebsd.cpp	Thu Oct 16 23:01:08 2003
+@@ -0,0 +1,206 @@
++/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
++
++// Implement shared vtbl methods.
++
++#include "xptcprivate.h"
++
++// The Linux/x86-64 ABI passes the first 6 integral parameters and the
++// first 8 floating point parameters in registers (rdi, rsi, rdx, rcx,
++// r8, r9 and xmm0-xmm7), no stack space is allocated for these by the
++// caller.  The rest of the parameters are passed in the callers stack
++// area.
++
++const PRUint32 PARAM_BUFFER_COUNT   = 16;
++const PRUint32 GPR_COUNT            = 6;
++const PRUint32 FPR_COUNT            = 8;
++
++// PrepareAndDispatch() is called by SharedStub() and calls the actual method.
++//
++// - 'args[]' contains the arguments passed on stack
++// - 'gpregs[]' contains the arguments passed in integer registers
++// - 'fpregs[]' contains the arguments passed in floating point registers
++// 
++// The parameters are mapped into an array of type 'nsXPTCMiniVariant'
++// and then the method gets called.
++
++extern "C" nsresult
++PrepareAndDispatch(nsXPTCStubBase * self, PRUint32 methodIndex,
++                   PRUint64 * args, PRUint64 * gpregs, double *fpregs)
++{
++    nsXPTCMiniVariant paramBuffer[PARAM_BUFFER_COUNT];
++    nsXPTCMiniVariant* dispatchParams = NULL;
++    nsIInterfaceInfo* iface_info = NULL;
++    const nsXPTMethodInfo* info;
++    PRUint32 paramCount;
++    PRUint32 i;
++    nsresult result = NS_ERROR_FAILURE;
++
++    NS_ASSERTION(self,"no self");
++
++    self->GetInterfaceInfo(&iface_info);
++    NS_ASSERTION(iface_info,"no interface info");
++    if (! iface_info)
++        return NS_ERROR_UNEXPECTED;
++
++    iface_info->GetMethodInfo(PRUint16(methodIndex), &info);
++    NS_ASSERTION(info,"no method info");
++    if (! info)
++        return NS_ERROR_UNEXPECTED;
++
++    paramCount = info->GetParamCount();
++
++    // setup variant array pointer
++    if(paramCount > PARAM_BUFFER_COUNT)
++        dispatchParams = new nsXPTCMiniVariant[paramCount];
++    else
++        dispatchParams = paramBuffer;
++
++    NS_ASSERTION(dispatchParams,"no place for params");
++    if (! dispatchParams)
++        return NS_ERROR_OUT_OF_MEMORY;
++
++    PRUint64* ap = args;
++    PRUint32 nr_gpr = 1;    // skip one GPR register for 'that'
++    PRUint32 nr_fpr = 0;
++    PRUint64 value;
++
++    for(i = 0; i < paramCount; i++) {
++        const nsXPTParamInfo& param = info->GetParam(i);
++        const nsXPTType& type = param.GetType();
++        nsXPTCMiniVariant* dp = &dispatchParams[i];
++	
++        if (!param.IsOut() && type == nsXPTType::T_DOUBLE) {
++            if (nr_fpr < FPR_COUNT)
++                dp->val.d = fpregs[nr_fpr++];
++            else
++                dp->val.d = *(double*) ap++;
++            continue;
++        }
++        else if (!param.IsOut() && type == nsXPTType::T_FLOAT) {
++            if (nr_fpr < FPR_COUNT)
++                // The value in %xmm register is already prepared to
++                // be retrieved as a float. Therefore, we pass the
++                // value verbatim, as a double without conversion.
++                dp->val.d = *(double*) ap++;
++            else
++                dp->val.f = *(float*) ap++;
++            continue;
++        }
++        else {
++            if (nr_gpr < GPR_COUNT)
++                value = gpregs[nr_gpr++];
++            else
++                value = *ap++;
++        }
++
++        if (param.IsOut() || !type.IsArithmetic()) {
++            dp->val.p = (void*) value;
++            continue;
++        }
++
++        switch (type) {
++        case nsXPTType::T_I8:      dp->val.i8  = (PRInt8)   value; break;
++        case nsXPTType::T_I16:     dp->val.i16 = (PRInt16)  value; break;
++        case nsXPTType::T_I32:     dp->val.i32 = (PRInt32)  value; break;
++        case nsXPTType::T_I64:     dp->val.i64 = (PRInt64)  value; break;
++        case nsXPTType::T_U8:      dp->val.u8  = (PRUint8)  value; break;
++        case nsXPTType::T_U16:     dp->val.u16 = (PRUint16) value; break;
++        case nsXPTType::T_U32:     dp->val.u32 = (PRUint32) value; break;
++        case nsXPTType::T_U64:     dp->val.u64 = (PRUint64) value; break;
++        case nsXPTType::T_BOOL:    dp->val.b   = (PRBool)   value; break;
++        case nsXPTType::T_CHAR:    dp->val.c   = (char)     value; break;
++        case nsXPTType::T_WCHAR:   dp->val.wc  = (wchar_t)  value; break;
++
++        default:
++            NS_ASSERTION(0, "bad type");
++            break;
++        }
++    }
++
++    result = self->CallMethod((PRUint16) methodIndex, info, dispatchParams);
++
++    NS_RELEASE(iface_info);
++
++    if (dispatchParams != paramBuffer)
++        delete [] dispatchParams;
++
++    return result;
++}
++
++#if defined(__GXX_ABI_VERSION) && __GXX_ABI_VERSION >= 100 /* G++ V3 ABI */
++// Linux/x86-64 uses gcc >= 3.1
++#define STUB_ENTRY(n) \
++asm(".section	\".text\"\n\t" \
++    ".align	2\n\t" \
++    ".if	" #n " < 10\n\t" \
++    ".globl	_ZN14nsXPTCStubBase5Stub" #n "Ev\n\t" \
++    ".type	_ZN14nsXPTCStubBase5Stub" #n "Ev, at function\n" \
++    "_ZN14nsXPTCStubBase5Stub" #n "Ev:\n\t" \
++    ".elseif	" #n " < 100\n\t" \
++    ".globl	_ZN14nsXPTCStubBase6Stub" #n "Ev\n\t" \
++    ".type	_ZN14nsXPTCStubBase6Stub" #n "Ev, at function\n" \
++    "_ZN14nsXPTCStubBase6Stub" #n "Ev:\n\t" \
++    ".elseif    " #n " < 1000\n\t" \
++    ".globl     _ZN14nsXPTCStubBase7Stub" #n "Ev\n\t" \
++    ".type      _ZN14nsXPTCStubBase7Stub" #n "Ev, at function\n" \
++    "_ZN14nsXPTCStubBase7Stub" #n "Ev:\n\t" \
++    ".else\n\t" \
++    ".err	\"stub number " #n " >= 1000 not yet supported\"\n\t" \
++    ".endif\n\t" \
++    "movl	$" #n ", %eax\n\t" \
++    "jmp	SharedStub\n\t" \
++    ".if	" #n " < 10\n\t" \
++    ".size	_ZN14nsXPTCStubBase5Stub" #n "Ev,.-_ZN14nsXPTCStubBase5Stub" #n "Ev\n\t" \
++    ".elseif	" #n " < 100\n\t" \
++    ".size	_ZN14nsXPTCStubBase6Stub" #n "Ev,.-_ZN14nsXPTCStubBase6Stub" #n "Ev\n\t" \
++    ".else\n\t" \
++    ".size	_ZN14nsXPTCStubBase7Stub" #n "Ev,.-_ZN14nsXPTCStubBase7Stub" #n "Ev\n\t" \
++    ".endif");
++
++// static nsresult SharedStub(PRUint32 methodIndex)
++asm(".section   \".text\"\n\t"
++    ".align     2\n\t"
++    ".type      SharedStub, at function\n\t"
++    "SharedStub:\n\t"
++    // make room for gpregs (48), fpregs (64)
++    "pushq      %rbp\n\t"
++    "movq       %rsp,%rbp\n\t"
++    "subq       $112,%rsp\n\t"
++    // save GP registers
++    "movq       %rdi,-112(%rbp)\n\t"
++    "movq       %rsi,-104(%rbp)\n\t"
++    "movq       %rdx, -96(%rbp)\n\t"
++    "movq       %rcx, -88(%rbp)\n\t"
++    "movq       %r8 , -80(%rbp)\n\t"
++    "movq       %r9 , -72(%rbp)\n\t"
++    "leaq       -112(%rbp),%rcx\n\t"
++    // save FP registers
++    "movsd      %xmm0,-64(%rbp)\n\t"
++    "movsd      %xmm1,-56(%rbp)\n\t"
++    "movsd      %xmm2,-48(%rbp)\n\t"
++    "movsd      %xmm3,-40(%rbp)\n\t"
++    "movsd      %xmm4,-32(%rbp)\n\t"
++    "movsd      %xmm5,-24(%rbp)\n\t"
++    "movsd      %xmm6,-16(%rbp)\n\t"
++    "movsd      %xmm7, -8(%rbp)\n\t"
++    "leaq       -64(%rbp),%r8\n\t"
++    // rdi has the 'self' pointer already
++    "movl       %eax,%esi\n\t"
++    "leaq       16(%rbp),%rdx\n\t"
++    "call       PrepareAndDispatch\n\t"
++    "leave\n\t"
++    "ret\n\t"
++    ".size      SharedStub,.-SharedStub");
++
++#define SENTINEL_ENTRY(n) \
++nsresult nsXPTCStubBase::Sentinel##n() \
++{ \
++    NS_ASSERTION(0,"nsXPTCStubBase::Sentinel called"); \
++    return NS_ERROR_NOT_IMPLEMENTED; \
++}
++
++#include "xptcstubsdef.inc"
++
++#else
++#error "can't find a compiler to use"
++#endif /* __GNUC__ */
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/files/patch-xptcall-ia64 /usr/ports/www/nvu/files/patch-xptcall-ia64
--- /usr/ports/www/nvu.orig/files/patch-xptcall-ia64	Wed Dec 31 19:00:00 1969
+++ /usr/ports/www/nvu/files/patch-xptcall-ia64	Sat Oct 16 12:52:33 2004
@@ -0,0 +1,38 @@
+--- xpcom/reflect/xptcall/src/md/unix/xptcinvoke_asm_ipf64.s.orig	Sun Jul 20 00:05:32 2003
++++ xpcom/reflect/xptcall/src/md/unix/xptcinvoke_asm_ipf64.s	Sun Jul 20 00:06:37 2003
+@@ -8,6 +8,7 @@
+ // Section has executable code
+         .section .text, "ax","progbits"
+ // procedure named 'XPTC_InvokeByIndex'
++	.global	XPTC_InvokeByIndex
+         .proc   XPTC_InvokeByIndex
+ // manual bundling
+         .explicit
+@@ -24,7 +25,7 @@
+ 
+ // XPTC_InvokeByIndex(nsISupports* that, PRUint32 methodIndex,
+ //   PRUint32 paramCount, nsXPTCVariant* params);
+-XPTC_InvokeByIndex::
++XPTC_InvokeByIndex:
+         .prologue
+         .save ar.pfs, r37
+ // allocate 4 input args, 6 local args, and 8 output args
+--- xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_ipf64.s.orig	Sun Jul 20 00:02:02 2003
++++ xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_ipf64.s	Sun Jul 20 00:02:40 2003
+@@ -6,6 +6,7 @@
+ // Section has executable code
+         .section .text, "ax","progbits"
+ // procedure named 'SharedStub'
++	.global SharedStub
+         .proc   SharedStub
+ // manual bundling
+         .explicit
+@@ -14,7 +15,7 @@
+ //      .exclass  PrepareAndDispatch, @fullyvisible
+         .type   PrepareAndDispatch, at function
+ 
+-SharedStub::
++SharedStub:
+ // 9 arguments, first 8 are the input arguments of previous
+ // function call.  The last one is methodIndex, and is passed in memory
+         .prologue
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/files/patch-xptcall-sparc64 /usr/ports/www/nvu/files/patch-xptcall-sparc64
--- /usr/ports/www/nvu.orig/files/patch-xptcall-sparc64	Wed Dec 31 19:00:00 1969
+++ /usr/ports/www/nvu/files/patch-xptcall-sparc64	Sat Oct 16 12:52:33 2004
@@ -0,0 +1,327 @@
+--- /dev/null	Mon May 26 13:22:00 2003
++++ xpcom/reflect/xptcall/src/md/unix/xptcstubs_sparc64_freebsd.cpp	Mon May 26 04:12:55 2003
+@@ -0,0 +1,123 @@
++/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
++ *
++ * The contents of this file are subject to the Mozilla Public
++ * License Version 1.1 (the "License"); you may not use this file
++ * except in compliance with the License. You may obtain a copy of
++ * the License at http://www.mozilla.org/MPL/
++ * 
++ * Software distributed under the License is distributed on an "AS
++ * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
++ * implied. See the License for the specific language governing
++ * rights and limitations under the License.
++ * 
++ * The Original Code is mozilla.org code.
++ * 
++ * The Initial Developer of the Original Code is Netscape
++ * Communications Corporation. Portions created by Netscape are
++ * Copyright (C) 2001 Netscape Communications Corporation. All
++ * Rights Reserved.
++ * 
++ * Contributor(s): 
++ *   Stuart Parmenter <pavlov at netscape.com>
++ */
++
++/* Implement shared vtbl methods. */
++
++#include "xptcprivate.h"
++
++#if defined(sparc) || defined(__sparc__)
++
++extern "C" nsresult
++PrepareAndDispatch(nsXPTCStubBase* self, PRUint64 methodIndex, PRUint64* args)
++{
++
++#define PARAM_BUFFER_COUNT     16
++
++    nsXPTCMiniVariant paramBuffer[PARAM_BUFFER_COUNT];
++    nsXPTCMiniVariant* dispatchParams = NULL;
++    nsIInterfaceInfo* iface_info = NULL;
++    const nsXPTMethodInfo* info;
++    PRUint8 paramCount;
++    PRUint8 i;
++    nsresult result = NS_ERROR_FAILURE;
++
++    NS_ASSERTION(self,"no self");
++
++    self->GetInterfaceInfo(&iface_info);
++    NS_ASSERTION(iface_info,"no interface info");
++
++    iface_info->GetMethodInfo(PRUint16(methodIndex), &info);
++    NS_ASSERTION(info,"no interface info");
++
++    paramCount = info->GetParamCount();
++
++    // setup variant array pointer
++    if(paramCount > PARAM_BUFFER_COUNT)
++        dispatchParams = new nsXPTCMiniVariant[paramCount];
++    else
++        dispatchParams = paramBuffer;
++    NS_ASSERTION(dispatchParams,"no place for params");
++
++    PRUint64* ap = args;
++    for(i = 0; i < paramCount; i++, ap++)
++    {
++        const nsXPTParamInfo& param = info->GetParam(i);
++        const nsXPTType& type = param.GetType();
++        nsXPTCMiniVariant* dp = &dispatchParams[i];
++
++        if(param.IsOut() || !type.IsArithmetic())
++        {
++            dp->val.p = (void*) *ap;
++            continue;
++        }
++        // else
++        switch(type)
++        {
++        case nsXPTType::T_I8     : dp->val.i8  = *((PRInt64*)  ap);      break;
++        case nsXPTType::T_I16    : dp->val.i16 = *((PRInt64*) ap);       break;
++        case nsXPTType::T_I32    : dp->val.i32 = *((PRInt64*) ap);       break;
++        case nsXPTType::T_DOUBLE : dp->val.d   = *((double*) ap);        break;
++        case nsXPTType::T_U64    : dp->val.u64 = *((PRUint64*) ap);      break;
++        case nsXPTType::T_I64    : dp->val.i64 = *((PRInt64*) ap);       break;
++        case nsXPTType::T_U8     : dp->val.u8  = *((PRUint64*) ap);      break;
++        case nsXPTType::T_U16    : dp->val.u16 = *((PRUint64*)ap);       break;
++        case nsXPTType::T_U32    : dp->val.u32 = *((PRUint64*)ap);       break;
++        case nsXPTType::T_FLOAT  : dp->val.f   = ((float*)   ap)[1];     break;
++        case nsXPTType::T_BOOL   : dp->val.b   = *((PRInt64*)  ap);      break;
++        case nsXPTType::T_CHAR   : dp->val.c   = *((PRUint64*) ap);      break;
++        case nsXPTType::T_WCHAR  : dp->val.wc  = *((PRInt64*) ap);       break;
++        default:
++            NS_ASSERTION(0, "bad type");
++            break;
++        }
++    }
++
++    result = self->CallMethod((PRUint16)methodIndex, info, dispatchParams);
++
++    NS_RELEASE(iface_info);
++
++    if(dispatchParams != paramBuffer)
++        delete [] dispatchParams;
++
++    return result;
++}
++
++extern "C" int SharedStub(int, int*);
++
++#define STUB_ENTRY(n) \
++nsresult nsXPTCStubBase::Stub##n() \
++{ \
++	int dummy; /* defeat tail-call optimization */ \
++	return SharedStub(n, &dummy); \
++}
++
++#define SENTINEL_ENTRY(n) \
++nsresult nsXPTCStubBase::Sentinel##n() \
++{ \
++    NS_ASSERTION(0,"nsXPTCStubBase::Sentinel called"); \
++    return NS_ERROR_NOT_IMPLEMENTED; \
++}
++
++#include "xptcstubsdef.inc"
++
++#endif /* sparc || __sparc__ */
+--- /dev/null	Mon May 26 13:22:00 2003
++++ xpcom/reflect/xptcall/src/md/unix/xptcinvoke_asm_sparc64_freebsd.s	Mon May 26 04:06:09 2003
+@@ -0,0 +1,104 @@
++/* -*- Mode: asm; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
++ *
++ * The contents of this file are subject to the Mozilla Public
++ * License Version 1.1 (the "License"); you may not use this file
++ * except in compliance with the License. You may obtain a copy of
++ * the License at http://www.mozilla.org/MPL/
++ * 
++ * Software distributed under the License is distributed on an "AS
++ * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
++ * implied. See the License for the specific language governing
++ * rights and limitations under the License.
++ * 
++ * The Original Code is mozilla.org code.
++ * 
++ * The Initial Developer of the Original Code is Netscape
++ * Communications Corporation. Portions created by Netscape are
++ * Copyright (C) 2001 Netscape Communications Corporation. All
++ * Rights Reserved.
++ * 
++ * Contributor(s): 
++ *   Stuart Parmenter <pavlov at netscape.com>
++ *   Chris Seawood <cls at seawood.org>
++ */
++
++/*
++    Platform specific code to invoke XPCOM methods on native objects
++    for sparcv9 Solaris.
++
++    See the SPARC Compliance Definition (SCD) Chapter 3
++    for more information about what is going on here, including
++    the use of BIAS (0x7ff).
++    The SCD is available from http://www.sparc.com/.
++*/
++
++        .global XPTC_InvokeByIndex
++        .type   XPTC_InvokeByIndex, #function
++
++/*
++    XPTC_InvokeByIndex(nsISupports* that, PRUint32 methodIndex,
++                   PRUint32 paramCount, nsXPTCVariant* params);
++    
++*/
++XPTC_InvokeByIndex:
++        save    %sp,-(128 + 64),%sp ! room for the register window and
++                                    ! struct pointer, rounded up to 0 % 64
++        sll     %i2,4,%l0           ! assume the worst case
++                                    ! paramCount * 2 * 8 bytes
++        cmp     %l0, 0              ! are there any args? If not,
++        be      .invoke             ! no need to copy args to stack
++         nop
++
++        sub     %sp,%l0,%sp         ! create the additional stack space
++        add     %sp,0x7ff+136,%o0   ! step past the register window, the
++                                    ! struct result pointer and the 'this' slot
++        mov     %i2,%o1             ! paramCount
++        call    invoke_copy_to_stack
++        mov     %i3,%o2             ! params
++
++!
++!   load arguments from stack into the outgoing registers
++!   BIAS is 0x7ff (2047)
++!
++
++!   load the %o1..5 64bit (extended word) output registers registers 
++        ldx     [%sp + 0x7ff + 136],%o1    ! %i1
++        ldx     [%sp + 0x7ff + 144],%o2    ! %i2
++        ldx     [%sp + 0x7ff + 152],%o3    ! %i3
++        ldx     [%sp + 0x7ff + 160],%o4    ! %i4
++        ldx     [%sp + 0x7ff + 168],%o5    ! %i5
++
++!   load the even number double registers starting with %d2
++        ldd     [%sp + 0x7ff + 136],%f2
++        ldd     [%sp + 0x7ff + 144],%f4
++        ldd     [%sp + 0x7ff + 152],%f6
++        ldd     [%sp + 0x7ff + 160],%f8
++        ldd     [%sp + 0x7ff + 168],%f10
++        ldd     [%sp + 0x7ff + 176],%f12
++        ldd     [%sp + 0x7ff + 184],%f14
++        ldd     [%sp + 0x7ff + 192],%f16
++        ldd     [%sp + 0x7ff + 200],%f18
++        ldd     [%sp + 0x7ff + 208],%f20
++        ldd     [%sp + 0x7ff + 216],%f22
++        ldd     [%sp + 0x7ff + 224],%f24
++        ldd     [%sp + 0x7ff + 232],%f26
++        ldd     [%sp + 0x7ff + 240],%f28
++        ldd     [%sp + 0x7ff + 248],%f30
++
++!
++!   calculate the target address from the vtable
++!
++.invoke:
++        sll     %i1,3,%l0           ! index *= 8
++!       add     %l0,16,%l0          ! there are 2 extra entries in the vTable (16bytes)
++        ldx     [%i0],%l1           ! *that --> address of vtable
++        ldx     [%l0 + %l1],%l0     ! that->vtable[index * 8 + 16] --> address
++
++        jmpl    %l0,%o7             ! call the routine
++        mov     %i0,%o0             ! move 'this' pointer to out register
++
++        mov     %o0,%i0             ! propagate return value
++        ret
++        restore
++
++        .size    XPTC_InvokeByIndex, .-XPTC_InvokeByIndex
+--- /dev/null	Mon May 26 14:00:00 2003
++++ xpcom/reflect/xptcall/src/md/unix/xptcinvoke_sparc64_freebsd.cpp	Mon May 26 14:00:49 2003
+@@ -0,0 +1,91 @@
++/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
++ *
++ * The contents of this file are subject to the Mozilla Public
++ * License Version 1.1 (the "License"); you may not use this file
++ * except in compliance with the License. You may obtain a copy of
++ * the License at http://www.mozilla.org/MPL/
++ * 
++ * Software distributed under the License is distributed on an "AS
++ * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
++ * implied. See the License for the specific language governing
++ * rights and limitations under the License.
++ * 
++ * The Original Code is mozilla.org code.
++ * 
++ * The Initial Developer of the Original Code is Netscape
++ * Communications Corporation. Portions created by Netscape are
++ * Copyright (C) 2001 Netscape Communications Corporation. All
++ * Rights Reserved.
++ * 
++ * Contributor(s): 
++ *   Stuart Parmenter <pavlov at netscape.com>
++ *   Chris Seawood <cls at seawood.org>
++ */
++
++
++/* Platform specific code to invoke XPCOM methods on native objects */
++
++#include "xptcprivate.h"
++
++#if !defined(__sparc) && !defined(__sparc__)
++#error "This code is for Sparc only"
++#endif
++
++/* Prototype specifies unmangled function name */
++extern "C" PRUint64
++invoke_copy_to_stack(PRUint64* d, PRUint32 paramCount, nsXPTCVariant* s);
++
++extern "C" PRUint64
++invoke_copy_to_stack(PRUint64* d, PRUint32 paramCount, nsXPTCVariant* s)
++{
++  /*
++    We need to copy the parameters for this function to locals and use them
++    from there since the parameters occupy the same stack space as the stack
++    we're trying to populate.
++  */
++  PRUint64 *l_d = d;
++  nsXPTCVariant *l_s = s;
++  PRUint64 l_paramCount = paramCount;
++  PRUint64 regCount = 0;  // return the number of registers to load from the stack
++
++  for(PRUint64 i = 0; i < l_paramCount; i++, l_d++, l_s++)
++  {
++    if (regCount < 5) regCount++;
++
++    if (l_s->IsPtrData())
++    {
++      *l_d = (PRUint64)l_s->ptr;
++      continue;
++    }
++    switch (l_s->type)
++    {
++      case nsXPTType::T_I8    : *((PRInt64*)l_d)     = l_s->val.i8;    break;
++      case nsXPTType::T_I16   : *((PRInt64*)l_d)     = l_s->val.i16;   break;
++      case nsXPTType::T_I32   : *((PRInt64*)l_d)     = l_s->val.i32;   break;
++      case nsXPTType::T_I64   : *((PRInt64*)l_d)     = l_s->val.i64;   break;
++      
++      case nsXPTType::T_U8    : *((PRUint64*)l_d)    = l_s->val.u8;    break;
++      case nsXPTType::T_U16   : *((PRUint64*)l_d)    = l_s->val.u16;   break;
++      case nsXPTType::T_U32   : *((PRUint64*)l_d)    = l_s->val.u32;   break;
++      case nsXPTType::T_U64   : *((PRUint64*)l_d)    = l_s->val.u64;   break;
++
++      /* in the case of floats, we want to put the bits in to the
++         64bit space right justified... floats in the paramter array on
++         sparcv9 use odd numbered registers.. %f1, %f3, so we have to skip
++         the space that would be occupied by %f0, %f2, etc.
++      */
++      case nsXPTType::T_FLOAT : *(((float*)l_d) + 1) = l_s->val.f;     break;
++      case nsXPTType::T_DOUBLE: *((double*)l_d)      = l_s->val.d;     break;
++      case nsXPTType::T_BOOL  : *((PRInt64*)l_d)     = l_s->val.b;     break;
++      case nsXPTType::T_CHAR  : *((PRUint64*)l_d)    = l_s->val.c;     break;
++      case nsXPTType::T_WCHAR : *((PRInt64*)l_d)     = l_s->val.wc;    break;
++
++      default:
++        // all the others are plain pointer types
++        *((void**)l_d) = l_s->val.p;
++        break;
++    }
++  }
++  
++  return regCount;
++}
diff -ruN --exclude=CVS /usr/ports/www/nvu.orig/pkg-plist /usr/ports/www/nvu/pkg-plist
--- /usr/ports/www/nvu.orig/pkg-plist	Sat Oct 16 12:49:53 2004
+++ /usr/ports/www/nvu/pkg-plist	Wed Dec 31 19:00:00 1969
@@ -1,3207 +0,0 @@
-bin/nvu
-bin/nvu-config
-include/%%NVUDIR%%/accessibility/nsAccessNode.h
-include/%%NVUDIR%%/accessibility/nsAccessNodeWrap.h
-include/%%NVUDIR%%/accessibility/nsAccessibleEventData.h
-include/%%NVUDIR%%/accessibility/nsAccessibleText.h
-include/%%NVUDIR%%/accessibility/nsAccessibleWrap.h
-include/%%NVUDIR%%/accessibility/nsDocAccessibleWrap.h
-include/%%NVUDIR%%/accessibility/nsIAccessNode.h
-include/%%NVUDIR%%/accessibility/nsIAccessibilityService.h
-include/%%NVUDIR%%/accessibility/nsIAccessible.h
-include/%%NVUDIR%%/accessibility/nsIAccessibleAction.h
-include/%%NVUDIR%%/accessibility/nsIAccessibleCaret.h
-include/%%NVUDIR%%/accessibility/nsIAccessibleDocument.h
-include/%%NVUDIR%%/accessibility/nsIAccessibleEditableText.h
-include/%%NVUDIR%%/accessibility/nsIAccessibleEvent.h
-include/%%NVUDIR%%/accessibility/nsIAccessibleHyperLink.h
-include/%%NVUDIR%%/accessibility/nsIAccessibleHyperText.h
-include/%%NVUDIR%%/accessibility/nsIAccessibleProvider.h
-include/%%NVUDIR%%/accessibility/nsIAccessibleRetrieval.h
-include/%%NVUDIR%%/accessibility/nsIAccessibleSelectable.h
-include/%%NVUDIR%%/accessibility/nsIAccessibleTable.h
-include/%%NVUDIR%%/accessibility/nsIAccessibleText.h
-include/%%NVUDIR%%/accessibility/nsIAccessibleValue.h
-include/%%NVUDIR%%/accessibility/nsPIAccessNode.h
-include/%%NVUDIR%%/accessibility/nsPIAccessible.h
-include/%%NVUDIR%%/accessibility/nsPIAccessibleDocument.h
-include/%%NVUDIR%%/accessibility/nsRootAccessible.h
-include/%%NVUDIR%%/accessibility/nsRootAccessibleWrap.h
-include/%%NVUDIR%%/accessibility/nsTextAccessibleWrap.h
-include/%%NVUDIR%%/appcomps/nsCharsetMenu.h
-include/%%NVUDIR%%/appcomps/nsFontPackageHandler.h
-include/%%NVUDIR%%/appcomps/nsIAutoCompleteListener.h
-include/%%NVUDIR%%/appcomps/nsIAutoCompleteResults.h
-include/%%NVUDIR%%/appcomps/nsIAutoCompleteSession.h
-include/%%NVUDIR%%/appcomps/nsIBookmarksService.h
-include/%%NVUDIR%%/appcomps/nsIFindService.h
-include/%%NVUDIR%%/appcomps/nsISearchContext.h
-include/%%NVUDIR%%/appcomps/nsIWindowDataSource.h
-include/%%NVUDIR%%/appshell/nsAppShellCIDs.h
-include/%%NVUDIR%%/appshell/nsIAppShellService.h
-include/%%NVUDIR%%/appshell/nsICloseAllWindows.h
-include/%%NVUDIR%%/appshell/nsICmdLineHandler.h
-include/%%NVUDIR%%/appshell/nsICmdLineService.h
-include/%%NVUDIR%%/appshell/nsINativeAppSupport.h
-include/%%NVUDIR%%/appshell/nsIPopupWindowManager.h
-include/%%NVUDIR%%/appshell/nsISplashScreen.h
-include/%%NVUDIR%%/appshell/nsIUserInfo.h
-include/%%NVUDIR%%/appshell/nsIWebShellWindow.h
-include/%%NVUDIR%%/appshell/nsIWindowMediator.h
-include/%%NVUDIR%%/appshell/nsIWindowMediatorListener.h
-include/%%NVUDIR%%/appshell/nsIXULWindow.h
-include/%%NVUDIR%%/autoconfig/nsIAutoConfig.h
-include/%%NVUDIR%%/autoconfig/nsILDAPSyncQuery.h
-include/%%NVUDIR%%/autoconfig/nsIReadConfig.h
-include/%%NVUDIR%%/browser/nsIBrowserInstance.h
-include/%%NVUDIR%%/browser/nsIXULBrowserWindow.h
-include/%%NVUDIR%%/caps/nsIPrincipal.h
-include/%%NVUDIR%%/caps/nsIScriptSecurityManager.h
-include/%%NVUDIR%%/caps/nsISecurityCheckedComponent.h
-include/%%NVUDIR%%/caps/nsISignatureVerifier.h
-include/%%NVUDIR%%/caps/nsJSPrincipals.h
-include/%%NVUDIR%%/chardet/nsCharsetDetectionAdaptorCID.h
-include/%%NVUDIR%%/chardet/nsDetectionConfident.h
-include/%%NVUDIR%%/chardet/nsDocumentCharsetInfoCID.h
-include/%%NVUDIR%%/chardet/nsICharsetDetectionAdaptor.h
-include/%%NVUDIR%%/chardet/nsICharsetDetectionObserver.h
-include/%%NVUDIR%%/chardet/nsICharsetDetector.h
-include/%%NVUDIR%%/chardet/nsICharsetResolver.h
-include/%%NVUDIR%%/chardet/nsIDocCharset.h
-include/%%NVUDIR%%/chardet/nsIDocumentCharsetInfo.h
-include/%%NVUDIR%%/chardet/nsIMetaCharsetService.h
-include/%%NVUDIR%%/chardet/nsIStringCharsetDetector.h
-include/%%NVUDIR%%/chardet/nsIXMLEncodingService.h
-include/%%NVUDIR%%/chardet/nsMetaCharsetCID.h
-include/%%NVUDIR%%/chardet/nsXMLEncodingCID.h
-include/%%NVUDIR%%/commandhandler/nsICommandManager.h
-include/%%NVUDIR%%/commandhandler/nsICommandParams.h
-include/%%NVUDIR%%/commandhandler/nsIControllerCommand.h
-include/%%NVUDIR%%/commandhandler/nsIControllerCommandTable.h
-include/%%NVUDIR%%/commandhandler/nsIControllerContext.h
-include/%%NVUDIR%%/commandhandler/nsPICommandUpdater.h
-include/%%NVUDIR%%/composer/nsIEditingSession.h
-include/%%NVUDIR%%/content/mozISanitizingSerializer.h
-include/%%NVUDIR%%/content/nsAtomListUtils.h
-include/%%NVUDIR%%/content/nsBidiUtils.h
-include/%%NVUDIR%%/content/nsCSSAnonBoxList.h
-include/%%NVUDIR%%/content/nsCSSAnonBoxes.h
-include/%%NVUDIR%%/content/nsCSSKeywordList.h
-include/%%NVUDIR%%/content/nsCSSKeywords.h
-include/%%NVUDIR%%/content/nsCSSPropList.h
-include/%%NVUDIR%%/content/nsCSSProperty.h
-include/%%NVUDIR%%/content/nsCSSProps.h
-include/%%NVUDIR%%/content/nsCSSPseudoClassList.h
-include/%%NVUDIR%%/content/nsCSSPseudoClasses.h
-include/%%NVUDIR%%/content/nsCSSPseudoElementList.h
-include/%%NVUDIR%%/content/nsCSSPseudoElements.h
-include/%%NVUDIR%%/content/nsCSSStruct.h
-include/%%NVUDIR%%/content/nsCSSValue.h
-include/%%NVUDIR%%/content/nsChangeHint.h
-include/%%NVUDIR%%/content/nsContentCID.h
-include/%%NVUDIR%%/content/nsContentErrors.h
-include/%%NVUDIR%%/content/nsContentPolicyUtils.h
-include/%%NVUDIR%%/content/nsContentUtils.h
-include/%%NVUDIR%%/content/nsDOMCSSDeclaration.h
-include/%%NVUDIR%%/content/nsFrameManager.h
-include/%%NVUDIR%%/content/nsFrameManagerBase.h
-include/%%NVUDIR%%/content/nsHTMLAtomList.h
-include/%%NVUDIR%%/content/nsHTMLAtoms.h
-include/%%NVUDIR%%/content/nsHTMLValue.h
-include/%%NVUDIR%%/content/nsIAttribute.h
-include/%%NVUDIR%%/content/nsIBindingManager.h
-include/%%NVUDIR%%/content/nsICSSGroupRule.h
-include/%%NVUDIR%%/content/nsICSSImportRule.h
-include/%%NVUDIR%%/content/nsICSSLoader.h
-include/%%NVUDIR%%/content/nsICSSLoaderObserver.h
-include/%%NVUDIR%%/content/nsICSSMediaRule.h
-include/%%NVUDIR%%/content/nsICSSNameSpaceRule.h
-include/%%NVUDIR%%/content/nsICSSOMFactory.h
-include/%%NVUDIR%%/content/nsICSSParser.h
-include/%%NVUDIR%%/content/nsICSSPseudoComparator.h
-include/%%NVUDIR%%/content/nsICSSRule.h
-include/%%NVUDIR%%/content/nsICSSStyleRule.h
-include/%%NVUDIR%%/content/nsICSSStyleRuleDOMWrapper.h
-include/%%NVUDIR%%/content/nsICSSStyleRuleProcessor.h
-include/%%NVUDIR%%/content/nsICSSStyleSheet.h
-include/%%NVUDIR%%/content/nsIChromeRegistry.h
-include/%%NVUDIR%%/content/nsIComputedDOMStyle.h
-include/%%NVUDIR%%/content/nsIContent.h
-include/%%NVUDIR%%/content/nsIContentIterator.h
-include/%%NVUDIR%%/content/nsIContentList.h
-include/%%NVUDIR%%/content/nsIContentPolicy.h
-include/%%NVUDIR%%/content/nsIContentSerializer.h
-include/%%NVUDIR%%/content/nsIDocument.h
-include/%%NVUDIR%%/content/nsIDocumentEncoder.h
-include/%%NVUDIR%%/content/nsIDocumentObserver.h
-include/%%NVUDIR%%/content/nsIDocumentTransformer.h
-include/%%NVUDIR%%/content/nsIDocumentViewer.h
-include/%%NVUDIR%%/content/nsIDragDropHandler.h
-include/%%NVUDIR%%/content/nsIElementFactory.h
-include/%%NVUDIR%%/content/nsIEventListenerManager.h
-include/%%NVUDIR%%/content/nsIEventStateManager.h
-include/%%NVUDIR%%/content/nsIFIXptr.h
-include/%%NVUDIR%%/content/nsIForm.h
-include/%%NVUDIR%%/content/nsIFormControl.h
-include/%%NVUDIR%%/content/nsIFormSubmission.h
-include/%%NVUDIR%%/content/nsIFrameLoader.h
-include/%%NVUDIR%%/content/nsIFrameSetElement.h
-include/%%NVUDIR%%/content/nsIHTMLCSSStyleSheet.h
-include/%%NVUDIR%%/content/nsIHTMLContent.h
-include/%%NVUDIR%%/content/nsIHTMLDocument.h
-include/%%NVUDIR%%/content/nsIHTMLTableCellElement.h
-include/%%NVUDIR%%/content/nsIHTMLTableColElement.h
-include/%%NVUDIR%%/content/nsIHTMLToTextSink.h
-include/%%NVUDIR%%/content/nsIImageDocument.h
-include/%%NVUDIR%%/content/nsIImageLoadingContent.h
-include/%%NVUDIR%%/content/nsIInspectorCSSUtils.h
-include/%%NVUDIR%%/content/nsILink.h
-include/%%NVUDIR%%/content/nsIMediaList.h
-include/%%NVUDIR%%/content/nsIModifyableXPointer.h
-include/%%NVUDIR%%/content/nsINameSpace.h
-include/%%NVUDIR%%/content/nsINameSpaceManager.h
-include/%%NVUDIR%%/content/nsINodeInfo.h
-include/%%NVUDIR%%/content/nsIOptionElement.h
-include/%%NVUDIR%%/content/nsIPhonetic.h
-include/%%NVUDIR%%/content/nsIPrintProgress.h
-include/%%NVUDIR%%/content/nsIPrintProgressParams.h
-include/%%NVUDIR%%/content/nsIPrintStatusFeedback.h
-include/%%NVUDIR%%/content/nsIPrivateCompositionEvent.h
-include/%%NVUDIR%%/content/nsIPrivateDOMEvent.h
-include/%%NVUDIR%%/content/nsIPrivateDOMImplementation.h
-include/%%NVUDIR%%/content/nsIPrivateTextEvent.h
-include/%%NVUDIR%%/content/nsIPrivateTextRange.h
-include/%%NVUDIR%%/content/nsIRadioControlElement.h
-include/%%NVUDIR%%/content/nsIRadioGroupContainer.h
-include/%%NVUDIR%%/content/nsIRadioVisitor.h
-include/%%NVUDIR%%/content/nsIRangeUtils.h
-include/%%NVUDIR%%/content/nsIScriptElement.h
-include/%%NVUDIR%%/content/nsIScriptEventHandler.h
-include/%%NVUDIR%%/content/nsIScriptEventManager.h
-include/%%NVUDIR%%/content/nsIScriptLoader.h
-include/%%NVUDIR%%/content/nsIScriptLoaderObserver.h
-include/%%NVUDIR%%/content/nsISelectElement.h
-include/%%NVUDIR%%/content/nsISelectionController.h
-include/%%NVUDIR%%/content/nsISelectionDisplay.h
-include/%%NVUDIR%%/content/nsISelectionListener.h
-include/%%NVUDIR%%/content/nsISelectionPrivate.h
-include/%%NVUDIR%%/content/nsIStyleRule.h
-include/%%NVUDIR%%/content/nsIStyleRuleProcessor.h
-include/%%NVUDIR%%/content/nsIStyleRuleSupplier.h
-include/%%NVUDIR%%/content/nsIStyleSheet.h
-include/%%NVUDIR%%/content/nsIStyleSheetLinkingElement.h
-include/%%NVUDIR%%/content/nsIStyledContent.h
-include/%%NVUDIR%%/content/nsISyncLoadDOMService.h
-include/%%NVUDIR%%/content/nsITextContent.h
-include/%%NVUDIR%%/content/nsITextControlElement.h
-include/%%NVUDIR%%/content/nsIWyciwygChannel.h
-include/%%NVUDIR%%/content/nsIXBLBinding.h
-include/%%NVUDIR%%/content/nsIXBLDocumentInfo.h
-include/%%NVUDIR%%/content/nsIXBLService.h
-include/%%NVUDIR%%/content/nsIXMLContent.h
-include/%%NVUDIR%%/content/nsIXMLContentSink.h
-include/%%NVUDIR%%/content/nsIXPathEvaluatorInternal.h
-include/%%NVUDIR%%/content/nsIXPointer.h
-include/%%NVUDIR%%/content/nsIXSLTException.h
-include/%%NVUDIR%%/content/nsIXSLTProcessor.h
-include/%%NVUDIR%%/content/nsIXSLTProcessorObsolete.h
-include/%%NVUDIR%%/content/nsImageMapUtils.h
-include/%%NVUDIR%%/content/nsLayoutAtomList.h
-include/%%NVUDIR%%/content/nsLayoutAtoms.h
-include/%%NVUDIR%%/content/nsLayoutStylesheetCache.h
-include/%%NVUDIR%%/content/nsMutationEvent.h
-include/%%NVUDIR%%/content/nsRuleNode.h
-include/%%NVUDIR%%/content/nsRuleWalker.h
-include/%%NVUDIR%%/content/nsStubDocumentObserver.h
-include/%%NVUDIR%%/content/nsStyleContext.h
-include/%%NVUDIR%%/content/nsStyleCoord.h
-include/%%NVUDIR%%/content/nsStyleSet.h
-include/%%NVUDIR%%/content/nsStyleStruct.h
-include/%%NVUDIR%%/content/nsStyleStructList.h
-include/%%NVUDIR%%/content/nsStyleUtil.h
-include/%%NVUDIR%%/content/nsTextFragment.h
-include/%%NVUDIR%%/content/nsXBLAtomList.h
-include/%%NVUDIR%%/content/nsXBLAtoms.h
-include/%%NVUDIR%%/content/nsXULAtomList.h
-include/%%NVUDIR%%/content/nsXULAtoms.h
-include/%%NVUDIR%%/dbm/cdefs.h
-include/%%NVUDIR%%/dbm/mcom_db.h
-include/%%NVUDIR%%/dbm/ncompat.h
-include/%%NVUDIR%%/dbm/nsres.h
-include/%%NVUDIR%%/dbm/winfile.h
-include/%%NVUDIR%%/docshell/nsCDefaultURIFixup.h
-include/%%NVUDIR%%/docshell/nsCDocShell.h
-include/%%NVUDIR%%/docshell/nsDocShellCID.h
-include/%%NVUDIR%%/docshell/nsIContentViewer.h
-include/%%NVUDIR%%/docshell/nsIContentViewerEdit.h
-include/%%NVUDIR%%/docshell/nsIContentViewerFile.h
-include/%%NVUDIR%%/docshell/nsIDocShell.h
-include/%%NVUDIR%%/docshell/nsIDocShellHistory.h
-include/%%NVUDIR%%/docshell/nsIDocShellLoadInfo.h
-include/%%NVUDIR%%/docshell/nsIDocShellTreeItem.h
-include/%%NVUDIR%%/docshell/nsIDocShellTreeNode.h
-include/%%NVUDIR%%/docshell/nsIDocShellTreeOwner.h
-include/%%NVUDIR%%/docshell/nsIEditorDocShell.h
-include/%%NVUDIR%%/docshell/nsIGlobalHistory2.h
-include/%%NVUDIR%%/docshell/nsIMarkupDocumentViewer.h
-include/%%NVUDIR%%/docshell/nsIScrollable.h
-include/%%NVUDIR%%/docshell/nsITextScroll.h
-include/%%NVUDIR%%/docshell/nsIURIFixup.h
-include/%%NVUDIR%%/docshell/nsIWebNavigation.h
-include/%%NVUDIR%%/docshell/nsIWebPageDescriptor.h
-include/%%NVUDIR%%/dom/nsDOMCID.h
-include/%%NVUDIR%%/dom/nsDOMError.h
-include/%%NVUDIR%%/dom/nsDOMString.h
-include/%%NVUDIR%%/dom/nsIBaseDOMException.h
-include/%%NVUDIR%%/dom/nsIDOM3Document.h
-include/%%NVUDIR%%/dom/nsIDOM3Node.h
-include/%%NVUDIR%%/dom/nsIDOMCRMFObject.h
-include/%%NVUDIR%%/dom/nsIDOMCSS2Properties.h
-include/%%NVUDIR%%/dom/nsIDOMCSSCharsetRule.h
-include/%%NVUDIR%%/dom/nsIDOMCSSFontFaceRule.h
-include/%%NVUDIR%%/dom/nsIDOMCSSImportRule.h
-include/%%NVUDIR%%/dom/nsIDOMCSSMediaRule.h
-include/%%NVUDIR%%/dom/nsIDOMCSSPageRule.h
-include/%%NVUDIR%%/dom/nsIDOMCSSStyleRule.h
-include/%%NVUDIR%%/dom/nsIDOMCSSUnknownRule.h
-include/%%NVUDIR%%/dom/nsIDOMChromeWindow.h
-include/%%NVUDIR%%/dom/nsIDOMClassInfo.h
-include/%%NVUDIR%%/dom/nsIDOMCompositionListener.h
-include/%%NVUDIR%%/dom/nsIDOMContextMenuListener.h
-include/%%NVUDIR%%/dom/nsIDOMCounter.h
-include/%%NVUDIR%%/dom/nsIDOMCrypto.h
-include/%%NVUDIR%%/dom/nsIDOMDOMConfiguration.h
-include/%%NVUDIR%%/dom/nsIDOMDOMStringList.h
-include/%%NVUDIR%%/dom/nsIDOMDocumentCSS.h
-include/%%NVUDIR%%/dom/nsIDOMDocumentTraversal.h
-include/%%NVUDIR%%/dom/nsIDOMDocumentXBL.h
-include/%%NVUDIR%%/dom/nsIDOMDragListener.h
-include/%%NVUDIR%%/dom/nsIDOMElementCSSInlineStyle.h
-include/%%NVUDIR%%/dom/nsIDOMEventReceiver.h
-include/%%NVUDIR%%/dom/nsIDOMFocusListener.h
-include/%%NVUDIR%%/dom/nsIDOMFormListener.h
-include/%%NVUDIR%%/dom/nsIDOMHistory.h
-include/%%NVUDIR%%/dom/nsIDOMJSWindow.h
-include/%%NVUDIR%%/dom/nsIDOMKeyEvent.h
-include/%%NVUDIR%%/dom/nsIDOMKeyListener.h
-include/%%NVUDIR%%/dom/nsIDOMLinkStyle.h
-include/%%NVUDIR%%/dom/nsIDOMLoadListener.h
-include/%%NVUDIR%%/dom/nsIDOMLocation.h
-include/%%NVUDIR%%/dom/nsIDOMMimeType.h
-include/%%NVUDIR%%/dom/nsIDOMMimeTypeArray.h
-include/%%NVUDIR%%/dom/nsIDOMMouseListener.h
-include/%%NVUDIR%%/dom/nsIDOMMouseMotionListener.h
-include/%%NVUDIR%%/dom/nsIDOMMutationEvent.h
-include/%%NVUDIR%%/dom/nsIDOMMutationListener.h
-include/%%NVUDIR%%/dom/nsIDOMNSCSSSelectorQuery.h
-include/%%NVUDIR%%/dom/nsIDOMNSDocument.h
-include/%%NVUDIR%%/dom/nsIDOMNSEvent.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLAnchorElement.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLAreaElement.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLButtonElement.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLDocument.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLElement.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLFormControlList.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLFormElement.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLFrameElement.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLHRElement.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLImageElement.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLInputElement.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLOptionCollectn.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLOptionElement.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLSelectElement.h
-include/%%NVUDIR%%/dom/nsIDOMNSHTMLTextAreaElement.h
-include/%%NVUDIR%%/dom/nsIDOMNSHistory.h
-include/%%NVUDIR%%/dom/nsIDOMNSLocation.h
-include/%%NVUDIR%%/dom/nsIDOMNSRange.h
-include/%%NVUDIR%%/dom/nsIDOMNSUIEvent.h
-include/%%NVUDIR%%/dom/nsIDOMNSXBLFormControl.h
-include/%%NVUDIR%%/dom/nsIDOMNameList.h
-include/%%NVUDIR%%/dom/nsIDOMNavigator.h
-include/%%NVUDIR%%/dom/nsIDOMNodeFilter.h
-include/%%NVUDIR%%/dom/nsIDOMNodeIterator.h
-include/%%NVUDIR%%/dom/nsIDOMPaintListener.h
-include/%%NVUDIR%%/dom/nsIDOMPkcs11.h
-include/%%NVUDIR%%/dom/nsIDOMPlugin.h
-include/%%NVUDIR%%/dom/nsIDOMPluginArray.h
-include/%%NVUDIR%%/dom/nsIDOMPopupBlockedEvent.h
-include/%%NVUDIR%%/dom/nsIDOMRGBColor.h
-include/%%NVUDIR%%/dom/nsIDOMRangeException.h
-include/%%NVUDIR%%/dom/nsIDOMRect.h
-include/%%NVUDIR%%/dom/nsIDOMScreen.h
-include/%%NVUDIR%%/dom/nsIDOMScriptObjectFactory.h
-include/%%NVUDIR%%/dom/nsIDOMScrollListener.h
-include/%%NVUDIR%%/dom/nsIDOMTextListener.h
-include/%%NVUDIR%%/dom/nsIDOMTreeWalker.h
-include/%%NVUDIR%%/dom/nsIDOMUserDataHandler.h
-include/%%NVUDIR%%/dom/nsIDOMViewCSS.h
-include/%%NVUDIR%%/dom/nsIDOMWindowInternal.h
-include/%%NVUDIR%%/dom/nsIDOMXMLDocument.h
-include/%%NVUDIR%%/dom/nsIDOMXPathEvaluator.h
-include/%%NVUDIR%%/dom/nsIDOMXPathException.h
-include/%%NVUDIR%%/dom/nsIDOMXPathExpression.h
-include/%%NVUDIR%%/dom/nsIDOMXPathNSResolver.h
-include/%%NVUDIR%%/dom/nsIDOMXPathNamespace.h
-include/%%NVUDIR%%/dom/nsIDOMXPathResult.h
-include/%%NVUDIR%%/dom/nsIDOMXULButtonElement.h
-include/%%NVUDIR%%/dom/nsIDOMXULCheckboxElement.h
-include/%%NVUDIR%%/dom/nsIDOMXULCommandDispatcher.h
-include/%%NVUDIR%%/dom/nsIDOMXULControlElement.h
-include/%%NVUDIR%%/dom/nsIDOMXULDescriptionElement.h
-include/%%NVUDIR%%/dom/nsIDOMXULDocument.h
-include/%%NVUDIR%%/dom/nsIDOMXULElement.h
-include/%%NVUDIR%%/dom/nsIDOMXULImageElement.h
-include/%%NVUDIR%%/dom/nsIDOMXULLabelElement.h
-include/%%NVUDIR%%/dom/nsIDOMXULLabeledControlEl.h
-include/%%NVUDIR%%/dom/nsIDOMXULListener.h
-include/%%NVUDIR%%/dom/nsIDOMXULMenuListElement.h
-include/%%NVUDIR%%/dom/nsIDOMXULMultSelectCntrlEl.h
-include/%%NVUDIR%%/dom/nsIDOMXULPopupElement.h
-include/%%NVUDIR%%/dom/nsIDOMXULSelectCntrlEl.h
-include/%%NVUDIR%%/dom/nsIDOMXULSelectCntrlItemEl.h
-include/%%NVUDIR%%/dom/nsIDOMXULTextboxElement.h
-include/%%NVUDIR%%/dom/nsIEntropyCollector.h
-include/%%NVUDIR%%/dom/nsIFocusController.h
-include/%%NVUDIR%%/dom/nsIJSEventListener.h
-include/%%NVUDIR%%/dom/nsIJSNativeInitializer.h
-include/%%NVUDIR%%/dom/nsIScriptContext.h
-include/%%NVUDIR%%/dom/nsIScriptContextOwner.h
-include/%%NVUDIR%%/dom/nsIScriptExternalNameSet.h
-include/%%NVUDIR%%/dom/nsIScriptGlobalObject.h
-include/%%NVUDIR%%/dom/nsIScriptGlobalObjectOwner.h
-include/%%NVUDIR%%/dom/nsIScriptNameSpaceManager.h
-include/%%NVUDIR%%/dom/nsIScriptObjectOwner.h
-include/%%NVUDIR%%/dom/nsIScriptObjectPrincipal.h
-include/%%NVUDIR%%/dom/nsPIDOMWindow.h
-include/%%NVUDIR%%/dom/nsPIWindowRoot.h
-include/%%NVUDIR%%/domstubs.h
-include/%%NVUDIR%%/downloadmanager/nsIDownloadManager.h
-include/%%NVUDIR%%/downloadmanager/nsIDownloadProgressListener.h
-include/%%NVUDIR%%/editor/nsEditorCID.h
-include/%%NVUDIR%%/editor/nsICiter.h
-include/%%NVUDIR%%/editor/nsIContentFilter.h
-include/%%NVUDIR%%/editor/nsIDocumentStateListener.h
-include/%%NVUDIR%%/editor/nsIEditActionListener.h
-include/%%NVUDIR%%/editor/nsIEditor.h
-include/%%NVUDIR%%/editor/nsIEditorIMESupport.h
-include/%%NVUDIR%%/editor/nsIEditorLogging.h
-include/%%NVUDIR%%/editor/nsIEditorMailSupport.h
-include/%%NVUDIR%%/editor/nsIEditorObserver.h
-include/%%NVUDIR%%/editor/nsIEditorSpellCheck.h
-include/%%NVUDIR%%/editor/nsIEditorStyleSheets.h
-include/%%NVUDIR%%/editor/nsIHTMLAbsPosEditor.h
-include/%%NVUDIR%%/editor/nsIHTMLEditor.h
-include/%%NVUDIR%%/editor/nsIHTMLInlineTableEditor.h
-include/%%NVUDIR%%/editor/nsIHTMLObjectResizeListener.h
-include/%%NVUDIR%%/editor/nsIHTMLObjectResizer.h
-include/%%NVUDIR%%/editor/nsIHTMLTemplateEditor.h
-include/%%NVUDIR%%/editor/nsIPlaintextEditor.h
-include/%%NVUDIR%%/editor/nsITableEditor.h
-include/%%NVUDIR%%/editor/nsIURIRefObject.h
-include/%%NVUDIR%%/editor/nsPIEditorTransaction.h
-include/%%NVUDIR%%/embed_base/nsIWindowCreator2.h
-include/%%NVUDIR%%/embedcomponents/nsIAppStartupNotifier.h
-include/%%NVUDIR%%/expat/xmlparse.h
-include/%%NVUDIR%%/extensions/nsIExtensionManager.h
-include/%%NVUDIR%%/exthandler/nsCExternalHandlerService.h
-include/%%NVUDIR%%/exthandler/nsIExternalHelperAppService.h
-include/%%NVUDIR%%/exthandler/nsIExternalProtocolService.h
-include/%%NVUDIR%%/exthandler/nsOSHelperAppService.h
-include/%%NVUDIR%%/filepicker/nsIFileView.h
-include/%%NVUDIR%%/find/nsIFind.h
-include/%%NVUDIR%%/gfx/gfxIFormats.h
-include/%%NVUDIR%%/gfx/gfxIImageFrame.h
-include/%%NVUDIR%%/gfx/gfxtypes.h
-include/%%NVUDIR%%/gfx/nsColor.h
-include/%%NVUDIR%%/gfx/nsColorNameList.h
-include/%%NVUDIR%%/gfx/nsColorNames.h
-include/%%NVUDIR%%/gfx/nsCoord.h
-include/%%NVUDIR%%/gfx/nsDeviceContext.h
-include/%%NVUDIR%%/gfx/nsFont.h
-include/%%NVUDIR%%/gfx/nsGfxCIID.h
-include/%%NVUDIR%%/gfx/nsGfxPSCID.h
-include/%%NVUDIR%%/gfx/nsGfxXPrintCID.h
-include/%%NVUDIR%%/gfx/nsIBlender.h
-include/%%NVUDIR%%/gfx/nsIDeviceContext.h
-include/%%NVUDIR%%/gfx/nsIDeviceContextPS.h
-include/%%NVUDIR%%/gfx/nsIDeviceContextSpec.h
-include/%%NVUDIR%%/gfx/nsIDeviceContextSpecFactory.h
-include/%%NVUDIR%%/gfx/nsIDeviceContextSpecPS.h
-include/%%NVUDIR%%/gfx/nsIDeviceContextSpecXPrint.h
-include/%%NVUDIR%%/gfx/nsIDeviceContextXPrint.h
-include/%%NVUDIR%%/gfx/nsIDrawingSurface.h
-include/%%NVUDIR%%/gfx/nsIFontCatalogService.h
-include/%%NVUDIR%%/gfx/nsIFontEnumerator.h
-include/%%NVUDIR%%/gfx/nsIFontList.h
-include/%%NVUDIR%%/gfx/nsIFontMetrics.h
-include/%%NVUDIR%%/gfx/nsIFreeType2.h
-include/%%NVUDIR%%/gfx/nsIImage.h
-include/%%NVUDIR%%/gfx/nsIPrintOptions.h
-include/%%NVUDIR%%/gfx/nsIPrintSession.h
-include/%%NVUDIR%%/gfx/nsIPrintSettings.h
-include/%%NVUDIR%%/gfx/nsIPrintSettingsService.h
-include/%%NVUDIR%%/gfx/nsIRegion.h
-include/%%NVUDIR%%/gfx/nsIRenderingContext.h
-include/%%NVUDIR%%/gfx/nsIScreen.h
-include/%%NVUDIR%%/gfx/nsIScreenManager.h
-include/%%NVUDIR%%/gfx/nsIScriptableRegion.h
-include/%%NVUDIR%%/gfx/nsITheme.h
-include/%%NVUDIR%%/gfx/nsMargin.h
-include/%%NVUDIR%%/gfx/nsPaperPS.h
-include/%%NVUDIR%%/gfx/nsPoint.h
-include/%%NVUDIR%%/gfx/nsRect.h
-include/%%NVUDIR%%/gfx/nsRegion.h
-include/%%NVUDIR%%/gfx/nsSize.h
-include/%%NVUDIR%%/gfx/nsTempfilePS.h
-include/%%NVUDIR%%/gfx/nsThemeConstants.h
-include/%%NVUDIR%%/gfx/nsTransform2D.h
-include/%%NVUDIR%%/gtkembedmoz/gtkmozembed.h
-include/%%NVUDIR%%/gtkembedmoz/gtkmozembed_internal.h
-include/%%NVUDIR%%/gtkxtbin/gtk2xtbin.h
-include/%%NVUDIR%%/gtkxtbin/gtkxtbin.h
-include/%%NVUDIR%%/helperAppDlg/nsIHelperAppLauncherDialog.h
-include/%%NVUDIR%%/history/nsIBrowserHistory.h
-include/%%NVUDIR%%/htmlparser/nsHTMLTagList.h
-include/%%NVUDIR%%/htmlparser/nsHTMLTags.h
-include/%%NVUDIR%%/htmlparser/nsHTMLTokens.h
-include/%%NVUDIR%%/htmlparser/nsIContentSink.h
-include/%%NVUDIR%%/htmlparser/nsIDTD.h
-include/%%NVUDIR%%/htmlparser/nsIElementObserver.h
-include/%%NVUDIR%%/htmlparser/nsIExpatSink.h
-include/%%NVUDIR%%/htmlparser/nsIHTMLContentSink.h
-include/%%NVUDIR%%/htmlparser/nsIHTMLFragmentContentSink.h
-include/%%NVUDIR%%/htmlparser/nsIParser.h
-include/%%NVUDIR%%/htmlparser/nsIParserFilter.h
-include/%%NVUDIR%%/htmlparser/nsIParserNode.h
-include/%%NVUDIR%%/htmlparser/nsIParserService.h
-include/%%NVUDIR%%/htmlparser/nsITokenizer.h
-include/%%NVUDIR%%/htmlparser/nsParserCIID.h
-include/%%NVUDIR%%/htmlparser/nsParserError.h
-include/%%NVUDIR%%/htmlparser/nsScannerString.h
-include/%%NVUDIR%%/htmlparser/nsToken.h
-include/%%NVUDIR%%/imglib2/ImageErrors.h
-include/%%NVUDIR%%/imglib2/ImageLogging.h
-include/%%NVUDIR%%/imglib2/imgICache.h
-include/%%NVUDIR%%/imglib2/imgIContainer.h
-include/%%NVUDIR%%/imglib2/imgIContainerObserver.h
-include/%%NVUDIR%%/imglib2/imgIDecoder.h
-include/%%NVUDIR%%/imglib2/imgIDecoderObserver.h
-include/%%NVUDIR%%/imglib2/imgILoad.h
-include/%%NVUDIR%%/imglib2/imgILoader.h
-include/%%NVUDIR%%/imglib2/imgIRequest.h
-include/%%NVUDIR%%/inspector/inICSSValueSearch.h
-include/%%NVUDIR%%/inspector/inIDOMUtils.h
-include/%%NVUDIR%%/inspector/inIDOMView.h
-include/%%NVUDIR%%/inspector/inIDeepTreeWalker.h
-include/%%NVUDIR%%/inspector/inIFileSearch.h
-include/%%NVUDIR%%/inspector/inIFlasher.h
-include/%%NVUDIR%%/inspector/inISearchObserver.h
-include/%%NVUDIR%%/inspector/inISearchProcess.h
-include/%%NVUDIR%%/intl/nsIStringBundle.h
-include/%%NVUDIR%%/intl/nsIStringBundleOverride.h
-include/%%NVUDIR%%/jar/nsIJAR.h
-include/%%NVUDIR%%/jar/nsIZipReader.h
-include/%%NVUDIR%%/jar/zipfile.h
-include/%%NVUDIR%%/jar/zipstruct.h
-include/%%NVUDIR%%/jar/zipstub.h
-include/%%NVUDIR%%/java/bool.h
-include/%%NVUDIR%%/java/interpreter.h
-include/%%NVUDIR%%/java/javaString.h
-include/%%NVUDIR%%/java/javaThreads.h
-include/%%NVUDIR%%/java/java_lang_String.h
-include/%%NVUDIR%%/java/jdk_java_lang_String.h
-include/%%NVUDIR%%/java/jmc.h
-include/%%NVUDIR%%/java/jni.h
-include/%%NVUDIR%%/java/jni_md.h
-include/%%NVUDIR%%/java/jri.h
-include/%%NVUDIR%%/java/jri_md.h
-include/%%NVUDIR%%/java/jriext.h
-include/%%NVUDIR%%/java/jritypes.h
-include/%%NVUDIR%%/java/nspr_md.h
-include/%%NVUDIR%%/java/oobj.h
-include/%%NVUDIR%%/java/sysmacros_md.h
-include/%%NVUDIR%%/java/tree.h
-include/%%NVUDIR%%/java/typedefs.h
-include/%%NVUDIR%%/java/typedefs_md.h
-include/%%NVUDIR%%/java/zip.h
-include/%%NVUDIR%%/jni.h
-include/%%NVUDIR%%/jni_md.h
-include/%%NVUDIR%%/jpeg/jconfig.h
-include/%%NVUDIR%%/jpeg/jerror.h
-include/%%NVUDIR%%/jpeg/jinclude.h
-include/%%NVUDIR%%/jpeg/jmorecfg.h
-include/%%NVUDIR%%/jpeg/jos2fig.h
-include/%%NVUDIR%%/jpeg/jpegint.h
-include/%%NVUDIR%%/jpeg/jpeglib.h
-include/%%NVUDIR%%/jpeg/jwinfig.h
-include/%%NVUDIR%%/jri.h
-include/%%NVUDIR%%/jri_md.h
-include/%%NVUDIR%%/jritypes.h
-include/%%NVUDIR%%/js/fdlibm.h
-include/%%NVUDIR%%/js/js.msg
-include/%%NVUDIR%%/js/jsapi.h
-include/%%NVUDIR%%/js/jsarena.h
-include/%%NVUDIR%%/js/jsarray.h
-include/%%NVUDIR%%/js/jsatom.h
-include/%%NVUDIR%%/js/jsautocfg.h
-include/%%NVUDIR%%/js/jsbit.h
-include/%%NVUDIR%%/js/jsbool.h
-include/%%NVUDIR%%/js/jsclist.h
-include/%%NVUDIR%%/js/jscntxt.h
-include/%%NVUDIR%%/js/jscompat.h
-include/%%NVUDIR%%/js/jsconfig.h
-include/%%NVUDIR%%/js/jsdate.h
-include/%%NVUDIR%%/js/jsdbgapi.h
-include/%%NVUDIR%%/js/jsdhash.h
-include/%%NVUDIR%%/js/jsemit.h
-include/%%NVUDIR%%/js/jsfun.h
-include/%%NVUDIR%%/js/jsgc.h
-include/%%NVUDIR%%/js/jshash.h
-include/%%NVUDIR%%/js/jsinterp.h
-include/%%NVUDIR%%/js/jslock.h
-include/%%NVUDIR%%/js/jslong.h
-include/%%NVUDIR%%/js/jsmath.h
-include/%%NVUDIR%%/js/jsnum.h
-include/%%NVUDIR%%/js/jsobj.h
-include/%%NVUDIR%%/js/jsopcode.h
-include/%%NVUDIR%%/js/jsopcode.tbl
-include/%%NVUDIR%%/js/jsosdep.h
-include/%%NVUDIR%%/js/jsotypes.h
-include/%%NVUDIR%%/js/jsparse.h
-include/%%NVUDIR%%/js/jsprf.h
-include/%%NVUDIR%%/js/jsprvtd.h
-include/%%NVUDIR%%/js/jspubtd.h
-include/%%NVUDIR%%/js/jsregexp.h
-include/%%NVUDIR%%/js/jsscan.h
-include/%%NVUDIR%%/js/jsscope.h
-include/%%NVUDIR%%/js/jsscript.h
-include/%%NVUDIR%%/js/jsstddef.h
-include/%%NVUDIR%%/js/jsstr.h
-include/%%NVUDIR%%/js/jstypes.h
-include/%%NVUDIR%%/js/jsutil.h
-include/%%NVUDIR%%/js/jsxdrapi.h
-include/%%NVUDIR%%/jsconsole/nsIJSConsoleService.h
-include/%%NVUDIR%%/jsdebug/jsdIDebuggerService.h
-include/%%NVUDIR%%/jsdebug/jsdebug.h
-include/%%NVUDIR%%/jsurl/nsIEvaluateStringProxy.h
-include/%%NVUDIR%%/jsurl/nsJSProtocolHandler.h
-include/%%NVUDIR%%/layout/nsBidi.h
-include/%%NVUDIR%%/layout/nsBidiFrames.h
-include/%%NVUDIR%%/layout/nsBidiPresUtils.h
-include/%%NVUDIR%%/layout/nsCSSFrameConstructor.h
-include/%%NVUDIR%%/layout/nsCompatibility.h
-include/%%NVUDIR%%/layout/nsFrameList.h
-include/%%NVUDIR%%/layout/nsFrameTraversal.h
-include/%%NVUDIR%%/layout/nsGrid.h
-include/%%NVUDIR%%/layout/nsGridCell.h
-include/%%NVUDIR%%/layout/nsGridLayout2.h
-include/%%NVUDIR%%/layout/nsGridRow.h
-include/%%NVUDIR%%/layout/nsGridRowGroupLayout.h
-include/%%NVUDIR%%/layout/nsGridRowLayout.h
-include/%%NVUDIR%%/layout/nsGridRowLeafFrame.h
-include/%%NVUDIR%%/layout/nsGridRowLeafLayout.h
-include/%%NVUDIR%%/layout/nsHTMLParts.h
-include/%%NVUDIR%%/layout/nsHTMLReflowMetrics.h
-include/%%NVUDIR%%/layout/nsHTMLReflowState.h
-include/%%NVUDIR%%/layout/nsIAutoCopy.h
-include/%%NVUDIR%%/layout/nsIBoxLayoutManager.h
-include/%%NVUDIR%%/layout/nsIBoxObject.h
-include/%%NVUDIR%%/layout/nsIBoxPaintManager.h
-include/%%NVUDIR%%/layout/nsIBrowserBoxObject.h
-include/%%NVUDIR%%/layout/nsICanvasFrame.h
-include/%%NVUDIR%%/layout/nsICaret.h
-include/%%NVUDIR%%/layout/nsICheckboxControlFrame.h
-include/%%NVUDIR%%/layout/nsIChromeEventHandler.h
-include/%%NVUDIR%%/layout/nsIComboboxControlFrame.h
-include/%%NVUDIR%%/layout/nsIEditorBoxObject.h
-include/%%NVUDIR%%/layout/nsIFocusTracker.h
-include/%%NVUDIR%%/layout/nsIFormControlFrame.h
-include/%%NVUDIR%%/layout/nsIFormProcessor.h
-include/%%NVUDIR%%/layout/nsIFormSubmitObserver.h
-include/%%NVUDIR%%/layout/nsIFrame.h
-include/%%NVUDIR%%/layout/nsIFrameDebug.h
-include/%%NVUDIR%%/layout/nsIFrameFrame.h
-include/%%NVUDIR%%/layout/nsIFrameSelection.h
-include/%%NVUDIR%%/layout/nsIFrameTraversal.h
-include/%%NVUDIR%%/layout/nsIFrameUtil.h
-include/%%NVUDIR%%/layout/nsIGridPart.h
-include/%%NVUDIR%%/layout/nsIHTMLStyleSheet.h
-include/%%NVUDIR%%/layout/nsIIFrameBoxObject.h
-include/%%NVUDIR%%/layout/nsIImageControlFrame.h
-include/%%NVUDIR%%/layout/nsIImageFrame.h
-include/%%NVUDIR%%/layout/nsIImageMap.h
-include/%%NVUDIR%%/layout/nsILayoutDebugger.h
-include/%%NVUDIR%%/layout/nsILayoutHistoryState.h
-include/%%NVUDIR%%/layout/nsILineIterator.h
-include/%%NVUDIR%%/layout/nsIListBoxObject.h
-include/%%NVUDIR%%/layout/nsIListControlFrame.h
-include/%%NVUDIR%%/layout/nsIMenuBoxObject.h
-include/%%NVUDIR%%/layout/nsIMenuFrame.h
-include/%%NVUDIR%%/layout/nsIMenuParent.h
-include/%%NVUDIR%%/layout/nsIMutableStyleContext.h
-include/%%NVUDIR%%/layout/nsIObjectFrame.h
-include/%%NVUDIR%%/layout/nsIPageSequenceFrame.h
-include/%%NVUDIR%%/layout/nsIPercentHeightObserver.h
-include/%%NVUDIR%%/layout/nsIPopupBoxObject.h
-include/%%NVUDIR%%/layout/nsIPopupSetFrame.h
-include/%%NVUDIR%%/layout/nsIPresContext.h
-include/%%NVUDIR%%/layout/nsIPresShell.h
-include/%%NVUDIR%%/layout/nsIPresState.h
-include/%%NVUDIR%%/layout/nsIPrintContext.h
-include/%%NVUDIR%%/layout/nsIPrintPreviewContext.h
-include/%%NVUDIR%%/layout/nsIRadioControlFrame.h
-include/%%NVUDIR%%/layout/nsIReflowCallback.h
-include/%%NVUDIR%%/layout/nsIScrollBoxObject.h
-include/%%NVUDIR%%/layout/nsIScrollableFrame.h
-include/%%NVUDIR%%/layout/nsIScrollableViewProvider.h
-include/%%NVUDIR%%/layout/nsIScrollbarMediator.h
-include/%%NVUDIR%%/layout/nsISelectControlFrame.h
-include/%%NVUDIR%%/layout/nsISelectionImageService.h
-include/%%NVUDIR%%/layout/nsIStatefulFrame.h
-include/%%NVUDIR%%/layout/nsITableCellLayout.h
-include/%%NVUDIR%%/layout/nsITableLayout.h
-include/%%NVUDIR%%/layout/nsITextControlFrame.h
-include/%%NVUDIR%%/layout/nsITreeBoxObject.h
-include/%%NVUDIR%%/layout/nsITreeContentView.h
-include/%%NVUDIR%%/layout/nsITreeSelection.h
-include/%%NVUDIR%%/layout/nsITreeView.h
-include/%%NVUDIR%%/layout/nsLayoutCID.h
-include/%%NVUDIR%%/layout/nsLayoutErrors.h
-include/%%NVUDIR%%/layout/nsLayoutUtils.h
-include/%%NVUDIR%%/layout/nsPIBoxObject.h
-include/%%NVUDIR%%/layout/nsReflowType.h
-include/%%NVUDIR%%/layout/nsStyleChangeList.h
-include/%%NVUDIR%%/layout/nsStyleConsts.h
-include/%%NVUDIR%%/layout/nsTextTransformer.h
-include/%%NVUDIR%%/layout/nsTreeBodyFrame.h
-include/%%NVUDIR%%/layout/nsTreeColFrame.h
-include/%%NVUDIR%%/layout/nsTreeContentView.h
-include/%%NVUDIR%%/layout/nsTreeSelection.h
-include/%%NVUDIR%%/layout/nsTreeUtils.h
-include/%%NVUDIR%%/libreg/NSReg.h
-include/%%NVUDIR%%/libreg/VerReg.h
-include/%%NVUDIR%%/locale/nsCollation.h
-include/%%NVUDIR%%/locale/nsCollationCID.h
-include/%%NVUDIR%%/locale/nsDateTimeFormatCID.h
-include/%%NVUDIR%%/locale/nsICollation.h
-include/%%NVUDIR%%/locale/nsIDateTimeFormat.h
-include/%%NVUDIR%%/locale/nsIFontPackageHandler.h
-include/%%NVUDIR%%/locale/nsIFontPackageProxy.h
-include/%%NVUDIR%%/locale/nsIFontPackageService.h
-include/%%NVUDIR%%/locale/nsILanguageAtom.h
-include/%%NVUDIR%%/locale/nsILanguageAtomService.h
-include/%%NVUDIR%%/locale/nsILocale.h
-include/%%NVUDIR%%/locale/nsILocaleService.h
-include/%%NVUDIR%%/locale/nsIMacLocale.h
-include/%%NVUDIR%%/locale/nsIOS2Locale.h
-include/%%NVUDIR%%/locale/nsIPosixLocale.h
-include/%%NVUDIR%%/locale/nsIScriptableDateFormat.h
-include/%%NVUDIR%%/locale/nsIWin32Locale.h
-include/%%NVUDIR%%/locale/nsLocaleCID.h
-include/%%NVUDIR%%/lwbrk/nsIBinarySearchIterator.h
-include/%%NVUDIR%%/lwbrk/nsIBreakState.h
-include/%%NVUDIR%%/lwbrk/nsILineBreaker.h
-include/%%NVUDIR%%/lwbrk/nsILineBreakerFactory.h
-include/%%NVUDIR%%/lwbrk/nsILinearIterator.h
-include/%%NVUDIR%%/lwbrk/nsISemanticUnitScanner.h
-include/%%NVUDIR%%/lwbrk/nsIWordBreaker.h
-include/%%NVUDIR%%/lwbrk/nsIWordBreakerFactory.h
-include/%%NVUDIR%%/lwbrk/nsLWBrkCIID.h
-include/%%NVUDIR%%/mimetype/nsIMIMEHeaderParam.h
-include/%%NVUDIR%%/mimetype/nsIMIMEInfo.h
-include/%%NVUDIR%%/mimetype/nsIMIMEService.h
-include/%%NVUDIR%%/mimetype/nsMimeTypes.h
-include/%%NVUDIR%%/mork/mdb.h
-include/%%NVUDIR%%/mork/nsIMdbFactoryFactory.h
-include/%%NVUDIR%%/mork/nsMorkCID.h
-include/%%NVUDIR%%/mozIJSSubScriptLoader.h
-include/%%NVUDIR%%/mozilla-config.h
-include/%%NVUDIR%%/necko/ftpCore.h
-include/%%NVUDIR%%/necko/mozITXTToHTMLConv.h
-include/%%NVUDIR%%/necko/necko-config.h
-include/%%NVUDIR%%/necko/netCore.h
-include/%%NVUDIR%%/necko/nsCPasswordManager.h
-include/%%NVUDIR%%/necko/nsCPasswordManagerInternal.h
-include/%%NVUDIR%%/necko/nsIAboutModule.h
-include/%%NVUDIR%%/necko/nsIAsyncStreamCopier.h
-include/%%NVUDIR%%/necko/nsIAuthModule.h
-include/%%NVUDIR%%/necko/nsIAuthPrompt.h
-include/%%NVUDIR%%/necko/nsIBufferedStreams.h
-include/%%NVUDIR%%/necko/nsIByteRangeRequest.h
-include/%%NVUDIR%%/necko/nsICachingChannel.h
-include/%%NVUDIR%%/necko/nsICookie2.h
-include/%%NVUDIR%%/necko/nsICookieConsent.h
-include/%%NVUDIR%%/necko/nsICookieManager2.h
-include/%%NVUDIR%%/necko/nsICookiePermission.h
-include/%%NVUDIR%%/necko/nsICookieService.h
-include/%%NVUDIR%%/necko/nsICryptoFIPSInfo.h
-include/%%NVUDIR%%/necko/nsIDNSListener.h
-include/%%NVUDIR%%/necko/nsIDNSRecord.h
-include/%%NVUDIR%%/necko/nsIDNSRequest.h
-include/%%NVUDIR%%/necko/nsIDNSService.h
-include/%%NVUDIR%%/necko/nsIDataChannel.h
-include/%%NVUDIR%%/necko/nsIDirIndex.h
-include/%%NVUDIR%%/necko/nsIDirIndexListener.h
-include/%%NVUDIR%%/necko/nsIDirectoryListing.h
-include/%%NVUDIR%%/necko/nsIDownloader.h
-include/%%NVUDIR%%/necko/nsIEncodedChannel.h
-include/%%NVUDIR%%/necko/nsIExternalProtocolHandler.h
-include/%%NVUDIR%%/necko/nsIFTPChannel.h
-include/%%NVUDIR%%/necko/nsIFileChannel.h
-include/%%NVUDIR%%/necko/nsIFileProtocolHandler.h
-include/%%NVUDIR%%/necko/nsIFileStreams.h
-include/%%NVUDIR%%/necko/nsIHttpAuthManager.h
-include/%%NVUDIR%%/necko/nsIHttpAuthenticator.h
-include/%%NVUDIR%%/necko/nsIHttpChannelInternal.h
-include/%%NVUDIR%%/necko/nsIHttpEventSink.h
-include/%%NVUDIR%%/necko/nsIHttpProtocolHandler.h
-include/%%NVUDIR%%/necko/nsIIDNService.h
-include/%%NVUDIR%%/necko/nsIInputStreamChannel.h
-include/%%NVUDIR%%/necko/nsIInputStreamPump.h
-include/%%NVUDIR%%/necko/nsIJARChannel.h
-include/%%NVUDIR%%/necko/nsIJARProtocolHandler.h
-include/%%NVUDIR%%/necko/nsIJARURI.h
-include/%%NVUDIR%%/necko/nsIMIMEInputStream.h
-include/%%NVUDIR%%/necko/nsIMultiPartChannel.h
-include/%%NVUDIR%%/necko/nsIPasswordManager.h
-include/%%NVUDIR%%/necko/nsIPasswordManagerInternal.h
-include/%%NVUDIR%%/necko/nsIPermissionManager.h
-include/%%NVUDIR%%/necko/nsIProgressEventSink.h
-include/%%NVUDIR%%/necko/nsIPrompt.h
-include/%%NVUDIR%%/necko/nsIProtocolProxyService.h
-include/%%NVUDIR%%/necko/nsIProxiedProtocolHandler.h
-include/%%NVUDIR%%/necko/nsIProxy.h
-include/%%NVUDIR%%/necko/nsIProxyAutoConfig.h
-include/%%NVUDIR%%/necko/nsIProxyInfo.h
-include/%%NVUDIR%%/necko/nsIRequestObserverProxy.h
-include/%%NVUDIR%%/necko/nsIResProtocolHandler.h
-include/%%NVUDIR%%/necko/nsIResumableChannel.h
-include/%%NVUDIR%%/necko/nsIResumableEntityID.h
-include/%%NVUDIR%%/necko/nsISOCKSSocketInfo.h
-include/%%NVUDIR%%/necko/nsISSLSocketControl.h
-include/%%NVUDIR%%/necko/nsISSLSocketProvider.h
-include/%%NVUDIR%%/necko/nsISecretDecoderRing.h
-include/%%NVUDIR%%/necko/nsISecureBrowserUI.h
-include/%%NVUDIR%%/necko/nsISecurityEventSink.h
-include/%%NVUDIR%%/necko/nsIServerSocket.h
-include/%%NVUDIR%%/necko/nsISimpleStreamListener.h
-include/%%NVUDIR%%/necko/nsISocketProvider.h
-include/%%NVUDIR%%/necko/nsISocketProviderService.h
-include/%%NVUDIR%%/necko/nsISocketTransport.h
-include/%%NVUDIR%%/necko/nsISocketTransportService.h
-include/%%NVUDIR%%/necko/nsIStandardURL.h
-include/%%NVUDIR%%/necko/nsIStreamConverter.h
-include/%%NVUDIR%%/necko/nsIStreamConverterService.h
-include/%%NVUDIR%%/necko/nsIStreamListenerProxy.h
-include/%%NVUDIR%%/necko/nsIStreamListenerTee.h
-include/%%NVUDIR%%/necko/nsIStreamLoader.h
-include/%%NVUDIR%%/necko/nsIStreamTransportService.h
-include/%%NVUDIR%%/necko/nsISyncStreamListener.h
-include/%%NVUDIR%%/necko/nsITXTToHTMLConv.h
-include/%%NVUDIR%%/necko/nsITransport.h
-include/%%NVUDIR%%/necko/nsITransportSecurityInfo.h
-include/%%NVUDIR%%/necko/nsIURIChecker.h
-include/%%NVUDIR%%/necko/nsIURLParser.h
-include/%%NVUDIR%%/necko/nsIUnicharStreamLoader.h
-include/%%NVUDIR%%/necko/nsNetCID.h
-include/%%NVUDIR%%/necko/nsNetError.h
-include/%%NVUDIR%%/necko/nsNetUtil.h
-include/%%NVUDIR%%/necko/nsReadLine.h
-include/%%NVUDIR%%/necko/nsURIHashKey.h
-include/%%NVUDIR%%/necko/nsUnixColorPrintf.h
-include/%%NVUDIR%%/necko2/nsIViewSourceChannel.h
-include/%%NVUDIR%%/nkcache/nsCacheService.h
-include/%%NVUDIR%%/nkcache/nsICache.h
-include/%%NVUDIR%%/nkcache/nsICacheEntryDescriptor.h
-include/%%NVUDIR%%/nkcache/nsICacheListener.h
-include/%%NVUDIR%%/nkcache/nsICacheService.h
-include/%%NVUDIR%%/nkcache/nsICacheSession.h
-include/%%NVUDIR%%/nkcache/nsICacheVisitor.h
-include/%%NVUDIR%%/npapi.h
-include/%%NVUDIR%%/npupp.h
-include/%%NVUDIR%%/nsBuildID.h
-include/%%NVUDIR%%/nsCOMPtr.h
-include/%%NVUDIR%%/nsDebug.h
-include/%%NVUDIR%%/nsDirectoryServiceDefs.h
-include/%%NVUDIR%%/nsEmbedAPI.h
-include/%%NVUDIR%%/nsEmbedString.h
-include/%%NVUDIR%%/nsError.h
-include/%%NVUDIR%%/nsGenericFactory.h
-include/%%NVUDIR%%/nsICategoryManager.h
-include/%%NVUDIR%%/nsIChannel.h
-include/%%NVUDIR%%/nsIClassInfo.h
-include/%%NVUDIR%%/nsIClipboardCommands.h
-include/%%NVUDIR%%/nsIComponentManager.h
-include/%%NVUDIR%%/nsIComponentRegistrar.h
-include/%%NVUDIR%%/nsIContextMenuListener.h
-include/%%NVUDIR%%/nsICookie.h
-include/%%NVUDIR%%/nsICookieManager.h
-include/%%NVUDIR%%/nsID.h
-include/%%NVUDIR%%/nsIDOM3DocumentEvent.h
-include/%%NVUDIR%%/nsIDOM3EventTarget.h
-include/%%NVUDIR%%/nsIDOMAbstractView.h
-include/%%NVUDIR%%/nsIDOMAttr.h
-include/%%NVUDIR%%/nsIDOMBarProp.h
-include/%%NVUDIR%%/nsIDOMCDATASection.h
-include/%%NVUDIR%%/nsIDOMCSSPrimitiveValue.h
-include/%%NVUDIR%%/nsIDOMCSSRule.h
-include/%%NVUDIR%%/nsIDOMCSSRuleList.h
-include/%%NVUDIR%%/nsIDOMCSSStyleDeclaration.h
-include/%%NVUDIR%%/nsIDOMCSSStyleSheet.h
-include/%%NVUDIR%%/nsIDOMCSSValue.h
-include/%%NVUDIR%%/nsIDOMCSSValueList.h
-include/%%NVUDIR%%/nsIDOMCharacterData.h
-include/%%NVUDIR%%/nsIDOMComment.h
-include/%%NVUDIR%%/nsIDOMCustomEvent.h
-include/%%NVUDIR%%/nsIDOMDOMException.h
-include/%%NVUDIR%%/nsIDOMDOMImplementation.h
-include/%%NVUDIR%%/nsIDOMDocument.h
-include/%%NVUDIR%%/nsIDOMDocumentEvent.h
-include/%%NVUDIR%%/nsIDOMDocumentFragment.h
-include/%%NVUDIR%%/nsIDOMDocumentRange.h
-include/%%NVUDIR%%/nsIDOMDocumentStyle.h
-include/%%NVUDIR%%/nsIDOMDocumentType.h
-include/%%NVUDIR%%/nsIDOMDocumentView.h
-include/%%NVUDIR%%/nsIDOMElement.h
-include/%%NVUDIR%%/nsIDOMEntity.h
-include/%%NVUDIR%%/nsIDOMEntityReference.h
-include/%%NVUDIR%%/nsIDOMEvent.h
-include/%%NVUDIR%%/nsIDOMEventGroup.h
-include/%%NVUDIR%%/nsIDOMEventListener.h
-include/%%NVUDIR%%/nsIDOMEventTarget.h
-include/%%NVUDIR%%/nsIDOMHTMLAnchorElement.h
-include/%%NVUDIR%%/nsIDOMHTMLAppletElement.h
-include/%%NVUDIR%%/nsIDOMHTMLAreaElement.h
-include/%%NVUDIR%%/nsIDOMHTMLBRElement.h
-include/%%NVUDIR%%/nsIDOMHTMLBaseElement.h
-include/%%NVUDIR%%/nsIDOMHTMLBaseFontElement.h
-include/%%NVUDIR%%/nsIDOMHTMLBodyElement.h
-include/%%NVUDIR%%/nsIDOMHTMLButtonElement.h
-include/%%NVUDIR%%/nsIDOMHTMLCollection.h
-include/%%NVUDIR%%/nsIDOMHTMLDListElement.h
-include/%%NVUDIR%%/nsIDOMHTMLDirectoryElement.h
-include/%%NVUDIR%%/nsIDOMHTMLDivElement.h
-include/%%NVUDIR%%/nsIDOMHTMLDocument.h
-include/%%NVUDIR%%/nsIDOMHTMLElement.h
-include/%%NVUDIR%%/nsIDOMHTMLEmbedElement.h
-include/%%NVUDIR%%/nsIDOMHTMLFieldSetElement.h
-include/%%NVUDIR%%/nsIDOMHTMLFontElement.h
-include/%%NVUDIR%%/nsIDOMHTMLFormElement.h
-include/%%NVUDIR%%/nsIDOMHTMLFrameElement.h
-include/%%NVUDIR%%/nsIDOMHTMLFrameSetElement.h
-include/%%NVUDIR%%/nsIDOMHTMLHRElement.h
-include/%%NVUDIR%%/nsIDOMHTMLHeadElement.h
-include/%%NVUDIR%%/nsIDOMHTMLHeadingElement.h
-include/%%NVUDIR%%/nsIDOMHTMLHtmlElement.h
-include/%%NVUDIR%%/nsIDOMHTMLIFrameElement.h
-include/%%NVUDIR%%/nsIDOMHTMLImageElement.h
-include/%%NVUDIR%%/nsIDOMHTMLInputElement.h
-include/%%NVUDIR%%/nsIDOMHTMLIsIndexElement.h
-include/%%NVUDIR%%/nsIDOMHTMLLIElement.h
-include/%%NVUDIR%%/nsIDOMHTMLLabelElement.h
-include/%%NVUDIR%%/nsIDOMHTMLLegendElement.h
-include/%%NVUDIR%%/nsIDOMHTMLLinkElement.h
-include/%%NVUDIR%%/nsIDOMHTMLMapElement.h
-include/%%NVUDIR%%/nsIDOMHTMLMenuElement.h
-include/%%NVUDIR%%/nsIDOMHTMLMetaElement.h
-include/%%NVUDIR%%/nsIDOMHTMLModElement.h
-include/%%NVUDIR%%/nsIDOMHTMLOListElement.h
-include/%%NVUDIR%%/nsIDOMHTMLObjectElement.h
-include/%%NVUDIR%%/nsIDOMHTMLOptGroupElement.h
-include/%%NVUDIR%%/nsIDOMHTMLOptionElement.h
-include/%%NVUDIR%%/nsIDOMHTMLOptionsCollection.h
-include/%%NVUDIR%%/nsIDOMHTMLParagraphElement.h
-include/%%NVUDIR%%/nsIDOMHTMLParamElement.h
-include/%%NVUDIR%%/nsIDOMHTMLPreElement.h
-include/%%NVUDIR%%/nsIDOMHTMLQuoteElement.h
-include/%%NVUDIR%%/nsIDOMHTMLScriptElement.h
-include/%%NVUDIR%%/nsIDOMHTMLSelectElement.h
-include/%%NVUDIR%%/nsIDOMHTMLStyleElement.h
-include/%%NVUDIR%%/nsIDOMHTMLTableCaptionElem.h
-include/%%NVUDIR%%/nsIDOMHTMLTableCellElement.h
-include/%%NVUDIR%%/nsIDOMHTMLTableColElement.h
-include/%%NVUDIR%%/nsIDOMHTMLTableElement.h
-include/%%NVUDIR%%/nsIDOMHTMLTableRowElement.h
-include/%%NVUDIR%%/nsIDOMHTMLTableSectionElem.h
-include/%%NVUDIR%%/nsIDOMHTMLTextAreaElement.h
-include/%%NVUDIR%%/nsIDOMHTMLTitleElement.h
-include/%%NVUDIR%%/nsIDOMHTMLUListElement.h
-include/%%NVUDIR%%/nsIDOMMediaList.h
-include/%%NVUDIR%%/nsIDOMMouseEvent.h
-include/%%NVUDIR%%/nsIDOMNamedNodeMap.h
-include/%%NVUDIR%%/nsIDOMNode.h
-include/%%NVUDIR%%/nsIDOMNodeList.h
-include/%%NVUDIR%%/nsIDOMNotation.h
-include/%%NVUDIR%%/nsIDOMProcessingInstruction.h
-include/%%NVUDIR%%/nsIDOMRange.h
-include/%%NVUDIR%%/nsIDOMStyleSheet.h
-include/%%NVUDIR%%/nsIDOMStyleSheetList.h
-include/%%NVUDIR%%/nsIDOMText.h
-include/%%NVUDIR%%/nsIDOMUIEvent.h
-include/%%NVUDIR%%/nsIDOMWindow.h
-include/%%NVUDIR%%/nsIDOMWindow2.h
-include/%%NVUDIR%%/nsIDOMWindowCollection.h
-include/%%NVUDIR%%/nsIDebug.h
-include/%%NVUDIR%%/nsIDirectoryService.h
-include/%%NVUDIR%%/nsIEmbeddingSiteWindow.h
-include/%%NVUDIR%%/nsIFactory.h
-include/%%NVUDIR%%/nsIFile.h
-include/%%NVUDIR%%/nsIFileURL.h
-include/%%NVUDIR%%/nsIGenericFactory.h
-include/%%NVUDIR%%/nsIGlobalHistory.h
-include/%%NVUDIR%%/nsIHistoryEntry.h
-include/%%NVUDIR%%/nsIHttpChannel.h
-include/%%NVUDIR%%/nsIHttpHeaderVisitor.h
-include/%%NVUDIR%%/nsIIOService.h
-include/%%NVUDIR%%/nsIInputStream.h
-include/%%NVUDIR%%/nsIInterfaceRequestor.h
-include/%%NVUDIR%%/nsIInterfaceRequestorUtils.h
-include/%%NVUDIR%%/nsILoadGroup.h
-include/%%NVUDIR%%/nsILocalFile.h
-include/%%NVUDIR%%/nsIMemory.h
-include/%%NVUDIR%%/nsIModule.h
-include/%%NVUDIR%%/nsIObserver.h
-include/%%NVUDIR%%/nsIObserverService.h
-include/%%NVUDIR%%/nsIOutputStream.h
-include/%%NVUDIR%%/nsIPassword.h
-include/%%NVUDIR%%/nsIPrefBranch.h
-include/%%NVUDIR%%/nsIPrefLocalizedString.h
-include/%%NVUDIR%%/nsIPrefService.h
-include/%%NVUDIR%%/nsIProfile.h
-include/%%NVUDIR%%/nsIProfileChangeStatus.h
-include/%%NVUDIR%%/nsIProgrammingLanguage.h
-include/%%NVUDIR%%/nsIProperties.h
-include/%%NVUDIR%%/nsIProtocolHandler.h
-include/%%NVUDIR%%/nsIRequest.h
-include/%%NVUDIR%%/nsIRequestObserver.h
-include/%%NVUDIR%%/nsISHistory.h
-include/%%NVUDIR%%/nsISHistoryListener.h
-include/%%NVUDIR%%/nsIScriptableInputStream.h
-include/%%NVUDIR%%/nsISelection.h
-include/%%NVUDIR%%/nsIServiceManager.h
-include/%%NVUDIR%%/nsISimpleEnumerator.h
-include/%%NVUDIR%%/nsIStreamListener.h
-include/%%NVUDIR%%/nsISupports.h
-include/%%NVUDIR%%/nsISupportsBase.h
-include/%%NVUDIR%%/nsISupportsImpl.h
-include/%%NVUDIR%%/nsISupportsPrimitives.h
-include/%%NVUDIR%%/nsISupportsUtils.h
-include/%%NVUDIR%%/nsITooltipListener.h
-include/%%NVUDIR%%/nsITooltipTextProvider.h
-include/%%NVUDIR%%/nsITraceRefcnt.h
-include/%%NVUDIR%%/nsIURI.h
-include/%%NVUDIR%%/nsIURIContentListener.h
-include/%%NVUDIR%%/nsIURL.h
-include/%%NVUDIR%%/nsIUploadChannel.h
-include/%%NVUDIR%%/nsIWeakReference.h
-include/%%NVUDIR%%/nsIWeakReferenceUtils.h
-include/%%NVUDIR%%/nsIWebBrowser.h
-include/%%NVUDIR%%/nsIWebBrowserChrome.h
-include/%%NVUDIR%%/nsIWebBrowserChromeFocus.h
-include/%%NVUDIR%%/nsIWebBrowserFind.h
-include/%%NVUDIR%%/nsIWebBrowserFocus.h
-include/%%NVUDIR%%/nsIWebBrowserPrint.h
-include/%%NVUDIR%%/nsIWebBrowserSetup.h
-include/%%NVUDIR%%/nsIWindowCreator.h
-include/%%NVUDIR%%/nsIWindowWatcher.h
-include/%%NVUDIR%%/nsMemory.h
-include/%%NVUDIR%%/nsStringAPI.h
-include/%%NVUDIR%%/nsTraceRefcnt.h
-include/%%NVUDIR%%/nsWeakReference.h
-include/%%NVUDIR%%/nsXPCOM.h
-include/%%NVUDIR%%/nsXPCOMCID.h
-include/%%NVUDIR%%/nsXPCOMGlue.h
-include/%%NVUDIR%%/nscore.h
-include/%%NVUDIR%%/nspr/md/_aix.h
-include/%%NVUDIR%%/nspr/md/_beos.h
-include/%%NVUDIR%%/nspr/md/_bsdi.h
-include/%%NVUDIR%%/nspr/md/_darwin.h
-include/%%NVUDIR%%/nspr/md/_dgux.h
-include/%%NVUDIR%%/nspr/md/_freebsd.h
-include/%%NVUDIR%%/nspr/md/_hpux.h
-include/%%NVUDIR%%/nspr/md/_irix.h
-include/%%NVUDIR%%/nspr/md/_linux.h
-include/%%NVUDIR%%/nspr/md/_macos.h
-include/%%NVUDIR%%/nspr/md/_ncr.h
-include/%%NVUDIR%%/nspr/md/_nec.h
-include/%%NVUDIR%%/nspr/md/_netbsd.h
-include/%%NVUDIR%%/nspr/md/_nextstep.h
-include/%%NVUDIR%%/nspr/md/_nspr_pthread.h
-include/%%NVUDIR%%/nspr/md/_nto.h
-include/%%NVUDIR%%/nspr/md/_openbsd.h
-include/%%NVUDIR%%/nspr/md/_openvms.h
-include/%%NVUDIR%%/nspr/md/_os2.h
-include/%%NVUDIR%%/nspr/md/_os2_errors.h
-include/%%NVUDIR%%/nspr/md/_osf1.h
-include/%%NVUDIR%%/nspr/md/_pcos.h
-include/%%NVUDIR%%/nspr/md/_pth.h
-include/%%NVUDIR%%/nspr/md/_qnx.h
-include/%%NVUDIR%%/nspr/md/_reliantunix.h
-include/%%NVUDIR%%/nspr/md/_rhapsody.h
-include/%%NVUDIR%%/nspr/md/_scoos.h
-include/%%NVUDIR%%/nspr/md/_solaris.h
-include/%%NVUDIR%%/nspr/md/_sony.h
-include/%%NVUDIR%%/nspr/md/_sunos4.h
-include/%%NVUDIR%%/nspr/md/_unix_errors.h
-include/%%NVUDIR%%/nspr/md/_unixos.h
-include/%%NVUDIR%%/nspr/md/_unixware.h
-include/%%NVUDIR%%/nspr/md/_win16.h
-include/%%NVUDIR%%/nspr/md/_win32_errors.h
-include/%%NVUDIR%%/nspr/md/_win95.h
-include/%%NVUDIR%%/nspr/md/_winnt.h
-include/%%NVUDIR%%/nspr/md/prosdep.h
-include/%%NVUDIR%%/nspr/md/sunos4.h
-include/%%NVUDIR%%/nspr/nspr.h
-include/%%NVUDIR%%/nspr/obsolete/pralarm.h
-include/%%NVUDIR%%/nspr/obsolete/probslet.h
-include/%%NVUDIR%%/nspr/obsolete/protypes.h
-include/%%NVUDIR%%/nspr/obsolete/prsem.h
-include/%%NVUDIR%%/nspr/plarena.h
-include/%%NVUDIR%%/nspr/plarenas.h
-include/%%NVUDIR%%/nspr/plbase64.h
-include/%%NVUDIR%%/nspr/plerror.h
-include/%%NVUDIR%%/nspr/plgetopt.h
-include/%%NVUDIR%%/nspr/plhash.h
-include/%%NVUDIR%%/nspr/plresolv.h
-include/%%NVUDIR%%/nspr/plstr.h
-include/%%NVUDIR%%/nspr/pratom.h
-include/%%NVUDIR%%/nspr/prbit.h
-include/%%NVUDIR%%/nspr/prclist.h
-include/%%NVUDIR%%/nspr/prcmon.h
-include/%%NVUDIR%%/nspr/prcountr.h
-include/%%NVUDIR%%/nspr/prcpucfg.h
-include/%%NVUDIR%%/nspr/prcvar.h
-include/%%NVUDIR%%/nspr/prdtoa.h
-include/%%NVUDIR%%/nspr/prenv.h
-include/%%NVUDIR%%/nspr/prerr.h
-include/%%NVUDIR%%/nspr/prerror.h
-include/%%NVUDIR%%/nspr/prinet.h
-include/%%NVUDIR%%/nspr/prinit.h
-include/%%NVUDIR%%/nspr/prinrval.h
-include/%%NVUDIR%%/nspr/prio.h
-include/%%NVUDIR%%/nspr/pripcsem.h
-include/%%NVUDIR%%/nspr/private/pprio.h
-include/%%NVUDIR%%/nspr/private/pprthred.h
-include/%%NVUDIR%%/nspr/private/prpriv.h
-include/%%NVUDIR%%/nspr/prlink.h
-include/%%NVUDIR%%/nspr/prlock.h
-include/%%NVUDIR%%/nspr/prlog.h
-include/%%NVUDIR%%/nspr/prlong.h
-include/%%NVUDIR%%/nspr/prmem.h
-include/%%NVUDIR%%/nspr/prmon.h
-include/%%NVUDIR%%/nspr/prmwait.h
-include/%%NVUDIR%%/nspr/prnetdb.h
-include/%%NVUDIR%%/nspr/prolock.h
-include/%%NVUDIR%%/nspr/prpdce.h
-include/%%NVUDIR%%/nspr/prprf.h
-include/%%NVUDIR%%/nspr/prproces.h
-include/%%NVUDIR%%/nspr/prrng.h
-include/%%NVUDIR%%/nspr/prrwlock.h
-include/%%NVUDIR%%/nspr/prshm.h
-include/%%NVUDIR%%/nspr/prshma.h
-include/%%NVUDIR%%/nspr/prsystem.h
-include/%%NVUDIR%%/nspr/prthread.h
-include/%%NVUDIR%%/nspr/prtime.h
-include/%%NVUDIR%%/nspr/prtpool.h
-include/%%NVUDIR%%/nspr/prtrace.h
-include/%%NVUDIR%%/nspr/prtypes.h
-include/%%NVUDIR%%/nspr/prvrsion.h
-include/%%NVUDIR%%/nspr/prwin16.h
-include/%%NVUDIR%%/nsrootidl.h
-include/%%NVUDIR%%/pipboot/nsIBufEntropyCollector.h
-include/%%NVUDIR%%/pipboot/nsISSLStatusProvider.h
-include/%%NVUDIR%%/pipboot/nsISecurityWarningDialogs.h
-include/%%NVUDIR%%/pipnss/nsIASN1Object.h
-include/%%NVUDIR%%/pipnss/nsIASN1PrintableItem.h
-include/%%NVUDIR%%/pipnss/nsIASN1Sequence.h
-include/%%NVUDIR%%/pipnss/nsIBadCertListener.h
-include/%%NVUDIR%%/pipnss/nsICMSDecoder.h
-include/%%NVUDIR%%/pipnss/nsICMSEncoder.h
-include/%%NVUDIR%%/pipnss/nsICMSMessage.h
-include/%%NVUDIR%%/pipnss/nsICMSMessageErrors.h
-include/%%NVUDIR%%/pipnss/nsICMSSecureMessage.h
-include/%%NVUDIR%%/pipnss/nsICRLInfo.h
-include/%%NVUDIR%%/pipnss/nsICRLManager.h
-include/%%NVUDIR%%/pipnss/nsICertPickDialogs.h
-include/%%NVUDIR%%/pipnss/nsICertSelect.h
-include/%%NVUDIR%%/pipnss/nsICertTree.h
-include/%%NVUDIR%%/pipnss/nsICertificateDialogs.h
-include/%%NVUDIR%%/pipnss/nsICipherInfo.h
-include/%%NVUDIR%%/pipnss/nsIClientAuthDialogs.h
-include/%%NVUDIR%%/pipnss/nsIDOMCryptoDialogs.h
-include/%%NVUDIR%%/pipnss/nsIFormSigningDialog.h
-include/%%NVUDIR%%/pipnss/nsIGenKeypairInfoDlg.h
-include/%%NVUDIR%%/pipnss/nsIHash.h
-include/%%NVUDIR%%/pipnss/nsIKeygenThread.h
-include/%%NVUDIR%%/pipnss/nsINSSCertCache.h
-include/%%NVUDIR%%/pipnss/nsIOCSPResponder.h
-include/%%NVUDIR%%/pipnss/nsIPK11Token.h
-include/%%NVUDIR%%/pipnss/nsIPK11TokenDB.h
-include/%%NVUDIR%%/pipnss/nsIPKCS11Module.h
-include/%%NVUDIR%%/pipnss/nsIPKCS11ModuleDB.h
-include/%%NVUDIR%%/pipnss/nsIPKCS11Slot.h
-include/%%NVUDIR%%/pipnss/nsISMimeCert.h
-include/%%NVUDIR%%/pipnss/nsISSLStatus.h
-include/%%NVUDIR%%/pipnss/nsITokenDialogs.h
-include/%%NVUDIR%%/pipnss/nsITokenPasswordDialogs.h
-include/%%NVUDIR%%/pipnss/nsIUserCertPicker.h
-include/%%NVUDIR%%/pipnss/nsIX509Cert.h
-include/%%NVUDIR%%/pipnss/nsIX509CertDB.h
-include/%%NVUDIR%%/pipnss/nsIX509CertDB2.h
-include/%%NVUDIR%%/pipnss/nsIX509CertValidity.h
-include/%%NVUDIR%%/pippki/nsIASN1Tree.h
-include/%%NVUDIR%%/pippki/nsIPKIParamBlock.h
-include/%%NVUDIR%%/plugin/npapi.h
-include/%%NVUDIR%%/plugin/npupp.h
-include/%%NVUDIR%%/plugin/nsDefaultPlugin.h
-include/%%NVUDIR%%/plugin/nsIClassicPluginFactory.h
-include/%%NVUDIR%%/plugin/nsICookieStorage.h
-include/%%NVUDIR%%/plugin/nsIEventHandler.h
-include/%%NVUDIR%%/plugin/nsIFileUtilities.h
-include/%%NVUDIR%%/plugin/nsIHTTPHeaderListener.h
-include/%%NVUDIR%%/plugin/nsIJRILiveConnectPIPeer.h
-include/%%NVUDIR%%/plugin/nsIJRILiveConnectPlugin.h
-include/%%NVUDIR%%/plugin/nsIPlugin.h
-include/%%NVUDIR%%/plugin/nsIPluginDocument.h
-include/%%NVUDIR%%/plugin/nsIPluginHost.h
-include/%%NVUDIR%%/plugin/nsIPluginInputStream.h
-include/%%NVUDIR%%/plugin/nsIPluginInstance.h
-include/%%NVUDIR%%/plugin/nsIPluginInstanceOwner.h
-include/%%NVUDIR%%/plugin/nsIPluginInstancePeer.h
-include/%%NVUDIR%%/plugin/nsIPluginInstancePeer2.h
-include/%%NVUDIR%%/plugin/nsIPluginManager.h
-include/%%NVUDIR%%/plugin/nsIPluginManager2.h
-include/%%NVUDIR%%/plugin/nsIPluginStreamInfo.h
-include/%%NVUDIR%%/plugin/nsIPluginStreamListener.h
-include/%%NVUDIR%%/plugin/nsIPluginTagInfo.h
-include/%%NVUDIR%%/plugin/nsIPluginTagInfo2.h
-include/%%NVUDIR%%/plugin/nsIScriptablePlugin.h
-include/%%NVUDIR%%/plugin/nsIWindowlessPlugInstPeer.h
-include/%%NVUDIR%%/plugin/nsPIPluginHost.h
-include/%%NVUDIR%%/plugin/nsPIPluginInstancePeer.h
-include/%%NVUDIR%%/plugin/nsPluginError.h
-include/%%NVUDIR%%/plugin/nsPluginLogging.h
-include/%%NVUDIR%%/plugin/nsPluginNativeWindow.h
-include/%%NVUDIR%%/plugin/nsPluginsCID.h
-include/%%NVUDIR%%/plugin/nsplugin.h
-include/%%NVUDIR%%/plugin/nsplugindefs.h
-include/%%NVUDIR%%/plugin/nspluginroot.h
-include/%%NVUDIR%%/png/mozpngconf.h
-include/%%NVUDIR%%/png/png.h
-include/%%NVUDIR%%/png/pngconf.h
-include/%%NVUDIR%%/pref/nsIPref.h
-include/%%NVUDIR%%/pref/nsIPrefBranchInternal.h
-include/%%NVUDIR%%/pref/nsIRelativeFilePref.h
-include/%%NVUDIR%%/pref/nsISecurityPref.h
-include/%%NVUDIR%%/prefetch/nsCPrefetchService.h
-include/%%NVUDIR%%/prefetch/nsIPrefetchService.h
-include/%%NVUDIR%%/prefmigr/nsIPrefMigration.h
-include/%%NVUDIR%%/prefmigr/nsIPrefMigrationProgress.h
-include/%%NVUDIR%%/prefmigr/nsPrefMigration.h
-include/%%NVUDIR%%/prefmigr/nsPrefMigrationCIDs.h
-include/%%NVUDIR%%/prefmigr/nsPrefMigrationFactory.h
-include/%%NVUDIR%%/profdirserviceprovider/nsProfileDirServiceProvider.h
-include/%%NVUDIR%%/profile/nsIProfileInternal.h
-include/%%NVUDIR%%/profile/nsIProfileStartupListener.h
-include/%%NVUDIR%%/profile/nsISessionRoaming.h
-include/%%NVUDIR%%/progressDlg/nsIProgressDialog.h
-include/%%NVUDIR%%/rdf/nsILocalStore.h
-include/%%NVUDIR%%/rdf/nsIRDFCompositeDataSource.h
-include/%%NVUDIR%%/rdf/nsIRDFContainer.h
-include/%%NVUDIR%%/rdf/nsIRDFContainerUtils.h
-include/%%NVUDIR%%/rdf/nsIRDFContentSink.h
-include/%%NVUDIR%%/rdf/nsIRDFDataSource.h
-include/%%NVUDIR%%/rdf/nsIRDFDelegateFactory.h
-include/%%NVUDIR%%/rdf/nsIRDFFileSystem.h
-include/%%NVUDIR%%/rdf/nsIRDFInMemoryDataSource.h
-include/%%NVUDIR%%/rdf/nsIRDFLiteral.h
-include/%%NVUDIR%%/rdf/nsIRDFNode.h
-include/%%NVUDIR%%/rdf/nsIRDFObserver.h
-include/%%NVUDIR%%/rdf/nsIRDFPropagatableDataSource.h
-include/%%NVUDIR%%/rdf/nsIRDFPurgeableDataSource.h
-include/%%NVUDIR%%/rdf/nsIRDFRemoteDataSource.h
-include/%%NVUDIR%%/rdf/nsIRDFResource.h
-include/%%NVUDIR%%/rdf/nsIRDFService.h
-include/%%NVUDIR%%/rdf/nsIRDFXMLParser.h
-include/%%NVUDIR%%/rdf/nsIRDFXMLSerializer.h
-include/%%NVUDIR%%/rdf/nsIRDFXMLSink.h
-include/%%NVUDIR%%/rdf/nsIRDFXMLSource.h
-include/%%NVUDIR%%/rdf/nsRDFCID.h
-include/%%NVUDIR%%/rdf/rdf.h
-include/%%NVUDIR%%/rdfutil/nsRDFResource.h
-include/%%NVUDIR%%/shistory/nsISHContainer.h
-include/%%NVUDIR%%/shistory/nsISHEntry.h
-include/%%NVUDIR%%/shistory/nsISHTransaction.h
-include/%%NVUDIR%%/shistory/nsISHistoryInternal.h
-include/%%NVUDIR%%/sidebar/nsISidebar.h
-include/%%NVUDIR%%/spellchecker/mozIPersonalDictionary.h
-include/%%NVUDIR%%/spellchecker/mozISpellCheckingEngine.h
-include/%%NVUDIR%%/spellchecker/mozISpellI18NManager.h
-include/%%NVUDIR%%/spellchecker/mozISpellI18NUtil.h
-include/%%NVUDIR%%/string/nsAString.h
-include/%%NVUDIR%%/string/nsAlgorithm.h
-include/%%NVUDIR%%/string/nsCharTraits.h
-include/%%NVUDIR%%/string/nsDependentString.h
-include/%%NVUDIR%%/string/nsDependentSubstring.h
-include/%%NVUDIR%%/string/nsLiteralString.h
-include/%%NVUDIR%%/string/nsObsoleteAString.h
-include/%%NVUDIR%%/string/nsPrintfCString.h
-include/%%NVUDIR%%/string/nsPromiseFlatString.h
-include/%%NVUDIR%%/string/nsReadableUtils.h
-include/%%NVUDIR%%/string/nsString.h
-include/%%NVUDIR%%/string/nsStringFwd.h
-include/%%NVUDIR%%/string/nsStringIterator.h
-include/%%NVUDIR%%/string/nsSubstring.h
-include/%%NVUDIR%%/string/nsSubstringTuple.h
-include/%%NVUDIR%%/string/nsTAString.h
-include/%%NVUDIR%%/string/nsTDependentString.h
-include/%%NVUDIR%%/string/nsTDependentSubstring.h
-include/%%NVUDIR%%/string/nsTObsoleteAString.h
-include/%%NVUDIR%%/string/nsTPromiseFlatString.h
-include/%%NVUDIR%%/string/nsTString.h
-include/%%NVUDIR%%/string/nsTSubstring.h
-include/%%NVUDIR%%/string/nsTSubstringTuple.h
-include/%%NVUDIR%%/string/nsUTF8Utils.h
-include/%%NVUDIR%%/string/nsXPIDLString.h
-include/%%NVUDIR%%/string/string-template-def-char.h
-include/%%NVUDIR%%/string/string-template-def-unichar.h
-include/%%NVUDIR%%/string/string-template-undef.h
-include/%%NVUDIR%%/system-pref/nsSystemPrefLog.h
-include/%%NVUDIR%%/system-pref/nsSystemPrefService.h
-include/%%NVUDIR%%/txmgr/nsITransaction.h
-include/%%NVUDIR%%/txmgr/nsITransactionList.h
-include/%%NVUDIR%%/txmgr/nsITransactionListener.h
-include/%%NVUDIR%%/txmgr/nsITransactionManager.h
-include/%%NVUDIR%%/txmgr/nsTransactionManagerCID.h
-include/%%NVUDIR%%/txtsvc/mozIRealTimeSpell.h
-include/%%NVUDIR%%/txtsvc/nsISpellChecker.h
-include/%%NVUDIR%%/txtsvc/nsITextService.h
-include/%%NVUDIR%%/txtsvc/nsITextServicesDocument.h
-include/%%NVUDIR%%/txtsvc/nsITextServicesFilter.h
-include/%%NVUDIR%%/txtsvc/nsTextServicesCID.h
-include/%%NVUDIR%%/uconv/nsEncoderDecoderUtils.h
-include/%%NVUDIR%%/uconv/nsICharRepresentable.h
-include/%%NVUDIR%%/uconv/nsICharsetAlias.h
-include/%%NVUDIR%%/uconv/nsICharsetConverterManager.h
-include/%%NVUDIR%%/uconv/nsIConverterInputStream.h
-include/%%NVUDIR%%/uconv/nsICurrentCharsetListener.h
-include/%%NVUDIR%%/uconv/nsIMappingCache.h
-include/%%NVUDIR%%/uconv/nsIPlatformCharset.h
-include/%%NVUDIR%%/uconv/nsIScriptableUConv.h
-include/%%NVUDIR%%/uconv/nsITextToSubURI.h
-include/%%NVUDIR%%/uconv/nsIUTF8ConverterService.h
-include/%%NVUDIR%%/uconv/nsIUnicodeDecodeHelper.h
-include/%%NVUDIR%%/uconv/nsIUnicodeDecoder.h
-include/%%NVUDIR%%/uconv/nsIUnicodeEncodeHelper.h
-include/%%NVUDIR%%/uconv/nsIUnicodeEncoder.h
-include/%%NVUDIR%%/uconv/nsUConvCID.h
-include/%%NVUDIR%%/uconv/uconvutil.h
-include/%%NVUDIR%%/ucvcn/nsUCvCnCID.h
-include/%%NVUDIR%%/ucvibm/nsUCvIBMCID.h
-include/%%NVUDIR%%/ucvja/nsUCVJA2CID.h
-include/%%NVUDIR%%/ucvja/nsUCVJACID.h
-include/%%NVUDIR%%/ucvko/nsUCvKOCID.h
-include/%%NVUDIR%%/ucvlatin/nsUCvLatinCID.h
-include/%%NVUDIR%%/ucvtw/nsUCvTWCID.h
-include/%%NVUDIR%%/ucvtw2/nsUCvTW2CID.h
-include/%%NVUDIR%%/unicharutil/nsCompressedCharMap.h
-include/%%NVUDIR%%/unicharutil/nsHankakuToZenkakuCID.h
-include/%%NVUDIR%%/unicharutil/nsICaseConversion.h
-include/%%NVUDIR%%/unicharutil/nsIEntityConverter.h
-include/%%NVUDIR%%/unicharutil/nsIOrderIdFormater.h
-include/%%NVUDIR%%/unicharutil/nsISaveAsCharset.h
-include/%%NVUDIR%%/unicharutil/nsITextTransform.h
-include/%%NVUDIR%%/unicharutil/nsIUGenCategory.h
-include/%%NVUDIR%%/unicharutil/nsIUGenDetailCategory.h
-include/%%NVUDIR%%/unicharutil/nsIUnicodeNormalizer.h
-include/%%NVUDIR%%/unicharutil/nsUnicharUtilCIID.h
-include/%%NVUDIR%%/unicharutil/nsUnicharUtils.h
-include/%%NVUDIR%%/uriloader/nsCURILoader.h
-include/%%NVUDIR%%/uriloader/nsDocLoader.h
-include/%%NVUDIR%%/uriloader/nsIContentHandler.h
-include/%%NVUDIR%%/uriloader/nsIDocumentLoader.h
-include/%%NVUDIR%%/uriloader/nsIDownload.h
-include/%%NVUDIR%%/uriloader/nsIURILoader.h
-include/%%NVUDIR%%/uriloader/nsIWebProgress.h
-include/%%NVUDIR%%/uriloader/nsIWebProgressListener.h
-include/%%NVUDIR%%/uriloader/nsURILoader.h
-include/%%NVUDIR%%/util/nsTimer.h
-include/%%NVUDIR%%/util/stopwatch.h
-include/%%NVUDIR%%/view/nsICompositeListener.h
-include/%%NVUDIR%%/view/nsIScrollPositionListener.h
-include/%%NVUDIR%%/view/nsIScrollableView.h
-include/%%NVUDIR%%/view/nsIView.h
-include/%%NVUDIR%%/view/nsIViewManager.h
-include/%%NVUDIR%%/view/nsIViewObserver.h
-include/%%NVUDIR%%/view/nsViewsCID.h
-include/%%NVUDIR%%/wallet/nsCPassword.h
-include/%%NVUDIR%%/wallet/nsIWalletService.h
-include/%%NVUDIR%%/walletviewers/nsISignonViewer.h
-include/%%NVUDIR%%/walletviewers/nsIWalletEditor.h
-include/%%NVUDIR%%/walletviewers/nsIWalletPreview.h
-include/%%NVUDIR%%/webbrowserpersist/nsCWebBrowserPersist.h
-include/%%NVUDIR%%/webbrowserpersist/nsIWebBrowserPersist.h
-include/%%NVUDIR%%/webbrwsr/nsCTooltipTextProvider.h
-include/%%NVUDIR%%/webbrwsr/nsCWebBrowser.h
-include/%%NVUDIR%%/webbrwsr/nsICommandHandler.h
-include/%%NVUDIR%%/webbrwsr/nsIContextMenuListener2.h
-include/%%NVUDIR%%/webbrwsr/nsIEmbeddingSiteWindow2.h
-include/%%NVUDIR%%/webbrwsr/nsIPrintingPrompt.h
-include/%%NVUDIR%%/webbrwsr/nsIPrintingPromptService.h
-include/%%NVUDIR%%/webshell/nsIContentViewerContainer.h
-include/%%NVUDIR%%/webshell/nsIDocStreamLoaderFactory.h
-include/%%NVUDIR%%/webshell/nsIDocumentLoaderFactory.h
-include/%%NVUDIR%%/webshell/nsILinkHandler.h
-include/%%NVUDIR%%/webshell/nsIRefreshURI.h
-include/%%NVUDIR%%/webshell/nsIWebShell.h
-include/%%NVUDIR%%/webshell/nsIWebShellServices.h
-include/%%NVUDIR%%/widget/mozcontainer.h
-include/%%NVUDIR%%/widget/mozdrawingarea.h
-include/%%NVUDIR%%/widget/nsEvent.h
-include/%%NVUDIR%%/widget/nsGUIEvent.h
-include/%%NVUDIR%%/widget/nsIAppShell.h
-include/%%NVUDIR%%/widget/nsIBaseWindow.h
-include/%%NVUDIR%%/widget/nsIBidiKeyboard.h
-include/%%NVUDIR%%/widget/nsIButton.h
-include/%%NVUDIR%%/widget/nsICheckButton.h
-include/%%NVUDIR%%/widget/nsIClipboard.h
-include/%%NVUDIR%%/widget/nsIClipboardDragDropHookList.h
-include/%%NVUDIR%%/widget/nsIClipboardDragDropHooks.h
-include/%%NVUDIR%%/widget/nsIClipboardHelper.h
-include/%%NVUDIR%%/widget/nsIClipboardOwner.h
-include/%%NVUDIR%%/widget/nsIDragService.h
-include/%%NVUDIR%%/widget/nsIDragSession.h
-include/%%NVUDIR%%/widget/nsIDragSessionGTK.h
-include/%%NVUDIR%%/widget/nsIDragSessionMac.h
-include/%%NVUDIR%%/widget/nsIDragSessionOS2.h
-include/%%NVUDIR%%/widget/nsIDragSessionXlib.h
-include/%%NVUDIR%%/widget/nsIEventListener.h
-include/%%NVUDIR%%/widget/nsIFilePicker.h
-include/%%NVUDIR%%/widget/nsIFormatConverter.h
-include/%%NVUDIR%%/widget/nsIFullScreen.h
-include/%%NVUDIR%%/widget/nsIKBStateControl.h
-include/%%NVUDIR%%/widget/nsILabel.h
-include/%%NVUDIR%%/widget/nsILookAndFeel.h
-include/%%NVUDIR%%/widget/nsIMenu.h
-include/%%NVUDIR%%/widget/nsIMenuBar.h
-include/%%NVUDIR%%/widget/nsIMenuItem.h
-include/%%NVUDIR%%/widget/nsIMenuListener.h
-include/%%NVUDIR%%/widget/nsIMenuRollup.h
-include/%%NVUDIR%%/widget/nsIMouseListener.h
-include/%%NVUDIR%%/widget/nsINativeScrollbar.h
-include/%%NVUDIR%%/widget/nsIPluginWidget.h
-include/%%NVUDIR%%/widget/nsIRollupListener.h
-include/%%NVUDIR%%/widget/nsISound.h
-include/%%NVUDIR%%/widget/nsITextWidget.h
-include/%%NVUDIR%%/widget/nsIToolkit.h
-include/%%NVUDIR%%/widget/nsITransferable.h
-include/%%NVUDIR%%/widget/nsIWidget.h
-include/%%NVUDIR%%/widget/nsIXRemoteClient.h
-include/%%NVUDIR%%/widget/nsIXRemoteWidgetHelper.h
-include/%%NVUDIR%%/widget/nsStringUtil.h
-include/%%NVUDIR%%/widget/nsWidgetSupport.h
-include/%%NVUDIR%%/widget/nsWidgetsCID.h
-include/%%NVUDIR%%/widget/nsXRemoteClientCID.h
-include/%%NVUDIR%%/windowwatcher/nsIAuthPromptWrapper.h
-include/%%NVUDIR%%/windowwatcher/nsIDialogParamBlock.h
-include/%%NVUDIR%%/windowwatcher/nsIPromptService.h
-include/%%NVUDIR%%/windowwatcher/nsPIPromptService.h
-include/%%NVUDIR%%/windowwatcher/nsPIWindowWatcher.h
-include/%%NVUDIR%%/xlibrgb/xlibrgb.h
-include/%%NVUDIR%%/xmlextras/nsIDOMParser.h
-include/%%NVUDIR%%/xmlextras/nsIDOMSerializer.h
-include/%%NVUDIR%%/xmlextras/nsIXMLHttpRequest.h
-include/%%NVUDIR%%/xpcom-config.h
-include/%%NVUDIR%%/xpcom/nsAgg.h
-include/%%NVUDIR%%/xpcom/nsAppDirectoryServiceDefs.h
-include/%%NVUDIR%%/xpcom/nsArray.h
-include/%%NVUDIR%%/xpcom/nsArrayEnumerator.h
-include/%%NVUDIR%%/xpcom/nsAtomService.h
-include/%%NVUDIR%%/xpcom/nsAutoBuffer.h
-include/%%NVUDIR%%/xpcom/nsAutoLock.h
-include/%%NVUDIR%%/xpcom/nsAutoPtr.h
-include/%%NVUDIR%%/xpcom/nsBaseHashtable.h
-include/%%NVUDIR%%/xpcom/nsCOMArray.h
-include/%%NVUDIR%%/xpcom/nsCRT.h
-include/%%NVUDIR%%/xpcom/nsCategoryManagerUtils.h
-include/%%NVUDIR%%/xpcom/nsCheapSets.h
-include/%%NVUDIR%%/xpcom/nsClassHashtable.h
-include/%%NVUDIR%%/xpcom/nsCom.h
-include/%%NVUDIR%%/xpcom/nsComObsolete.h
-include/%%NVUDIR%%/xpcom/nsComponentManagerObsolete.h
-include/%%NVUDIR%%/xpcom/nsComponentManagerUtils.h
-include/%%NVUDIR%%/xpcom/nsCppSharedAllocator.h
-include/%%NVUDIR%%/xpcom/nsDataHashtable.h
-include/%%NVUDIR%%/xpcom/nsDebugImpl.h
-include/%%NVUDIR%%/xpcom/nsDeque.h
-include/%%NVUDIR%%/xpcom/nsDirectoryService.h
-include/%%NVUDIR%%/xpcom/nsDirectoryServiceUtils.h
-include/%%NVUDIR%%/xpcom/nsDoubleHashtable.h
-include/%%NVUDIR%%/xpcom/nsEnumeratorUtils.h
-include/%%NVUDIR%%/xpcom/nsEscape.h
-include/%%NVUDIR%%/xpcom/nsEventQueueUtils.h
-include/%%NVUDIR%%/xpcom/nsFastLoadPtr.h
-include/%%NVUDIR%%/xpcom/nsFastLoadService.h
-include/%%NVUDIR%%/xpcom/nsFixedSizeAllocator.h
-include/%%NVUDIR%%/xpcom/nsHashKeys.h
-include/%%NVUDIR%%/xpcom/nsHashSets.h
-include/%%NVUDIR%%/xpcom/nsHashtable.h
-include/%%NVUDIR%%/xpcom/nsIAllocator.h
-include/%%NVUDIR%%/xpcom/nsIArray.h
-include/%%NVUDIR%%/xpcom/nsIAsyncInputStream.h
-include/%%NVUDIR%%/xpcom/nsIAsyncOutputStream.h
-include/%%NVUDIR%%/xpcom/nsIAtom.h
-include/%%NVUDIR%%/xpcom/nsIAtomService.h
-include/%%NVUDIR%%/xpcom/nsIBinaryInputStream.h
-include/%%NVUDIR%%/xpcom/nsIBinaryOutputStream.h
-include/%%NVUDIR%%/xpcom/nsIByteArrayInputStream.h
-include/%%NVUDIR%%/xpcom/nsIByteBuffer.h
-include/%%NVUDIR%%/xpcom/nsICollection.h
-include/%%NVUDIR%%/xpcom/nsIComponentLoader.h
-include/%%NVUDIR%%/xpcom/nsIComponentLoaderManager.h
-include/%%NVUDIR%%/xpcom/nsIComponentManagerObsolete.h
-include/%%NVUDIR%%/xpcom/nsIConsoleListener.h
-include/%%NVUDIR%%/xpcom/nsIConsoleMessage.h
-include/%%NVUDIR%%/xpcom/nsIConsoleService.h
-include/%%NVUDIR%%/xpcom/nsIEnumerator.h
-include/%%NVUDIR%%/xpcom/nsIEnvironment.h
-include/%%NVUDIR%%/xpcom/nsIErrorService.h
-include/%%NVUDIR%%/xpcom/nsIEventQueue.h
-include/%%NVUDIR%%/xpcom/nsIEventQueueService.h
-include/%%NVUDIR%%/xpcom/nsIEventTarget.h
-include/%%NVUDIR%%/xpcom/nsIException.h
-include/%%NVUDIR%%/xpcom/nsIExceptionService.h
-include/%%NVUDIR%%/xpcom/nsIFastLoadFileControl.h
-include/%%NVUDIR%%/xpcom/nsIFastLoadService.h
-include/%%NVUDIR%%/xpcom/nsIID.h
-include/%%NVUDIR%%/xpcom/nsIInputStreamTee.h
-include/%%NVUDIR%%/xpcom/nsIInterfaceInfo.h
-include/%%NVUDIR%%/xpcom/nsIInterfaceInfoManager.h
-include/%%NVUDIR%%/xpcom/nsILineInputStream.h
-include/%%NVUDIR%%/xpcom/nsIMultiplexInputStream.h
-include/%%NVUDIR%%/xpcom/nsINativeComponentLoader.h
-include/%%NVUDIR%%/xpcom/nsIObjectInputStream.h
-include/%%NVUDIR%%/xpcom/nsIObjectOutputStream.h
-include/%%NVUDIR%%/xpcom/nsIPersistentProperties2.h
-include/%%NVUDIR%%/xpcom/nsIPipe.h
-include/%%NVUDIR%%/xpcom/nsIProcess.h
-include/%%NVUDIR%%/xpcom/nsIPropertyBag.h
-include/%%NVUDIR%%/xpcom/nsIProxyCreateInstance.h
-include/%%NVUDIR%%/xpcom/nsIProxyObjectManager.h
-include/%%NVUDIR%%/xpcom/nsIRecyclingAllocator.h
-include/%%NVUDIR%%/xpcom/nsIRunnable.h
-include/%%NVUDIR%%/xpcom/nsISeekableStream.h
-include/%%NVUDIR%%/xpcom/nsISerializable.h
-include/%%NVUDIR%%/xpcom/nsIServiceManagerObsolete.h
-include/%%NVUDIR%%/xpcom/nsIServiceManagerUtils.h
-include/%%NVUDIR%%/xpcom/nsIStorageStream.h
-include/%%NVUDIR%%/xpcom/nsIStreamBufferAccess.h
-include/%%NVUDIR%%/xpcom/nsIStringEnumerator.h
-include/%%NVUDIR%%/xpcom/nsIStringStream.h
-include/%%NVUDIR%%/xpcom/nsISupportsArray.h
-include/%%NVUDIR%%/xpcom/nsISupportsIterators.h
-include/%%NVUDIR%%/xpcom/nsISupportsObsolete.h
-include/%%NVUDIR%%/xpcom/nsIThread.h
-include/%%NVUDIR%%/xpcom/nsITimelineService.h
-include/%%NVUDIR%%/xpcom/nsITimer.h
-include/%%NVUDIR%%/xpcom/nsITimerInternal.h
-include/%%NVUDIR%%/xpcom/nsITimerManager.h
-include/%%NVUDIR%%/xpcom/nsIUnicharBuffer.h
-include/%%NVUDIR%%/xpcom/nsIUnicharInputStream.h
-include/%%NVUDIR%%/xpcom/nsIVariant.h
-include/%%NVUDIR%%/xpcom/nsIXPTLoader.h
-include/%%NVUDIR%%/xpcom/nsInt64.h
-include/%%NVUDIR%%/xpcom/nsInterfaceHashtable.h
-include/%%NVUDIR%%/xpcom/nsLinebreakConverter.h
-include/%%NVUDIR%%/xpcom/nsLocalFile.h
-include/%%NVUDIR%%/xpcom/nsLocalFileUnix.h
-include/%%NVUDIR%%/xpcom/nsMultiplexInputStream.h
-include/%%NVUDIR%%/xpcom/nsNativeCharsetUtils.h
-include/%%NVUDIR%%/xpcom/nsNativeComponentLoader.h
-include/%%NVUDIR%%/xpcom/nsObserverService.h
-include/%%NVUDIR%%/xpcom/nsObsoleteModuleLoading.h
-include/%%NVUDIR%%/xpcom/nsProcess.h
-include/%%NVUDIR%%/xpcom/nsProxiedService.h
-include/%%NVUDIR%%/xpcom/nsProxyEvent.h
-include/%%NVUDIR%%/xpcom/nsProxyRelease.h
-include/%%NVUDIR%%/xpcom/nsQuickSort.h
-include/%%NVUDIR%%/xpcom/nsRecyclingAllocator.h
-include/%%NVUDIR%%/xpcom/nsRefPtrHashtable.h
-include/%%NVUDIR%%/xpcom/nsScriptableInputStream.h
-include/%%NVUDIR%%/xpcom/nsStaticAtom.h
-include/%%NVUDIR%%/xpcom/nsStaticComponent.h
-include/%%NVUDIR%%/xpcom/nsStaticNameTable.h
-include/%%NVUDIR%%/xpcom/nsStorageStream.h
-include/%%NVUDIR%%/xpcom/nsStreamUtils.h
-include/%%NVUDIR%%/xpcom/nsStringEnumerator.h
-include/%%NVUDIR%%/xpcom/nsStringIO.h
-include/%%NVUDIR%%/xpcom/nsStringStream.h
-include/%%NVUDIR%%/xpcom/nsSupportsArray.h
-include/%%NVUDIR%%/xpcom/nsSupportsPrimitives.h
-include/%%NVUDIR%%/xpcom/nsTHashtable.h
-include/%%NVUDIR%%/xpcom/nsTextFormatter.h
-include/%%NVUDIR%%/xpcom/nsTime.h
-include/%%NVUDIR%%/xpcom/nsTraceRefcntImpl.h
-include/%%NVUDIR%%/xpcom/nsUnitConversion.h
-include/%%NVUDIR%%/xpcom/nsValueArray.h
-include/%%NVUDIR%%/xpcom/nsVariant.h
-include/%%NVUDIR%%/xpcom/nsVoidArray.h
-include/%%NVUDIR%%/xpcom/nsWeakPtr.h
-include/%%NVUDIR%%/xpcom/pldhash.h
-include/%%NVUDIR%%/xpcom/plevent.h
-include/%%NVUDIR%%/xpcom/xcDll.h
-include/%%NVUDIR%%/xpcom/xpt_arena.h
-include/%%NVUDIR%%/xpcom/xpt_struct.h
-include/%%NVUDIR%%/xpcom/xpt_xdr.h
-include/%%NVUDIR%%/xpcom/xptcall.h
-include/%%NVUDIR%%/xpcom/xptcstubsdecl.inc
-include/%%NVUDIR%%/xpcom/xptcstubsdef.inc
-include/%%NVUDIR%%/xpcom/xptinfo.h
-include/%%NVUDIR%%/xpcom_obsolete/nsFileSpec.h
-include/%%NVUDIR%%/xpcom_obsolete/nsFileStream.h
-include/%%NVUDIR%%/xpcom_obsolete/nsIFileSpec.h
-include/%%NVUDIR%%/xpcom_obsolete/nsIFileStream.h
-include/%%NVUDIR%%/xpcom_obsolete/nsIRegistry.h
-include/%%NVUDIR%%/xpcom_obsolete/nsIRegistryUtils.h
-include/%%NVUDIR%%/xpcom_obsolete/nsSpecialSystemDirectory.h
-include/%%NVUDIR%%/xpcom_obsolete/xpcomobsolete.h
-include/%%NVUDIR%%/xpconnect/XPCIDispatch.h
-include/%%NVUDIR%%/xpconnect/nsIJSContextStack.h
-include/%%NVUDIR%%/xpconnect/nsIJSRuntimeService.h
-include/%%NVUDIR%%/xpconnect/nsIScriptError.h
-include/%%NVUDIR%%/xpconnect/nsIScriptableInterfaces.h
-include/%%NVUDIR%%/xpconnect/nsIXPCScriptNotify.h
-include/%%NVUDIR%%/xpconnect/nsIXPCScriptable.h
-include/%%NVUDIR%%/xpconnect/nsIXPCSecurityManager.h
-include/%%NVUDIR%%/xpconnect/nsIXPConnect.h
-include/%%NVUDIR%%/xpconnect/xpc_map_end.h
-include/%%NVUDIR%%/xpconnect/xpccomponents.h
-include/%%NVUDIR%%/xpconnect/xpcexception.h
-include/%%NVUDIR%%/xpconnect/xpcjsid.h
-include/%%NVUDIR%%/xpinstall/InstallCleanupDefines.h
-include/%%NVUDIR%%/xpinstall/nsIDOMInstallTriggerGlobal.h
-include/%%NVUDIR%%/xpinstall/nsIDOMInstallVersion.h
-include/%%NVUDIR%%/xpinstall/nsISoftwareUpdate.h
-include/%%NVUDIR%%/xpinstall/nsIXPIDialogService.h
-include/%%NVUDIR%%/xpinstall/nsIXPINotifier.h
-include/%%NVUDIR%%/xpinstall/nsIXPIProgressDialog.h
-include/%%NVUDIR%%/xpinstall/nsPICertNotification.h
-include/%%NVUDIR%%/xpinstall/nsPIXPIProxy.h
-include/%%NVUDIR%%/xpinstall/nsPIXPIStubHook.h
-include/%%NVUDIR%%/xpinstall/nsSoftwareUpdateIIDs.h
-include/%%NVUDIR%%/xpinstall/nsXPITriggerInfo.h
-include/%%NVUDIR%%/xprintutil/xprintutil.h
-include/%%NVUDIR%%/xremoteservice/nsIXRemoteService.h
-include/%%NVUDIR%%/xul/nsIXULContent.h
-include/%%NVUDIR%%/xul/nsIXULPopupListener.h
-include/%%NVUDIR%%/xulapp/nsXULAppAPI.h
-include/%%NVUDIR%%/xuldoc/nsIController.h
-include/%%NVUDIR%%/xuldoc/nsIControllers.h
-include/%%NVUDIR%%/xuldoc/nsIXULContentSink.h
-include/%%NVUDIR%%/xuldoc/nsIXULDocument.h
-include/%%NVUDIR%%/xuldoc/nsIXULOverlayProvider.h
-include/%%NVUDIR%%/xuldoc/nsIXULPrototypeCache.h
-include/%%NVUDIR%%/xuldoc/nsIXULPrototypeDocument.h
-include/%%NVUDIR%%/xultmpl/nsIXULBuilderListener.h
-include/%%NVUDIR%%/xultmpl/nsIXULSortService.h
-include/%%NVUDIR%%/xultmpl/nsIXULTemplateBuilder.h
-lib/%%NVUDIR%%/TestGtkEmbed
-lib/%%NVUDIR%%/chrome/US.jar
-lib/%%NVUDIR%%/chrome/cascades.jar
-lib/%%NVUDIR%%/chrome/chromelist.txt
-lib/%%NVUDIR%%/chrome/classic.jar
-lib/%%NVUDIR%%/chrome/comm.jar
-lib/%%NVUDIR%%/chrome/embed-sample.jar
-lib/%%NVUDIR%%/chrome/en-US.jar
-lib/%%NVUDIR%%/chrome/en-mac.jar
-lib/%%NVUDIR%%/chrome/en-unix.jar
-lib/%%NVUDIR%%/chrome/en-win.jar
-lib/%%NVUDIR%%/chrome/icons/default/default.xpm
-lib/%%NVUDIR%%/chrome/icons/default/editorWindow.xpm
-lib/%%NVUDIR%%/chrome/icons/default/editorWindow16.xpm
-lib/%%NVUDIR%%/chrome/inspector.jar
-lib/%%NVUDIR%%/chrome/installed-chrome.txt
-lib/%%NVUDIR%%/chrome/pinger.jar
-lib/%%NVUDIR%%/chrome/pipnss.jar
-lib/%%NVUDIR%%/chrome/pippki.jar
-lib/%%NVUDIR%%/chrome/tipoftheday.jar
-lib/%%NVUDIR%%/chrome/toolkit.jar
-lib/%%NVUDIR%%/chrome/venkman.jar
-lib/%%NVUDIR%%/components/accessibility-atk.xpt
-lib/%%NVUDIR%%/components/accessibility.xpt
-lib/%%NVUDIR%%/components/appshell.xpt
-lib/%%NVUDIR%%/components/autocomplete.xpt
-lib/%%NVUDIR%%/components/autoconfig.xpt
-lib/%%NVUDIR%%/components/bookmarks.xpt
-lib/%%NVUDIR%%/components/caps.xpt
-lib/%%NVUDIR%%/components/chardet.xpt
-lib/%%NVUDIR%%/components/commandhandler.xpt
-lib/%%NVUDIR%%/components/composer.xpt
-lib/%%NVUDIR%%/components/content_base.xpt
-lib/%%NVUDIR%%/components/content_html.xpt
-lib/%%NVUDIR%%/components/content_htmldoc.xpt
-lib/%%NVUDIR%%/components/content_xmldoc.xpt
-lib/%%NVUDIR%%/components/content_xslt.xpt
-lib/%%NVUDIR%%/components/docshell.xpt
-lib/%%NVUDIR%%/components/dom.xpt
-lib/%%NVUDIR%%/components/dom_base.xpt
-lib/%%NVUDIR%%/components/dom_core.xpt
-lib/%%NVUDIR%%/components/dom_css.xpt
-lib/%%NVUDIR%%/components/dom_events.xpt
-lib/%%NVUDIR%%/components/dom_html.xpt
-lib/%%NVUDIR%%/components/dom_range.xpt
-lib/%%NVUDIR%%/components/dom_stylesheets.xpt
-lib/%%NVUDIR%%/components/dom_traversal.xpt
-lib/%%NVUDIR%%/components/dom_views.xpt
-lib/%%NVUDIR%%/components/dom_xbl.xpt
-lib/%%NVUDIR%%/components/dom_xpath.xpt
-lib/%%NVUDIR%%/components/dom_xul.xpt
-lib/%%NVUDIR%%/components/downloadmanager.xpt
-lib/%%NVUDIR%%/components/editor.xpt
-lib/%%NVUDIR%%/components/embed_base.xpt
-lib/%%NVUDIR%%/components/extensions.xpt
-lib/%%NVUDIR%%/components/exthandler.xpt
-lib/%%NVUDIR%%/components/filepicker.xpt
-lib/%%NVUDIR%%/components/find.xpt
-lib/%%NVUDIR%%/components/gfx.xpt
-lib/%%NVUDIR%%/components/helperAppDlg.xpt
-lib/%%NVUDIR%%/components/history.xpt
-lib/%%NVUDIR%%/components/htmlparser.xpt
-lib/%%NVUDIR%%/components/imglib2.xpt
-lib/%%NVUDIR%%/components/inspector-cmdline.js
-lib/%%NVUDIR%%/components/inspector.xpt
-lib/%%NVUDIR%%/components/intl.xpt
-lib/%%NVUDIR%%/components/jar.xpt
-lib/%%NVUDIR%%/components/jsconsole-clhandler.js
-lib/%%NVUDIR%%/components/jsconsole.xpt
-lib/%%NVUDIR%%/components/jsdservice.xpt
-lib/%%NVUDIR%%/components/jsurl.xpt
-lib/%%NVUDIR%%/components/layout_base.xpt
-lib/%%NVUDIR%%/components/layout_xul.xpt
-lib/%%NVUDIR%%/components/layout_xul_tree.xpt
-lib/%%NVUDIR%%/components/libaccessibility.so
-lib/%%NVUDIR%%/components/libappcomps.so
-lib/%%NVUDIR%%/components/libautoconfig.so
-lib/%%NVUDIR%%/components/libcaps.so
-lib/%%NVUDIR%%/components/libchrome.so
-lib/%%NVUDIR%%/components/libcomposer.so
-lib/%%NVUDIR%%/components/libdocshell.so
-lib/%%NVUDIR%%/components/libeditor.so
-lib/%%NVUDIR%%/components/libembedcomponents.so
-lib/%%NVUDIR%%/components/libfileview.so
-lib/%%NVUDIR%%/components/libgfx_gtk.so
-lib/%%NVUDIR%%/components/libgfxps.so
-lib/%%NVUDIR%%/components/libgfxxprint.so
-lib/%%NVUDIR%%/components/libgklayout.so
-lib/%%NVUDIR%%/components/libgkplugin.so
-lib/%%NVUDIR%%/components/libhtmlpars.so
-lib/%%NVUDIR%%/components/libi18n.so
-lib/%%NVUDIR%%/components/libimglib2.so
-lib/%%NVUDIR%%/components/libinspector.so
-lib/%%NVUDIR%%/components/libjar50.so
-lib/%%NVUDIR%%/components/libjsd.so
-lib/%%NVUDIR%%/components/libmork.so
-lib/%%NVUDIR%%/components/libmozfind.so
-lib/%%NVUDIR%%/components/libmyspell.so
-lib/%%NVUDIR%%/components/libnecko.so
-lib/%%NVUDIR%%/components/libnecko2.so
-lib/%%NVUDIR%%/components/libnsappshell.so
-lib/%%NVUDIR%%/components/libnsprefm.so
-lib/%%NVUDIR%%/components/libpipboot.so
-lib/%%NVUDIR%%/components/libpipnss.so
-lib/%%NVUDIR%%/components/libpippki.so
-lib/%%NVUDIR%%/components/libpref.so
-lib/%%NVUDIR%%/components/libprofile.so
-lib/%%NVUDIR%%/components/librdf.so
-lib/%%NVUDIR%%/components/libspellchecker.so
-lib/%%NVUDIR%%/components/libsystem-pref.so
-lib/%%NVUDIR%%/components/libtxmgr.so
-lib/%%NVUDIR%%/components/libuconv.so
-lib/%%NVUDIR%%/components/libuniversalchardet.so
-lib/%%NVUDIR%%/components/libwallet.so
-lib/%%NVUDIR%%/components/libwalletviewers.so
-lib/%%NVUDIR%%/components/libwebbrwsr.so
-lib/%%NVUDIR%%/components/libwidget_gtk2.so
-lib/%%NVUDIR%%/components/libxmlextras.so
-lib/%%NVUDIR%%/components/libxpcom_compat_c.so
-lib/%%NVUDIR%%/components/libxpconnect.so
-lib/%%NVUDIR%%/components/libxpinstall.so
-lib/%%NVUDIR%%/components/libxremote_client.so
-lib/%%NVUDIR%%/components/libxremoteservice.so
-lib/%%NVUDIR%%/components/locale.xpt
-lib/%%NVUDIR%%/components/lwbrk.xpt
-lib/%%NVUDIR%%/components/mimetype.xpt
-lib/%%NVUDIR%%/components/mozbrwsr.xpt
-lib/%%NVUDIR%%/components/mozfind.xpt
-lib/%%NVUDIR%%/components/myspell/en-US.aff
-lib/%%NVUDIR%%/components/myspell/en-US.dic
-lib/%%NVUDIR%%/components/necko.xpt
-lib/%%NVUDIR%%/components/necko_about.xpt
-lib/%%NVUDIR%%/components/necko_cache.xpt
-lib/%%NVUDIR%%/components/necko_cookie.xpt
-lib/%%NVUDIR%%/components/necko_data.xpt
-lib/%%NVUDIR%%/components/necko_dns.xpt
-lib/%%NVUDIR%%/components/necko_file.xpt
-lib/%%NVUDIR%%/components/necko_ftp.xpt
-lib/%%NVUDIR%%/components/necko_http.xpt
-lib/%%NVUDIR%%/components/necko_jar.xpt
-lib/%%NVUDIR%%/components/necko_res.xpt
-lib/%%NVUDIR%%/components/necko_socket.xpt
-lib/%%NVUDIR%%/components/necko_strconv.xpt
-lib/%%NVUDIR%%/components/necko_viewsource.xpt
-lib/%%NVUDIR%%/components/nsCloseAllWindows.js
-lib/%%NVUDIR%%/components/nsDownloadProgressListener.js
-lib/%%NVUDIR%%/components/nsExtensionManager.js
-lib/%%NVUDIR%%/components/nsFilePicker.js
-lib/%%NVUDIR%%/components/nsHelperAppDlg.js
-lib/%%NVUDIR%%/components/nsProgressDialog.js
-lib/%%NVUDIR%%/components/nsProxyAutoConfig.js
-lib/%%NVUDIR%%/components/pipboot.xpt
-lib/%%NVUDIR%%/components/pipnss.xpt
-lib/%%NVUDIR%%/components/pippki.xpt
-lib/%%NVUDIR%%/components/plugin.xpt
-lib/%%NVUDIR%%/components/pref.xpt
-lib/%%NVUDIR%%/components/prefetch.xpt
-lib/%%NVUDIR%%/components/prefmigr.xpt
-lib/%%NVUDIR%%/components/profile.xpt
-lib/%%NVUDIR%%/components/progressDlg.xpt
-lib/%%NVUDIR%%/components/proxyObjInst.xpt
-lib/%%NVUDIR%%/components/rdf.xpt
-lib/%%NVUDIR%%/components/shistory.xpt
-lib/%%NVUDIR%%/components/sidebar.xpt
-lib/%%NVUDIR%%/components/signonviewer.xpt
-lib/%%NVUDIR%%/components/spellchecker.xpt
-lib/%%NVUDIR%%/components/txmgr.xpt
-lib/%%NVUDIR%%/components/txtsvc.xpt
-lib/%%NVUDIR%%/components/uconv.xpt
-lib/%%NVUDIR%%/components/unicharutil.xpt
-lib/%%NVUDIR%%/components/uriloader.xpt
-lib/%%NVUDIR%%/components/venkman-service.js
-lib/%%NVUDIR%%/components/wallet.xpt
-lib/%%NVUDIR%%/components/walleteditor.xpt
-lib/%%NVUDIR%%/components/walletpreview.xpt
-lib/%%NVUDIR%%/components/webBrowser_core.xpt
-lib/%%NVUDIR%%/components/webbrowserpersist.xpt
-lib/%%NVUDIR%%/components/webshell_idls.xpt
-lib/%%NVUDIR%%/components/widget.xpt
-lib/%%NVUDIR%%/components/windowds.xpt
-lib/%%NVUDIR%%/components/windowwatcher.xpt
-lib/%%NVUDIR%%/components/xmlextras.xpt
-lib/%%NVUDIR%%/components/xpcom_base.xpt
-lib/%%NVUDIR%%/components/xpcom_components.xpt
-lib/%%NVUDIR%%/components/xpcom_ds.xpt
-lib/%%NVUDIR%%/components/xpcom_io.xpt
-lib/%%NVUDIR%%/components/xpcom_obsolete.xpt
-lib/%%NVUDIR%%/components/xpcom_threads.xpt
-lib/%%NVUDIR%%/components/xpcom_xpti.xpt
-lib/%%NVUDIR%%/components/xpconnect.xpt
-lib/%%NVUDIR%%/components/xpinstall.xpt
-lib/%%NVUDIR%%/components/xremoteservice.xpt
-lib/%%NVUDIR%%/components/xuldoc.xpt
-lib/%%NVUDIR%%/components/xultmpl.xpt
-lib/%%NVUDIR%%/defaults/autoconfig/platform.js
-lib/%%NVUDIR%%/defaults/autoconfig/prefcalls.js
-lib/%%NVUDIR%%/defaults/pref/all.js
-lib/%%NVUDIR%%/defaults/pref/editor.js
-lib/%%NVUDIR%%/defaults/pref/inspector.js
-lib/%%NVUDIR%%/defaults/profile/US/all.js
-lib/%%NVUDIR%%/defaults/profile/US/bookmarks.html
-lib/%%NVUDIR%%/defaults/profile/US/chrome/userChrome-example.css
-lib/%%NVUDIR%%/defaults/profile/US/chrome/userContent-example.css
-lib/%%NVUDIR%%/defaults/profile/US/editor.js
-lib/%%NVUDIR%%/defaults/profile/US/localstore.rdf
-lib/%%NVUDIR%%/defaults/profile/US/mimeTypes.rdf
-lib/%%NVUDIR%%/defaults/profile/US/panels.rdf
-lib/%%NVUDIR%%/defaults/profile/US/search.rdf
-lib/%%NVUDIR%%/defaults/profile/all.js
-lib/%%NVUDIR%%/defaults/profile/bookmarks.html
-lib/%%NVUDIR%%/defaults/profile/chrome/userChrome-example.css
-lib/%%NVUDIR%%/defaults/profile/chrome/userContent-example.css
-lib/%%NVUDIR%%/defaults/profile/editor.js
-lib/%%NVUDIR%%/defaults/profile/localstore.rdf
-lib/%%NVUDIR%%/defaults/profile/mimeTypes.rdf
-lib/%%NVUDIR%%/defaults/profile/panels.rdf
-lib/%%NVUDIR%%/defaults/profile/search.rdf
-lib/%%NVUDIR%%/defaults/wallet/DistinguishedSchema.tbl
-lib/%%NVUDIR%%/defaults/wallet/FieldSchema.tbl
-lib/%%NVUDIR%%/defaults/wallet/PositionalSchema.tbl
-lib/%%NVUDIR%%/defaults/wallet/SchemaConcat.tbl
-lib/%%NVUDIR%%/defaults/wallet/SchemaStrings.tbl
-lib/%%NVUDIR%%/defaults/wallet/StateSchema.tbl
-lib/%%NVUDIR%%/defaults/wallet/VcardSchema.tbl
-lib/%%NVUDIR%%/greprefs/all.js
-lib/%%NVUDIR%%/greprefs/security-prefs.js
-lib/%%NVUDIR%%/greprefs/xpinstall.js
-lib/%%NVUDIR%%/icons/mozicon16.xpm
-lib/%%NVUDIR%%/icons/mozicon50.xpm
-lib/%%NVUDIR%%/libgkgfx.so
-lib/%%NVUDIR%%/libgtkembedmoz.so
-lib/%%NVUDIR%%/libgtkxtbin.so
-lib/%%NVUDIR%%/libmozjs.so
-lib/%%NVUDIR%%/libnspr4.so
-lib/%%NVUDIR%%/libnss3.so
-lib/%%NVUDIR%%/libnssckbi.so
-lib/%%NVUDIR%%/libplc4.so
-lib/%%NVUDIR%%/libplds4.so
-lib/%%NVUDIR%%/libsmime3.so
-lib/%%NVUDIR%%/libsoftokn3.chk
-lib/%%NVUDIR%%/libsoftokn3.so
-lib/%%NVUDIR%%/libssl3.so
-lib/%%NVUDIR%%/libxlibrgb.so
-lib/%%NVUDIR%%/libxpcom.so
-lib/%%NVUDIR%%/libxpcom_compat.so
-lib/%%NVUDIR%%/libxpistub.so
-lib/%%NVUDIR%%/mozilla-xremote-client
-lib/%%NVUDIR%%/nvu-bin
-lib/%%NVUDIR%%/plugins/libnullplugin.so
-lib/%%NVUDIR%%/regchrome
-lib/%%NVUDIR%%/regxpcom
-lib/%%NVUDIR%%/res/EditorOverride.css
-lib/%%NVUDIR%%/res/arrow.gif
-lib/%%NVUDIR%%/res/arrowd.gif
-lib/%%NVUDIR%%/res/broken-image.gif
-lib/%%NVUDIR%%/res/builtin/htmlBindings.xml
-lib/%%NVUDIR%%/res/builtin/platformHTMLBindings.xml
-lib/%%NVUDIR%%/res/charsetData.properties
-lib/%%NVUDIR%%/res/charsetalias.properties
-lib/%%NVUDIR%%/res/cmessage.txt
-lib/%%NVUDIR%%/res/dtd/xhtml11.dtd
-lib/%%NVUDIR%%/res/entityTables/html40Latin1.properties
-lib/%%NVUDIR%%/res/entityTables/html40Special.properties
-lib/%%NVUDIR%%/res/entityTables/html40Symbols.properties
-lib/%%NVUDIR%%/res/entityTables/htmlEntityVersions.properties
-lib/%%NVUDIR%%/res/entityTables/transliterate.properties
-lib/%%NVUDIR%%/res/fonts/fontEncoding.properties
-lib/%%NVUDIR%%/res/forms.css
-lib/%%NVUDIR%%/res/grabber.gif
-lib/%%NVUDIR%%/res/html.css
-lib/%%NVUDIR%%/res/html/gopher-audio.gif
-lib/%%NVUDIR%%/res/html/gopher-binary.gif
-lib/%%NVUDIR%%/res/html/gopher-find.gif
-lib/%%NVUDIR%%/res/html/gopher-image.gif
-lib/%%NVUDIR%%/res/html/gopher-menu.gif
-lib/%%NVUDIR%%/res/html/gopher-movie.gif
-lib/%%NVUDIR%%/res/html/gopher-sound.gif
-lib/%%NVUDIR%%/res/html/gopher-telnet.gif
-lib/%%NVUDIR%%/res/html/gopher-text.gif
-lib/%%NVUDIR%%/res/html/gopher-unknown.gif
-lib/%%NVUDIR%%/res/inspector/search-registry.rdf
-lib/%%NVUDIR%%/res/inspector/viewer-registry.rdf
-lib/%%NVUDIR%%/res/langGroups.properties
-lib/%%NVUDIR%%/res/language.properties
-lib/%%NVUDIR%%/res/loading-image.gif
-lib/%%NVUDIR%%/res/platform-forms.css
-lib/%%NVUDIR%%/res/quirk.css
-lib/%%NVUDIR%%/res/rdf/dom-test-4.css
-lib/%%NVUDIR%%/res/rdf/folder-closed.gif
-lib/%%NVUDIR%%/res/rdf/folder-open.gif
-lib/%%NVUDIR%%/res/rdf/ignore-test.xul
-lib/%%NVUDIR%%/res/rdf/loading.gif
-lib/%%NVUDIR%%/res/sample.unixpsfonts.properties
-lib/%%NVUDIR%%/res/samples/Anieyes.gif
-lib/%%NVUDIR%%/res/samples/aform.css
-lib/%%NVUDIR%%/res/samples/beeptest.html
-lib/%%NVUDIR%%/res/samples/bform.css
-lib/%%NVUDIR%%/res/samples/bg.jpg
-lib/%%NVUDIR%%/res/samples/cform.css
-lib/%%NVUDIR%%/res/samples/checkboxTest.xul
-lib/%%NVUDIR%%/res/samples/colorpicker.xul
-lib/%%NVUDIR%%/res/samples/demoform.css
-lib/%%NVUDIR%%/res/samples/dexopenchrome.xul
-lib/%%NVUDIR%%/res/samples/dexparamdialog.html
-lib/%%NVUDIR%%/res/samples/dexparamdialog.xul
-lib/%%NVUDIR%%/res/samples/find.html
-lib/%%NVUDIR%%/res/samples/gear1.gif
-lib/%%NVUDIR%%/res/samples/hidetoolicon.css
-lib/%%NVUDIR%%/res/samples/hidetoolicon.xul
-lib/%%NVUDIR%%/res/samples/image_props.html
-lib/%%NVUDIR%%/res/samples/mozform.css
-lib/%%NVUDIR%%/res/samples/printsetup.html
-lib/%%NVUDIR%%/res/samples/raptor.jpg
-lib/%%NVUDIR%%/res/samples/rock_gra.gif
-lib/%%NVUDIR%%/res/samples/sampleimages/bongo.gif
-lib/%%NVUDIR%%/res/samples/sampleimages/down.gif
-lib/%%NVUDIR%%/res/samples/sampleimages/left.gif
-lib/%%NVUDIR%%/res/samples/sampleimages/right.gif
-lib/%%NVUDIR%%/res/samples/sampleimages/up.gif
-lib/%%NVUDIR%%/res/samples/scrollbarTest1.xul
-lib/%%NVUDIR%%/res/samples/scrollbarTest2.xul
-lib/%%NVUDIR%%/res/samples/sliderTest1.xul
-lib/%%NVUDIR%%/res/samples/soundtest.html
-lib/%%NVUDIR%%/res/samples/tab.xul
-lib/%%NVUDIR%%/res/samples/test.wav
-lib/%%NVUDIR%%/res/samples/test0.html
-lib/%%NVUDIR%%/res/samples/test1.html
-lib/%%NVUDIR%%/res/samples/test10.html
-lib/%%NVUDIR%%/res/samples/test11.html
-lib/%%NVUDIR%%/res/samples/test12.html
-lib/%%NVUDIR%%/res/samples/test13.html
-lib/%%NVUDIR%%/res/samples/test14.html
-lib/%%NVUDIR%%/res/samples/test15.html
-lib/%%NVUDIR%%/res/samples/test16.html
-lib/%%NVUDIR%%/res/samples/test2.html
-lib/%%NVUDIR%%/res/samples/test3.html
-lib/%%NVUDIR%%/res/samples/test4.html
-lib/%%NVUDIR%%/res/samples/test5.html
-lib/%%NVUDIR%%/res/samples/test6.html
-lib/%%NVUDIR%%/res/samples/test7.html
-lib/%%NVUDIR%%/res/samples/test8-1.html
-lib/%%NVUDIR%%/res/samples/test8.html
-lib/%%NVUDIR%%/res/samples/test8dom.html
-lib/%%NVUDIR%%/res/samples/test8sca.html
-lib/%%NVUDIR%%/res/samples/test8siz.html
-lib/%%NVUDIR%%/res/samples/test8tab.html
-lib/%%NVUDIR%%/res/samples/test9.html
-lib/%%NVUDIR%%/res/samples/test9a.html
-lib/%%NVUDIR%%/res/samples/test9b.html
-lib/%%NVUDIR%%/res/samples/test_ed.html
-lib/%%NVUDIR%%/res/samples/test_form.html
-lib/%%NVUDIR%%/res/samples/test_gfx.html
-lib/%%NVUDIR%%/res/samples/test_lbox.html
-lib/%%NVUDIR%%/res/samples/test_pr.html
-lib/%%NVUDIR%%/res/samples/test_weight.html
-lib/%%NVUDIR%%/res/samples/toolbarTest1.xul
-lib/%%NVUDIR%%/res/samples/treeTest1.css
-lib/%%NVUDIR%%/res/samples/treeTest1.xul
-lib/%%NVUDIR%%/res/samples/widgets.xul
-lib/%%NVUDIR%%/res/samples/xpmenu.xul
-lib/%%NVUDIR%%/res/samples/xulTest.css
-lib/%%NVUDIR%%/res/table-add-column-after-active.gif
-lib/%%NVUDIR%%/res/table-add-column-after-hover.gif
-lib/%%NVUDIR%%/res/table-add-column-after.gif
-lib/%%NVUDIR%%/res/table-add-column-before-active.gif
-lib/%%NVUDIR%%/res/table-add-column-before-hover.gif
-lib/%%NVUDIR%%/res/table-add-column-before.gif
-lib/%%NVUDIR%%/res/table-add-row-after-active.gif
-lib/%%NVUDIR%%/res/table-add-row-after-hover.gif
-lib/%%NVUDIR%%/res/table-add-row-after.gif
-lib/%%NVUDIR%%/res/table-add-row-before-active.gif
-lib/%%NVUDIR%%/res/table-add-row-before-hover.gif
-lib/%%NVUDIR%%/res/table-add-row-before.gif
-lib/%%NVUDIR%%/res/table-remove-column-active.gif
-lib/%%NVUDIR%%/res/table-remove-column-hover.gif
-lib/%%NVUDIR%%/res/table-remove-column.gif
-lib/%%NVUDIR%%/res/table-remove-row-active.gif
-lib/%%NVUDIR%%/res/table-remove-row-hover.gif
-lib/%%NVUDIR%%/res/table-remove-row.gif
-lib/%%NVUDIR%%/res/throbber/anim.gif
-lib/%%NVUDIR%%/res/throbber/anims00.gif
-lib/%%NVUDIR%%/res/throbber/anims01.gif
-lib/%%NVUDIR%%/res/throbber/anims02.gif
-lib/%%NVUDIR%%/res/throbber/anims03.gif
-lib/%%NVUDIR%%/res/throbber/anims04.gif
-lib/%%NVUDIR%%/res/throbber/anims05.gif
-lib/%%NVUDIR%%/res/throbber/anims06.gif
-lib/%%NVUDIR%%/res/throbber/anims07.gif
-lib/%%NVUDIR%%/res/throbber/anims08.gif
-lib/%%NVUDIR%%/res/throbber/anims09.gif
-lib/%%NVUDIR%%/res/throbber/anims10.gif
-lib/%%NVUDIR%%/res/throbber/anims11.gif
-lib/%%NVUDIR%%/res/throbber/anims12.gif
-lib/%%NVUDIR%%/res/throbber/anims13.gif
-lib/%%NVUDIR%%/res/throbber/anims14.gif
-lib/%%NVUDIR%%/res/throbber/anims15.gif
-lib/%%NVUDIR%%/res/throbber/anims16.gif
-lib/%%NVUDIR%%/res/throbber/anims17.gif
-lib/%%NVUDIR%%/res/throbber/anims18.gif
-lib/%%NVUDIR%%/res/throbber/anims19.gif
-lib/%%NVUDIR%%/res/throbber/anims20.gif
-lib/%%NVUDIR%%/res/throbber/anims21.gif
-lib/%%NVUDIR%%/res/throbber/anims22.gif
-lib/%%NVUDIR%%/res/throbber/anims23.gif
-lib/%%NVUDIR%%/res/throbber/anims24.gif
-lib/%%NVUDIR%%/res/throbber/anims25.gif
-lib/%%NVUDIR%%/res/throbber/anims26.gif
-lib/%%NVUDIR%%/res/throbber/anims27.gif
-lib/%%NVUDIR%%/res/throbber/anims28.gif
-lib/%%NVUDIR%%/res/throbber/anims29.gif
-lib/%%NVUDIR%%/res/ua.css
-lib/%%NVUDIR%%/res/unixcharset.properties
-lib/%%NVUDIR%%/res/viewer.properties
-lib/%%NVUDIR%%/res/viewsource.css
-lib/%%NVUDIR%%/run-mozilla.sh
-lib/%%NVUDIR%%/xpcshell
-lib/%%NVUDIR%%/xpicleanup
-lib/%%NVUDIR%%/xpidl
-lib/%%NVUDIR%%/xpt_dump
-lib/%%NVUDIR%%/xpt_link
-lib/pkgconfig/nvu-gtkmozembed.pc
-lib/pkgconfig/nvu-js.pc
-lib/pkgconfig/nvu-nspr.pc
-lib/pkgconfig/nvu-nss.pc
-lib/pkgconfig/nvu-plugin.pc
-lib/pkgconfig/nvu-xpcom.pc
-share/aclocal/nspr.m4
-share/idl/%%NVUDIR%%/XPCIDispatch.idl
-share/idl/%%NVUDIR%%/domstubs.idl
-share/idl/%%NVUDIR%%/gfxIFormats.idl
-share/idl/%%NVUDIR%%/gfxIImageFrame.idl
-share/idl/%%NVUDIR%%/gfxtypes.idl
-share/idl/%%NVUDIR%%/imgICache.idl
-share/idl/%%NVUDIR%%/imgIContainer.idl
-share/idl/%%NVUDIR%%/imgIContainerObserver.idl
-share/idl/%%NVUDIR%%/imgIDecoder.idl
-share/idl/%%NVUDIR%%/imgIDecoderObserver.idl
-share/idl/%%NVUDIR%%/imgILoad.idl
-share/idl/%%NVUDIR%%/imgILoader.idl
-share/idl/%%NVUDIR%%/imgIRequest.idl
-share/idl/%%NVUDIR%%/inICSSValueSearch.idl
-share/idl/%%NVUDIR%%/inIDOMUtils.idl
-share/idl/%%NVUDIR%%/inIDOMView.idl
-share/idl/%%NVUDIR%%/inIDeepTreeWalker.idl
-share/idl/%%NVUDIR%%/inIFileSearch.idl
-share/idl/%%NVUDIR%%/inIFlasher.idl
-share/idl/%%NVUDIR%%/inISearchObserver.idl
-share/idl/%%NVUDIR%%/inISearchProcess.idl
-share/idl/%%NVUDIR%%/jsdIDebuggerService.idl
-share/idl/%%NVUDIR%%/mozIJSSubScriptLoader.idl
-share/idl/%%NVUDIR%%/mozIPersonalDictionary.idl
-share/idl/%%NVUDIR%%/mozIRealTimeSpell.idl
-share/idl/%%NVUDIR%%/mozISpellCheckingEngine.idl
-share/idl/%%NVUDIR%%/mozISpellI18NManager.idl
-share/idl/%%NVUDIR%%/mozISpellI18NUtil.idl
-share/idl/%%NVUDIR%%/mozITXTToHTMLConv.idl
-share/idl/%%NVUDIR%%/nsCDefaultURIFixup.idl
-share/idl/%%NVUDIR%%/nsCDocShell.idl
-share/idl/%%NVUDIR%%/nsCExternalHandlerService.idl
-share/idl/%%NVUDIR%%/nsCURILoader.idl
-share/idl/%%NVUDIR%%/nsCWebBrowser.idl
-share/idl/%%NVUDIR%%/nsCWebBrowserPersist.idl
-share/idl/%%NVUDIR%%/nsIASN1Object.idl
-share/idl/%%NVUDIR%%/nsIASN1PrintableItem.idl
-share/idl/%%NVUDIR%%/nsIASN1Sequence.idl
-share/idl/%%NVUDIR%%/nsIASN1Tree.idl
-share/idl/%%NVUDIR%%/nsIAboutModule.idl
-share/idl/%%NVUDIR%%/nsIAccessNode.idl
-share/idl/%%NVUDIR%%/nsIAccessibilityService.idl
-share/idl/%%NVUDIR%%/nsIAccessible.idl
-share/idl/%%NVUDIR%%/nsIAccessibleAction.idl
-share/idl/%%NVUDIR%%/nsIAccessibleCaret.idl
-share/idl/%%NVUDIR%%/nsIAccessibleDocument.idl
-share/idl/%%NVUDIR%%/nsIAccessibleEditableText.idl
-share/idl/%%NVUDIR%%/nsIAccessibleEvent.idl
-share/idl/%%NVUDIR%%/nsIAccessibleHyperLink.idl
-share/idl/%%NVUDIR%%/nsIAccessibleHyperText.idl
-share/idl/%%NVUDIR%%/nsIAccessibleProvider.idl
-share/idl/%%NVUDIR%%/nsIAccessibleRetrieval.idl
-share/idl/%%NVUDIR%%/nsIAccessibleSelectable.idl
-share/idl/%%NVUDIR%%/nsIAccessibleTable.idl
-share/idl/%%NVUDIR%%/nsIAccessibleText.idl
-share/idl/%%NVUDIR%%/nsIAccessibleValue.idl
-share/idl/%%NVUDIR%%/nsIAppShell.idl
-share/idl/%%NVUDIR%%/nsIAppShellService.idl
-share/idl/%%NVUDIR%%/nsIArray.idl
-share/idl/%%NVUDIR%%/nsIAsyncInputStream.idl
-share/idl/%%NVUDIR%%/nsIAsyncOutputStream.idl
-share/idl/%%NVUDIR%%/nsIAsyncStreamCopier.idl
-share/idl/%%NVUDIR%%/nsIAtom.idl
-share/idl/%%NVUDIR%%/nsIAtomService.idl
-share/idl/%%NVUDIR%%/nsIAuthModule.idl
-share/idl/%%NVUDIR%%/nsIAuthPrompt.idl
-share/idl/%%NVUDIR%%/nsIAuthPromptWrapper.idl
-share/idl/%%NVUDIR%%/nsIAutoCompleteListener.idl
-share/idl/%%NVUDIR%%/nsIAutoCompleteResults.idl
-share/idl/%%NVUDIR%%/nsIAutoCompleteSession.idl
-share/idl/%%NVUDIR%%/nsIAutoConfig.idl
-share/idl/%%NVUDIR%%/nsIBadCertListener.idl
-share/idl/%%NVUDIR%%/nsIBaseWindow.idl
-share/idl/%%NVUDIR%%/nsIBidiKeyboard.idl
-share/idl/%%NVUDIR%%/nsIBinaryInputStream.idl
-share/idl/%%NVUDIR%%/nsIBinaryOutputStream.idl
-share/idl/%%NVUDIR%%/nsIBookmarksService.idl
-share/idl/%%NVUDIR%%/nsIBoxLayoutManager.idl
-share/idl/%%NVUDIR%%/nsIBoxObject.idl
-share/idl/%%NVUDIR%%/nsIBoxPaintManager.idl
-share/idl/%%NVUDIR%%/nsIBrowserBoxObject.idl
-share/idl/%%NVUDIR%%/nsIBrowserHistory.idl
-share/idl/%%NVUDIR%%/nsIBrowserInstance.idl
-share/idl/%%NVUDIR%%/nsIBufEntropyCollector.idl
-share/idl/%%NVUDIR%%/nsIBufferedStreams.idl
-share/idl/%%NVUDIR%%/nsIByteArrayInputStream.idl
-share/idl/%%NVUDIR%%/nsIByteRangeRequest.idl
-share/idl/%%NVUDIR%%/nsICMSDecoder.idl
-share/idl/%%NVUDIR%%/nsICMSEncoder.idl
-share/idl/%%NVUDIR%%/nsICMSMessage.idl
-share/idl/%%NVUDIR%%/nsICMSMessageErrors.idl
-share/idl/%%NVUDIR%%/nsICMSSecureMessage.idl
-share/idl/%%NVUDIR%%/nsICRLInfo.idl
-share/idl/%%NVUDIR%%/nsICRLManager.idl
-share/idl/%%NVUDIR%%/nsICache.idl
-share/idl/%%NVUDIR%%/nsICacheEntryDescriptor.idl
-share/idl/%%NVUDIR%%/nsICacheListener.idl
-share/idl/%%NVUDIR%%/nsICacheService.idl
-share/idl/%%NVUDIR%%/nsICacheSession.idl
-share/idl/%%NVUDIR%%/nsICacheVisitor.idl
-share/idl/%%NVUDIR%%/nsICachingChannel.idl
-share/idl/%%NVUDIR%%/nsICategoryManager.idl
-share/idl/%%NVUDIR%%/nsICertPickDialogs.idl
-share/idl/%%NVUDIR%%/nsICertSelect.idl
-share/idl/%%NVUDIR%%/nsICertTree.idl
-share/idl/%%NVUDIR%%/nsICertificateDialogs.idl
-share/idl/%%NVUDIR%%/nsIChannel.idl
-share/idl/%%NVUDIR%%/nsICharsetConverterManager.idl
-share/idl/%%NVUDIR%%/nsICharsetResolver.idl
-share/idl/%%NVUDIR%%/nsIChromeEventHandler.idl
-share/idl/%%NVUDIR%%/nsIChromeRegistry.idl
-share/idl/%%NVUDIR%%/nsICipherInfo.idl
-share/idl/%%NVUDIR%%/nsICiter.idl
-share/idl/%%NVUDIR%%/nsIClassInfo.idl
-share/idl/%%NVUDIR%%/nsIClassicPluginFactory.idl
-share/idl/%%NVUDIR%%/nsIClientAuthDialogs.idl
-share/idl/%%NVUDIR%%/nsIClipboard.idl
-share/idl/%%NVUDIR%%/nsIClipboardCommands.idl
-share/idl/%%NVUDIR%%/nsIClipboardDragDropHookList.idl
-share/idl/%%NVUDIR%%/nsIClipboardDragDropHooks.idl
-share/idl/%%NVUDIR%%/nsIClipboardHelper.idl
-share/idl/%%NVUDIR%%/nsIClipboardOwner.idl
-share/idl/%%NVUDIR%%/nsICloseAllWindows.idl
-share/idl/%%NVUDIR%%/nsICmdLineHandler.idl
-share/idl/%%NVUDIR%%/nsICmdLineService.idl
-share/idl/%%NVUDIR%%/nsICollection.idl
-share/idl/%%NVUDIR%%/nsICommandHandler.idl
-share/idl/%%NVUDIR%%/nsICommandManager.idl
-share/idl/%%NVUDIR%%/nsICommandParams.idl
-share/idl/%%NVUDIR%%/nsIComponentLoader.idl
-share/idl/%%NVUDIR%%/nsIComponentLoaderManager.idl
-share/idl/%%NVUDIR%%/nsIComponentManager.idl
-share/idl/%%NVUDIR%%/nsIComponentManagerObsolete.idl
-share/idl/%%NVUDIR%%/nsIComponentRegistrar.idl
-share/idl/%%NVUDIR%%/nsIConsoleListener.idl
-share/idl/%%NVUDIR%%/nsIConsoleMessage.idl
-share/idl/%%NVUDIR%%/nsIConsoleService.idl
-share/idl/%%NVUDIR%%/nsIContentFilter.idl
-share/idl/%%NVUDIR%%/nsIContentHandler.idl
-share/idl/%%NVUDIR%%/nsIContentPolicy.idl
-share/idl/%%NVUDIR%%/nsIContentViewer.idl
-share/idl/%%NVUDIR%%/nsIContentViewerContainer.idl
-share/idl/%%NVUDIR%%/nsIContentViewerEdit.idl
-share/idl/%%NVUDIR%%/nsIContentViewerFile.idl
-share/idl/%%NVUDIR%%/nsIContextMenuListener.idl
-share/idl/%%NVUDIR%%/nsIContextMenuListener2.idl
-share/idl/%%NVUDIR%%/nsIController.idl
-share/idl/%%NVUDIR%%/nsIControllerCommand.idl
-share/idl/%%NVUDIR%%/nsIControllerCommandTable.idl
-share/idl/%%NVUDIR%%/nsIControllerContext.idl
-share/idl/%%NVUDIR%%/nsIControllers.idl
-share/idl/%%NVUDIR%%/nsICookie.idl
-share/idl/%%NVUDIR%%/nsICookie2.idl
-share/idl/%%NVUDIR%%/nsICookieConsent.idl
-share/idl/%%NVUDIR%%/nsICookieManager.idl
-share/idl/%%NVUDIR%%/nsICookieManager2.idl
-share/idl/%%NVUDIR%%/nsICookiePermission.idl
-share/idl/%%NVUDIR%%/nsICookieService.idl
-share/idl/%%NVUDIR%%/nsICookieStorage.idl
-share/idl/%%NVUDIR%%/nsICryptoFIPSInfo.idl
-share/idl/%%NVUDIR%%/nsICurrentCharsetListener.idl
-share/idl/%%NVUDIR%%/nsIDNSListener.idl
-share/idl/%%NVUDIR%%/nsIDNSRecord.idl
-share/idl/%%NVUDIR%%/nsIDNSRequest.idl
-share/idl/%%NVUDIR%%/nsIDNSService.idl
-share/idl/%%NVUDIR%%/nsIDOM3Document.idl
-share/idl/%%NVUDIR%%/nsIDOM3DocumentEvent.idl
-share/idl/%%NVUDIR%%/nsIDOM3EventTarget.idl
-share/idl/%%NVUDIR%%/nsIDOM3Node.idl
-share/idl/%%NVUDIR%%/nsIDOMAbstractView.idl
-share/idl/%%NVUDIR%%/nsIDOMAttr.idl
-share/idl/%%NVUDIR%%/nsIDOMBarProp.idl
-share/idl/%%NVUDIR%%/nsIDOMCDATASection.idl
-share/idl/%%NVUDIR%%/nsIDOMCRMFObject.idl
-share/idl/%%NVUDIR%%/nsIDOMCSS2Properties.idl
-share/idl/%%NVUDIR%%/nsIDOMCSSCharsetRule.idl
-share/idl/%%NVUDIR%%/nsIDOMCSSFontFaceRule.idl
-share/idl/%%NVUDIR%%/nsIDOMCSSImportRule.idl
-share/idl/%%NVUDIR%%/nsIDOMCSSMediaRule.idl
-share/idl/%%NVUDIR%%/nsIDOMCSSPageRule.idl
-share/idl/%%NVUDIR%%/nsIDOMCSSPrimitiveValue.idl
-share/idl/%%NVUDIR%%/nsIDOMCSSRule.idl
-share/idl/%%NVUDIR%%/nsIDOMCSSRuleList.idl
-share/idl/%%NVUDIR%%/nsIDOMCSSStyleDeclaration.idl
-share/idl/%%NVUDIR%%/nsIDOMCSSStyleRule.idl
-share/idl/%%NVUDIR%%/nsIDOMCSSStyleSheet.idl
-share/idl/%%NVUDIR%%/nsIDOMCSSUnknownRule.idl
-share/idl/%%NVUDIR%%/nsIDOMCSSValue.idl
-share/idl/%%NVUDIR%%/nsIDOMCSSValueList.idl
-share/idl/%%NVUDIR%%/nsIDOMCharacterData.idl
-share/idl/%%NVUDIR%%/nsIDOMChromeWindow.idl
-share/idl/%%NVUDIR%%/nsIDOMComment.idl
-share/idl/%%NVUDIR%%/nsIDOMCounter.idl
-share/idl/%%NVUDIR%%/nsIDOMCrypto.idl
-share/idl/%%NVUDIR%%/nsIDOMCryptoDialogs.idl
-share/idl/%%NVUDIR%%/nsIDOMCustomEvent.idl
-share/idl/%%NVUDIR%%/nsIDOMDOMConfiguration.idl
-share/idl/%%NVUDIR%%/nsIDOMDOMException.idl
-share/idl/%%NVUDIR%%/nsIDOMDOMImplementation.idl
-share/idl/%%NVUDIR%%/nsIDOMDOMStringList.idl
-share/idl/%%NVUDIR%%/nsIDOMDocument.idl
-share/idl/%%NVUDIR%%/nsIDOMDocumentCSS.idl
-share/idl/%%NVUDIR%%/nsIDOMDocumentEvent.idl
-share/idl/%%NVUDIR%%/nsIDOMDocumentFragment.idl
-share/idl/%%NVUDIR%%/nsIDOMDocumentRange.idl
-share/idl/%%NVUDIR%%/nsIDOMDocumentStyle.idl
-share/idl/%%NVUDIR%%/nsIDOMDocumentTraversal.idl
-share/idl/%%NVUDIR%%/nsIDOMDocumentType.idl
-share/idl/%%NVUDIR%%/nsIDOMDocumentView.idl
-share/idl/%%NVUDIR%%/nsIDOMDocumentXBL.idl
-share/idl/%%NVUDIR%%/nsIDOMElement.idl
-share/idl/%%NVUDIR%%/nsIDOMElementCSSInlineStyle.idl
-share/idl/%%NVUDIR%%/nsIDOMEntity.idl
-share/idl/%%NVUDIR%%/nsIDOMEntityReference.idl
-share/idl/%%NVUDIR%%/nsIDOMEvent.idl
-share/idl/%%NVUDIR%%/nsIDOMEventGroup.idl
-share/idl/%%NVUDIR%%/nsIDOMEventListener.idl
-share/idl/%%NVUDIR%%/nsIDOMEventTarget.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLAnchorElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLAppletElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLAreaElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLBRElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLBaseElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLBaseFontElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLBodyElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLButtonElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLCollection.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLDListElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLDirectoryElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLDivElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLDocument.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLEmbedElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLFieldSetElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLFontElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLFormElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLFrameElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLFrameSetElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLHRElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLHeadElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLHeadingElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLHtmlElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLIFrameElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLImageElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLInputElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLIsIndexElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLLIElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLLabelElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLLegendElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLLinkElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLMapElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLMenuElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLMetaElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLModElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLOListElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLObjectElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLOptGroupElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLOptionElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLOptionsCollection.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLParagraphElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLParamElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLPreElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLQuoteElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLScriptElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLSelectElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLStyleElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLTableCaptionElem.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLTableCellElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLTableColElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLTableElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLTableRowElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLTableSectionElem.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLTextAreaElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLTitleElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHTMLUListElement.idl
-share/idl/%%NVUDIR%%/nsIDOMHistory.idl
-share/idl/%%NVUDIR%%/nsIDOMJSWindow.idl
-share/idl/%%NVUDIR%%/nsIDOMKeyEvent.idl
-share/idl/%%NVUDIR%%/nsIDOMLinkStyle.idl
-share/idl/%%NVUDIR%%/nsIDOMLocation.idl
-share/idl/%%NVUDIR%%/nsIDOMMediaList.idl
-share/idl/%%NVUDIR%%/nsIDOMMimeType.idl
-share/idl/%%NVUDIR%%/nsIDOMMimeTypeArray.idl
-share/idl/%%NVUDIR%%/nsIDOMMouseEvent.idl
-share/idl/%%NVUDIR%%/nsIDOMMutationEvent.idl
-share/idl/%%NVUDIR%%/nsIDOMNSCSSSelectorQuery.idl
-share/idl/%%NVUDIR%%/nsIDOMNSDocument.idl
-share/idl/%%NVUDIR%%/nsIDOMNSEvent.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLAnchorElement.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLAreaElement.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLButtonElement.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLDocument.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLElement.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLFormControlList.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLFormElement.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLFrameElement.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLHRElement.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLImageElement.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLInputElement.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLOptionCollectn.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLOptionElement.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLSelectElement.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHTMLTextAreaElement.idl
-share/idl/%%NVUDIR%%/nsIDOMNSHistory.idl
-share/idl/%%NVUDIR%%/nsIDOMNSLocation.idl
-share/idl/%%NVUDIR%%/nsIDOMNSRange.idl
-share/idl/%%NVUDIR%%/nsIDOMNSUIEvent.idl
-share/idl/%%NVUDIR%%/nsIDOMNSXBLFormControl.idl
-share/idl/%%NVUDIR%%/nsIDOMNameList.idl
-share/idl/%%NVUDIR%%/nsIDOMNamedNodeMap.idl
-share/idl/%%NVUDIR%%/nsIDOMNavigator.idl
-share/idl/%%NVUDIR%%/nsIDOMNode.idl
-share/idl/%%NVUDIR%%/nsIDOMNodeFilter.idl
-share/idl/%%NVUDIR%%/nsIDOMNodeIterator.idl
-share/idl/%%NVUDIR%%/nsIDOMNodeList.idl
-share/idl/%%NVUDIR%%/nsIDOMNotation.idl
-share/idl/%%NVUDIR%%/nsIDOMParser.idl
-share/idl/%%NVUDIR%%/nsIDOMPkcs11.idl
-share/idl/%%NVUDIR%%/nsIDOMPlugin.idl
-share/idl/%%NVUDIR%%/nsIDOMPluginArray.idl
-share/idl/%%NVUDIR%%/nsIDOMPopupBlockedEvent.idl
-share/idl/%%NVUDIR%%/nsIDOMProcessingInstruction.idl
-share/idl/%%NVUDIR%%/nsIDOMRGBColor.idl
-share/idl/%%NVUDIR%%/nsIDOMRange.idl
-share/idl/%%NVUDIR%%/nsIDOMRangeException.idl
-share/idl/%%NVUDIR%%/nsIDOMRect.idl
-share/idl/%%NVUDIR%%/nsIDOMScreen.idl
-share/idl/%%NVUDIR%%/nsIDOMSerializer.idl
-share/idl/%%NVUDIR%%/nsIDOMStyleSheet.idl
-share/idl/%%NVUDIR%%/nsIDOMStyleSheetList.idl
-share/idl/%%NVUDIR%%/nsIDOMText.idl
-share/idl/%%NVUDIR%%/nsIDOMTreeWalker.idl
-share/idl/%%NVUDIR%%/nsIDOMUIEvent.idl
-share/idl/%%NVUDIR%%/nsIDOMUserDataHandler.idl
-share/idl/%%NVUDIR%%/nsIDOMViewCSS.idl
-share/idl/%%NVUDIR%%/nsIDOMWindow.idl
-share/idl/%%NVUDIR%%/nsIDOMWindow2.idl
-share/idl/%%NVUDIR%%/nsIDOMWindowCollection.idl
-share/idl/%%NVUDIR%%/nsIDOMWindowInternal.idl
-share/idl/%%NVUDIR%%/nsIDOMXMLDocument.idl
-share/idl/%%NVUDIR%%/nsIDOMXPathEvaluator.idl
-share/idl/%%NVUDIR%%/nsIDOMXPathException.idl
-share/idl/%%NVUDIR%%/nsIDOMXPathExpression.idl
-share/idl/%%NVUDIR%%/nsIDOMXPathNSResolver.idl
-share/idl/%%NVUDIR%%/nsIDOMXPathNamespace.idl
-share/idl/%%NVUDIR%%/nsIDOMXPathResult.idl
-share/idl/%%NVUDIR%%/nsIDOMXULButtonElement.idl
-share/idl/%%NVUDIR%%/nsIDOMXULCheckboxElement.idl
-share/idl/%%NVUDIR%%/nsIDOMXULCommandDispatcher.idl
-share/idl/%%NVUDIR%%/nsIDOMXULControlElement.idl
-share/idl/%%NVUDIR%%/nsIDOMXULDescriptionElement.idl
-share/idl/%%NVUDIR%%/nsIDOMXULDocument.idl
-share/idl/%%NVUDIR%%/nsIDOMXULElement.idl
-share/idl/%%NVUDIR%%/nsIDOMXULImageElement.idl
-share/idl/%%NVUDIR%%/nsIDOMXULLabelElement.idl
-share/idl/%%NVUDIR%%/nsIDOMXULLabeledControlEl.idl
-share/idl/%%NVUDIR%%/nsIDOMXULMenuListElement.idl
-share/idl/%%NVUDIR%%/nsIDOMXULMultSelectCntrlEl.idl
-share/idl/%%NVUDIR%%/nsIDOMXULPopupElement.idl
-share/idl/%%NVUDIR%%/nsIDOMXULSelectCntrlEl.idl
-share/idl/%%NVUDIR%%/nsIDOMXULSelectCntrlItemEl.idl
-share/idl/%%NVUDIR%%/nsIDOMXULTextboxElement.idl
-share/idl/%%NVUDIR%%/nsIDataChannel.idl
-share/idl/%%NVUDIR%%/nsIDebug.idl
-share/idl/%%NVUDIR%%/nsIDialogParamBlock.idl
-share/idl/%%NVUDIR%%/nsIDirIndex.idl
-share/idl/%%NVUDIR%%/nsIDirIndexListener.idl
-share/idl/%%NVUDIR%%/nsIDirectoryListing.idl
-share/idl/%%NVUDIR%%/nsIDirectoryService.idl
-share/idl/%%NVUDIR%%/nsIDocCharset.idl
-share/idl/%%NVUDIR%%/nsIDocShell.idl
-share/idl/%%NVUDIR%%/nsIDocShellHistory.idl
-share/idl/%%NVUDIR%%/nsIDocShellLoadInfo.idl
-share/idl/%%NVUDIR%%/nsIDocShellTreeItem.idl
-share/idl/%%NVUDIR%%/nsIDocShellTreeNode.idl
-share/idl/%%NVUDIR%%/nsIDocShellTreeOwner.idl
-share/idl/%%NVUDIR%%/nsIDocumentCharsetInfo.idl
-share/idl/%%NVUDIR%%/nsIDocumentLoader.idl
-share/idl/%%NVUDIR%%/nsIDocumentLoaderFactory.idl
-share/idl/%%NVUDIR%%/nsIDocumentStateListener.idl
-share/idl/%%NVUDIR%%/nsIDownload.idl
-share/idl/%%NVUDIR%%/nsIDownloadManager.idl
-share/idl/%%NVUDIR%%/nsIDownloadProgressListener.idl
-share/idl/%%NVUDIR%%/nsIDownloader.idl
-share/idl/%%NVUDIR%%/nsIDragDropHandler.idl
-share/idl/%%NVUDIR%%/nsIDragService.idl
-share/idl/%%NVUDIR%%/nsIDragSession.idl
-share/idl/%%NVUDIR%%/nsIEditActionListener.idl
-share/idl/%%NVUDIR%%/nsIEditingSession.idl
-share/idl/%%NVUDIR%%/nsIEditor.idl
-share/idl/%%NVUDIR%%/nsIEditorBoxObject.idl
-share/idl/%%NVUDIR%%/nsIEditorDocShell.idl
-share/idl/%%NVUDIR%%/nsIEditorIMESupport.idl
-share/idl/%%NVUDIR%%/nsIEditorLogging.idl
-share/idl/%%NVUDIR%%/nsIEditorMailSupport.idl
-share/idl/%%NVUDIR%%/nsIEditorObserver.idl
-share/idl/%%NVUDIR%%/nsIEditorSpellCheck.idl
-share/idl/%%NVUDIR%%/nsIEditorStyleSheets.idl
-share/idl/%%NVUDIR%%/nsIEmbeddingSiteWindow.idl
-share/idl/%%NVUDIR%%/nsIEmbeddingSiteWindow2.idl
-share/idl/%%NVUDIR%%/nsIEncodedChannel.idl
-share/idl/%%NVUDIR%%/nsIEntityConverter.idl
-share/idl/%%NVUDIR%%/nsIEntropyCollector.idl
-share/idl/%%NVUDIR%%/nsIEnumerator.idl
-share/idl/%%NVUDIR%%/nsIEnvironment.idl
-share/idl/%%NVUDIR%%/nsIErrorService.idl
-share/idl/%%NVUDIR%%/nsIEvaluateStringProxy.idl
-share/idl/%%NVUDIR%%/nsIEventHandler.idl
-share/idl/%%NVUDIR%%/nsIEventQueue.idl
-share/idl/%%NVUDIR%%/nsIEventQueueService.idl
-share/idl/%%NVUDIR%%/nsIEventTarget.idl
-share/idl/%%NVUDIR%%/nsIException.idl
-share/idl/%%NVUDIR%%/nsIExceptionService.idl
-share/idl/%%NVUDIR%%/nsIExpatSink.idl
-share/idl/%%NVUDIR%%/nsIExtensionManager.idl
-share/idl/%%NVUDIR%%/nsIExternalHelperAppService.idl
-share/idl/%%NVUDIR%%/nsIExternalProtocolHandler.idl
-share/idl/%%NVUDIR%%/nsIExternalProtocolService.idl
-share/idl/%%NVUDIR%%/nsIFIXptr.idl
-share/idl/%%NVUDIR%%/nsIFTPChannel.idl
-share/idl/%%NVUDIR%%/nsIFactory.idl
-share/idl/%%NVUDIR%%/nsIFastLoadFileControl.idl
-share/idl/%%NVUDIR%%/nsIFastLoadService.idl
-share/idl/%%NVUDIR%%/nsIFile.idl
-share/idl/%%NVUDIR%%/nsIFileChannel.idl
-share/idl/%%NVUDIR%%/nsIFilePicker.idl
-share/idl/%%NVUDIR%%/nsIFileProtocolHandler.idl
-share/idl/%%NVUDIR%%/nsIFileSpec.idl
-share/idl/%%NVUDIR%%/nsIFileStreams.idl
-share/idl/%%NVUDIR%%/nsIFileURL.idl
-share/idl/%%NVUDIR%%/nsIFileUtilities.idl
-share/idl/%%NVUDIR%%/nsIFileView.idl
-share/idl/%%NVUDIR%%/nsIFind.idl
-share/idl/%%NVUDIR%%/nsIFindService.idl
-share/idl/%%NVUDIR%%/nsIFontCatalogService.idl
-share/idl/%%NVUDIR%%/nsIFontEnumerator.idl
-share/idl/%%NVUDIR%%/nsIFontList.idl
-share/idl/%%NVUDIR%%/nsIFontPackageHandler.idl
-share/idl/%%NVUDIR%%/nsIFontPackageProxy.idl
-share/idl/%%NVUDIR%%/nsIFontPackageService.idl
-share/idl/%%NVUDIR%%/nsIFormSigningDialog.idl
-share/idl/%%NVUDIR%%/nsIFormatConverter.idl
-share/idl/%%NVUDIR%%/nsIFreeType2.idl
-share/idl/%%NVUDIR%%/nsIFullScreen.idl
-share/idl/%%NVUDIR%%/nsIGenKeypairInfoDlg.idl
-share/idl/%%NVUDIR%%/nsIGlobalHistory.idl
-share/idl/%%NVUDIR%%/nsIGlobalHistory2.idl
-share/idl/%%NVUDIR%%/nsIHTMLAbsPosEditor.idl
-share/idl/%%NVUDIR%%/nsIHTMLEditor.idl
-share/idl/%%NVUDIR%%/nsIHTMLInlineTableEditor.idl
-share/idl/%%NVUDIR%%/nsIHTMLObjectResizeListener.idl
-share/idl/%%NVUDIR%%/nsIHTMLObjectResizer.idl
-share/idl/%%NVUDIR%%/nsIHTMLTemplateEditor.idl
-share/idl/%%NVUDIR%%/nsIHTTPHeaderListener.idl
-share/idl/%%NVUDIR%%/nsIHash.idl
-share/idl/%%NVUDIR%%/nsIHelperAppLauncherDialog.idl
-share/idl/%%NVUDIR%%/nsIHistoryEntry.idl
-share/idl/%%NVUDIR%%/nsIHttpAuthManager.idl
-share/idl/%%NVUDIR%%/nsIHttpAuthenticator.idl
-share/idl/%%NVUDIR%%/nsIHttpChannel.idl
-share/idl/%%NVUDIR%%/nsIHttpChannelInternal.idl
-share/idl/%%NVUDIR%%/nsIHttpEventSink.idl
-share/idl/%%NVUDIR%%/nsIHttpHeaderVisitor.idl
-share/idl/%%NVUDIR%%/nsIHttpProtocolHandler.idl
-share/idl/%%NVUDIR%%/nsIIDNService.idl
-share/idl/%%NVUDIR%%/nsIIFrameBoxObject.idl
-share/idl/%%NVUDIR%%/nsIIOService.idl
-share/idl/%%NVUDIR%%/nsIImageDocument.idl
-share/idl/%%NVUDIR%%/nsIImageLoadingContent.idl
-share/idl/%%NVUDIR%%/nsIInputStream.idl
-share/idl/%%NVUDIR%%/nsIInputStreamChannel.idl
-share/idl/%%NVUDIR%%/nsIInputStreamPump.idl
-share/idl/%%NVUDIR%%/nsIInputStreamTee.idl
-share/idl/%%NVUDIR%%/nsIInterfaceInfo.idl
-share/idl/%%NVUDIR%%/nsIInterfaceInfoManager.idl
-share/idl/%%NVUDIR%%/nsIInterfaceRequestor.idl
-share/idl/%%NVUDIR%%/nsIJAR.idl
-share/idl/%%NVUDIR%%/nsIJARChannel.idl
-share/idl/%%NVUDIR%%/nsIJARProtocolHandler.idl
-share/idl/%%NVUDIR%%/nsIJARURI.idl
-share/idl/%%NVUDIR%%/nsIJRILiveConnectPIPeer.idl
-share/idl/%%NVUDIR%%/nsIJRILiveConnectPlugin.idl
-share/idl/%%NVUDIR%%/nsIJSConsoleService.idl
-share/idl/%%NVUDIR%%/nsIJSContextStack.idl
-share/idl/%%NVUDIR%%/nsIJSRuntimeService.idl
-share/idl/%%NVUDIR%%/nsIKeygenThread.idl
-share/idl/%%NVUDIR%%/nsILDAPSyncQuery.idl
-share/idl/%%NVUDIR%%/nsILanguageAtom.idl
-share/idl/%%NVUDIR%%/nsILanguageAtomService.idl
-share/idl/%%NVUDIR%%/nsILineInputStream.idl
-share/idl/%%NVUDIR%%/nsIListBoxObject.idl
-share/idl/%%NVUDIR%%/nsILoadGroup.idl
-share/idl/%%NVUDIR%%/nsILocalFile.idl
-share/idl/%%NVUDIR%%/nsILocale.idl
-share/idl/%%NVUDIR%%/nsILocaleService.idl
-share/idl/%%NVUDIR%%/nsIMIMEHeaderParam.idl
-share/idl/%%NVUDIR%%/nsIMIMEInfo.idl
-share/idl/%%NVUDIR%%/nsIMIMEInputStream.idl
-share/idl/%%NVUDIR%%/nsIMIMEService.idl
-share/idl/%%NVUDIR%%/nsIMarkupDocumentViewer.idl
-share/idl/%%NVUDIR%%/nsIMemory.idl
-share/idl/%%NVUDIR%%/nsIMenuBoxObject.idl
-share/idl/%%NVUDIR%%/nsIMenuRollup.idl
-share/idl/%%NVUDIR%%/nsIModifyableXPointer.idl
-share/idl/%%NVUDIR%%/nsIModule.idl
-share/idl/%%NVUDIR%%/nsIMultiPartChannel.idl
-share/idl/%%NVUDIR%%/nsIMultiplexInputStream.idl
-share/idl/%%NVUDIR%%/nsINSSCertCache.idl
-share/idl/%%NVUDIR%%/nsINativeAppSupport.idl
-share/idl/%%NVUDIR%%/nsINativeComponentLoader.idl
-share/idl/%%NVUDIR%%/nsINativeScrollbar.idl
-share/idl/%%NVUDIR%%/nsIOCSPResponder.idl
-share/idl/%%NVUDIR%%/nsIObjectInputStream.idl
-share/idl/%%NVUDIR%%/nsIObjectOutputStream.idl
-share/idl/%%NVUDIR%%/nsIObserver.idl
-share/idl/%%NVUDIR%%/nsIObserverService.idl
-share/idl/%%NVUDIR%%/nsIOutputStream.idl
-share/idl/%%NVUDIR%%/nsIPK11Token.idl
-share/idl/%%NVUDIR%%/nsIPK11TokenDB.idl
-share/idl/%%NVUDIR%%/nsIPKCS11Module.idl
-share/idl/%%NVUDIR%%/nsIPKCS11ModuleDB.idl
-share/idl/%%NVUDIR%%/nsIPKCS11Slot.idl
-share/idl/%%NVUDIR%%/nsIPKIParamBlock.idl
-share/idl/%%NVUDIR%%/nsIPassword.idl
-share/idl/%%NVUDIR%%/nsIPasswordManager.idl
-share/idl/%%NVUDIR%%/nsIPasswordManagerInternal.idl
-share/idl/%%NVUDIR%%/nsIPermissionManager.idl
-share/idl/%%NVUDIR%%/nsIPersistentProperties2.idl
-share/idl/%%NVUDIR%%/nsIPhonetic.idl
-share/idl/%%NVUDIR%%/nsIPipe.idl
-share/idl/%%NVUDIR%%/nsIPlaintextEditor.idl
-share/idl/%%NVUDIR%%/nsIPlugin.idl
-share/idl/%%NVUDIR%%/nsIPluginDocument.idl
-share/idl/%%NVUDIR%%/nsIPluginHost.idl
-share/idl/%%NVUDIR%%/nsIPluginInputStream.idl
-share/idl/%%NVUDIR%%/nsIPluginInstance.idl
-share/idl/%%NVUDIR%%/nsIPluginInstanceOwner.idl
-share/idl/%%NVUDIR%%/nsIPluginInstancePeer.idl
-share/idl/%%NVUDIR%%/nsIPluginInstancePeer2.idl
-share/idl/%%NVUDIR%%/nsIPluginManager.idl
-share/idl/%%NVUDIR%%/nsIPluginManager2.idl
-share/idl/%%NVUDIR%%/nsIPluginStreamInfo.idl
-share/idl/%%NVUDIR%%/nsIPluginStreamListener.idl
-share/idl/%%NVUDIR%%/nsIPluginTagInfo.idl
-share/idl/%%NVUDIR%%/nsIPluginTagInfo2.idl
-share/idl/%%NVUDIR%%/nsIPopupBoxObject.idl
-share/idl/%%NVUDIR%%/nsIPopupWindowManager.idl
-share/idl/%%NVUDIR%%/nsIPref.idl
-share/idl/%%NVUDIR%%/nsIPrefBranch.idl
-share/idl/%%NVUDIR%%/nsIPrefBranchInternal.idl
-share/idl/%%NVUDIR%%/nsIPrefLocalizedString.idl
-share/idl/%%NVUDIR%%/nsIPrefMigration.idl
-share/idl/%%NVUDIR%%/nsIPrefMigrationProgress.idl
-share/idl/%%NVUDIR%%/nsIPrefService.idl
-share/idl/%%NVUDIR%%/nsIPrefetchService.idl
-share/idl/%%NVUDIR%%/nsIPrincipal.idl
-share/idl/%%NVUDIR%%/nsIPrintOptions.idl
-share/idl/%%NVUDIR%%/nsIPrintProgress.idl
-share/idl/%%NVUDIR%%/nsIPrintProgressParams.idl
-share/idl/%%NVUDIR%%/nsIPrintSession.idl
-share/idl/%%NVUDIR%%/nsIPrintSettings.idl
-share/idl/%%NVUDIR%%/nsIPrintSettingsService.idl
-share/idl/%%NVUDIR%%/nsIPrintStatusFeedback.idl
-share/idl/%%NVUDIR%%/nsIPrintingPrompt.idl
-share/idl/%%NVUDIR%%/nsIPrintingPromptService.idl
-share/idl/%%NVUDIR%%/nsIProcess.idl
-share/idl/%%NVUDIR%%/nsIProfile.idl
-share/idl/%%NVUDIR%%/nsIProfileChangeStatus.idl
-share/idl/%%NVUDIR%%/nsIProfileInternal.idl
-share/idl/%%NVUDIR%%/nsIProfileStartupListener.idl
-share/idl/%%NVUDIR%%/nsIProgrammingLanguage.idl
-share/idl/%%NVUDIR%%/nsIProgressDialog.idl
-share/idl/%%NVUDIR%%/nsIProgressEventSink.idl
-share/idl/%%NVUDIR%%/nsIPrompt.idl
-share/idl/%%NVUDIR%%/nsIPromptService.idl
-share/idl/%%NVUDIR%%/nsIProperties.idl
-share/idl/%%NVUDIR%%/nsIPropertyBag.idl
-share/idl/%%NVUDIR%%/nsIProtocolHandler.idl
-share/idl/%%NVUDIR%%/nsIProtocolProxyService.idl
-share/idl/%%NVUDIR%%/nsIProxiedProtocolHandler.idl
-share/idl/%%NVUDIR%%/nsIProxy.idl
-share/idl/%%NVUDIR%%/nsIProxyAutoConfig.idl
-share/idl/%%NVUDIR%%/nsIProxyCreateInstance.idl
-share/idl/%%NVUDIR%%/nsIProxyInfo.idl
-share/idl/%%NVUDIR%%/nsIProxyObjectManager.idl
-share/idl/%%NVUDIR%%/nsIRDFCompositeDataSource.idl
-share/idl/%%NVUDIR%%/nsIRDFContainer.idl
-share/idl/%%NVUDIR%%/nsIRDFContainerUtils.idl
-share/idl/%%NVUDIR%%/nsIRDFDataSource.idl
-share/idl/%%NVUDIR%%/nsIRDFDelegateFactory.idl
-share/idl/%%NVUDIR%%/nsIRDFInMemoryDataSource.idl
-share/idl/%%NVUDIR%%/nsIRDFLiteral.idl
-share/idl/%%NVUDIR%%/nsIRDFNode.idl
-share/idl/%%NVUDIR%%/nsIRDFObserver.idl
-share/idl/%%NVUDIR%%/nsIRDFPropagatableDataSource.idl
-share/idl/%%NVUDIR%%/nsIRDFPurgeableDataSource.idl
-share/idl/%%NVUDIR%%/nsIRDFRemoteDataSource.idl
-share/idl/%%NVUDIR%%/nsIRDFResource.idl
-share/idl/%%NVUDIR%%/nsIRDFService.idl
-share/idl/%%NVUDIR%%/nsIRDFXMLParser.idl
-share/idl/%%NVUDIR%%/nsIRDFXMLSerializer.idl
-share/idl/%%NVUDIR%%/nsIRDFXMLSink.idl
-share/idl/%%NVUDIR%%/nsIRDFXMLSource.idl
-share/idl/%%NVUDIR%%/nsIReadConfig.idl
-share/idl/%%NVUDIR%%/nsIRecyclingAllocator.idl
-share/idl/%%NVUDIR%%/nsIRefreshURI.idl
-share/idl/%%NVUDIR%%/nsIRegistry.idl
-share/idl/%%NVUDIR%%/nsIRelativeFilePref.idl
-share/idl/%%NVUDIR%%/nsIRequest.idl
-share/idl/%%NVUDIR%%/nsIRequestObserver.idl
-share/idl/%%NVUDIR%%/nsIRequestObserverProxy.idl
-share/idl/%%NVUDIR%%/nsIResProtocolHandler.idl
-share/idl/%%NVUDIR%%/nsIResumableChannel.idl
-share/idl/%%NVUDIR%%/nsIResumableEntityID.idl
-share/idl/%%NVUDIR%%/nsIRollupListener.idl
-share/idl/%%NVUDIR%%/nsIRunnable.idl
-share/idl/%%NVUDIR%%/nsISHContainer.idl
-share/idl/%%NVUDIR%%/nsISHEntry.idl
-share/idl/%%NVUDIR%%/nsISHTransaction.idl
-share/idl/%%NVUDIR%%/nsISHistory.idl
-share/idl/%%NVUDIR%%/nsISHistoryInternal.idl
-share/idl/%%NVUDIR%%/nsISHistoryListener.idl
-share/idl/%%NVUDIR%%/nsISMimeCert.idl
-share/idl/%%NVUDIR%%/nsISOCKSSocketInfo.idl
-share/idl/%%NVUDIR%%/nsISSLSocketControl.idl
-share/idl/%%NVUDIR%%/nsISSLSocketProvider.idl
-share/idl/%%NVUDIR%%/nsISSLStatus.idl
-share/idl/%%NVUDIR%%/nsISSLStatusProvider.idl
-share/idl/%%NVUDIR%%/nsISaveAsCharset.idl
-share/idl/%%NVUDIR%%/nsIScreen.idl
-share/idl/%%NVUDIR%%/nsIScreenManager.idl
-share/idl/%%NVUDIR%%/nsIScriptContextOwner.idl
-share/idl/%%NVUDIR%%/nsIScriptError.idl
-share/idl/%%NVUDIR%%/nsIScriptEventHandler.idl
-share/idl/%%NVUDIR%%/nsIScriptEventManager.idl
-share/idl/%%NVUDIR%%/nsIScriptGlobalObjectOwner.idl
-share/idl/%%NVUDIR%%/nsIScriptLoader.idl
-share/idl/%%NVUDIR%%/nsIScriptLoaderObserver.idl
-share/idl/%%NVUDIR%%/nsIScriptSecurityManager.idl
-share/idl/%%NVUDIR%%/nsIScriptableDateFormat.idl
-share/idl/%%NVUDIR%%/nsIScriptableInputStream.idl
-share/idl/%%NVUDIR%%/nsIScriptableInterfaces.idl
-share/idl/%%NVUDIR%%/nsIScriptablePlugin.idl
-share/idl/%%NVUDIR%%/nsIScriptableRegion.idl
-share/idl/%%NVUDIR%%/nsIScriptableUConv.idl
-share/idl/%%NVUDIR%%/nsIScrollBoxObject.idl
-share/idl/%%NVUDIR%%/nsIScrollable.idl
-share/idl/%%NVUDIR%%/nsISearchContext.idl
-share/idl/%%NVUDIR%%/nsISecretDecoderRing.idl
-share/idl/%%NVUDIR%%/nsISecureBrowserUI.idl
-share/idl/%%NVUDIR%%/nsISecurityCheckedComponent.idl
-share/idl/%%NVUDIR%%/nsISecurityEventSink.idl
-share/idl/%%NVUDIR%%/nsISecurityPref.idl
-share/idl/%%NVUDIR%%/nsISecurityWarningDialogs.idl
-share/idl/%%NVUDIR%%/nsISeekableStream.idl
-share/idl/%%NVUDIR%%/nsISelectElement.idl
-share/idl/%%NVUDIR%%/nsISelection.idl
-share/idl/%%NVUDIR%%/nsISelectionController.idl
-share/idl/%%NVUDIR%%/nsISelectionDisplay.idl
-share/idl/%%NVUDIR%%/nsISelectionImageService.idl
-share/idl/%%NVUDIR%%/nsISelectionListener.idl
-share/idl/%%NVUDIR%%/nsISelectionPrivate.idl
-share/idl/%%NVUDIR%%/nsISemanticUnitScanner.idl
-share/idl/%%NVUDIR%%/nsISerializable.idl
-share/idl/%%NVUDIR%%/nsIServerSocket.idl
-share/idl/%%NVUDIR%%/nsIServiceManager.idl
-share/idl/%%NVUDIR%%/nsISessionRoaming.idl
-share/idl/%%NVUDIR%%/nsISidebar.idl
-share/idl/%%NVUDIR%%/nsISignatureVerifier.idl
-share/idl/%%NVUDIR%%/nsISignonViewer.idl
-share/idl/%%NVUDIR%%/nsISimpleEnumerator.idl
-share/idl/%%NVUDIR%%/nsISimpleStreamListener.idl
-share/idl/%%NVUDIR%%/nsISocketProvider.idl
-share/idl/%%NVUDIR%%/nsISocketProviderService.idl
-share/idl/%%NVUDIR%%/nsISocketTransport.idl
-share/idl/%%NVUDIR%%/nsISocketTransportService.idl
-share/idl/%%NVUDIR%%/nsISound.idl
-share/idl/%%NVUDIR%%/nsIStandardURL.idl
-share/idl/%%NVUDIR%%/nsIStorageStream.idl
-share/idl/%%NVUDIR%%/nsIStreamBufferAccess.idl
-share/idl/%%NVUDIR%%/nsIStreamConverter.idl
-share/idl/%%NVUDIR%%/nsIStreamConverterService.idl
-share/idl/%%NVUDIR%%/nsIStreamListener.idl
-share/idl/%%NVUDIR%%/nsIStreamListenerProxy.idl
-share/idl/%%NVUDIR%%/nsIStreamListenerTee.idl
-share/idl/%%NVUDIR%%/nsIStreamLoader.idl
-share/idl/%%NVUDIR%%/nsIStreamTransportService.idl
-share/idl/%%NVUDIR%%/nsIStringBundle.idl
-share/idl/%%NVUDIR%%/nsIStringBundleOverride.idl
-share/idl/%%NVUDIR%%/nsIStringEnumerator.idl
-share/idl/%%NVUDIR%%/nsIStringStream.idl
-share/idl/%%NVUDIR%%/nsISupports.idl
-share/idl/%%NVUDIR%%/nsISupportsArray.idl
-share/idl/%%NVUDIR%%/nsISupportsIterators.idl
-share/idl/%%NVUDIR%%/nsISupportsPrimitives.idl
-share/idl/%%NVUDIR%%/nsISyncLoadDOMService.idl
-share/idl/%%NVUDIR%%/nsISyncStreamListener.idl
-share/idl/%%NVUDIR%%/nsITXTToHTMLConv.idl
-share/idl/%%NVUDIR%%/nsITableEditor.idl
-share/idl/%%NVUDIR%%/nsITextScroll.idl
-share/idl/%%NVUDIR%%/nsITextServicesFilter.idl
-share/idl/%%NVUDIR%%/nsITextToSubURI.idl
-share/idl/%%NVUDIR%%/nsIThread.idl
-share/idl/%%NVUDIR%%/nsITimelineService.idl
-share/idl/%%NVUDIR%%/nsITimer.idl
-share/idl/%%NVUDIR%%/nsITimerInternal.idl
-share/idl/%%NVUDIR%%/nsITimerManager.idl
-share/idl/%%NVUDIR%%/nsITokenDialogs.idl
-share/idl/%%NVUDIR%%/nsITokenPasswordDialogs.idl
-share/idl/%%NVUDIR%%/nsIToolkit.idl
-share/idl/%%NVUDIR%%/nsITooltipListener.idl
-share/idl/%%NVUDIR%%/nsITooltipTextProvider.idl
-share/idl/%%NVUDIR%%/nsITraceRefcnt.idl
-share/idl/%%NVUDIR%%/nsITransaction.idl
-share/idl/%%NVUDIR%%/nsITransactionList.idl
-share/idl/%%NVUDIR%%/nsITransactionListener.idl
-share/idl/%%NVUDIR%%/nsITransactionManager.idl
-share/idl/%%NVUDIR%%/nsITransferable.idl
-share/idl/%%NVUDIR%%/nsITransport.idl
-share/idl/%%NVUDIR%%/nsITransportSecurityInfo.idl
-share/idl/%%NVUDIR%%/nsITreeBoxObject.idl
-share/idl/%%NVUDIR%%/nsITreeContentView.idl
-share/idl/%%NVUDIR%%/nsITreeSelection.idl
-share/idl/%%NVUDIR%%/nsITreeView.idl
-share/idl/%%NVUDIR%%/nsIURI.idl
-share/idl/%%NVUDIR%%/nsIURIChecker.idl
-share/idl/%%NVUDIR%%/nsIURIContentListener.idl
-share/idl/%%NVUDIR%%/nsIURIFixup.idl
-share/idl/%%NVUDIR%%/nsIURILoader.idl
-share/idl/%%NVUDIR%%/nsIURIRefObject.idl
-share/idl/%%NVUDIR%%/nsIURL.idl
-share/idl/%%NVUDIR%%/nsIURLParser.idl
-share/idl/%%NVUDIR%%/nsIUTF8ConverterService.idl
-share/idl/%%NVUDIR%%/nsIUnicharStreamLoader.idl
-share/idl/%%NVUDIR%%/nsIUnicodeNormalizer.idl
-share/idl/%%NVUDIR%%/nsIUploadChannel.idl
-share/idl/%%NVUDIR%%/nsIUserCertPicker.idl
-share/idl/%%NVUDIR%%/nsIUserInfo.idl
-share/idl/%%NVUDIR%%/nsIVariant.idl
-share/idl/%%NVUDIR%%/nsIViewSourceChannel.idl
-share/idl/%%NVUDIR%%/nsIWalletEditor.idl
-share/idl/%%NVUDIR%%/nsIWalletPreview.idl
-share/idl/%%NVUDIR%%/nsIWalletService.idl
-share/idl/%%NVUDIR%%/nsIWeakReference.idl
-share/idl/%%NVUDIR%%/nsIWebBrowser.idl
-share/idl/%%NVUDIR%%/nsIWebBrowserChrome.idl
-share/idl/%%NVUDIR%%/nsIWebBrowserChromeFocus.idl
-share/idl/%%NVUDIR%%/nsIWebBrowserFind.idl
-share/idl/%%NVUDIR%%/nsIWebBrowserFocus.idl
-share/idl/%%NVUDIR%%/nsIWebBrowserPersist.idl
-share/idl/%%NVUDIR%%/nsIWebBrowserPrint.idl
-share/idl/%%NVUDIR%%/nsIWebBrowserSetup.idl
-share/idl/%%NVUDIR%%/nsIWebNavigation.idl
-share/idl/%%NVUDIR%%/nsIWebPageDescriptor.idl
-share/idl/%%NVUDIR%%/nsIWebProgress.idl
-share/idl/%%NVUDIR%%/nsIWebProgressListener.idl
-share/idl/%%NVUDIR%%/nsIWindowCreator.idl
-share/idl/%%NVUDIR%%/nsIWindowCreator2.idl
-share/idl/%%NVUDIR%%/nsIWindowDataSource.idl
-share/idl/%%NVUDIR%%/nsIWindowMediator.idl
-share/idl/%%NVUDIR%%/nsIWindowMediatorListener.idl
-share/idl/%%NVUDIR%%/nsIWindowWatcher.idl
-share/idl/%%NVUDIR%%/nsIWindowlessPlugInstPeer.idl
-share/idl/%%NVUDIR%%/nsIWyciwygChannel.idl
-share/idl/%%NVUDIR%%/nsIX509Cert.idl
-share/idl/%%NVUDIR%%/nsIX509CertDB.idl
-share/idl/%%NVUDIR%%/nsIX509CertDB2.idl
-share/idl/%%NVUDIR%%/nsIX509CertValidity.idl
-share/idl/%%NVUDIR%%/nsIXMLHttpRequest.idl
-share/idl/%%NVUDIR%%/nsIXPCScriptNotify.idl
-share/idl/%%NVUDIR%%/nsIXPCScriptable.idl
-share/idl/%%NVUDIR%%/nsIXPCSecurityManager.idl
-share/idl/%%NVUDIR%%/nsIXPConnect.idl
-share/idl/%%NVUDIR%%/nsIXPIDialogService.idl
-share/idl/%%NVUDIR%%/nsIXPINotifier.idl
-share/idl/%%NVUDIR%%/nsIXPIProgressDialog.idl
-share/idl/%%NVUDIR%%/nsIXPTLoader.idl
-share/idl/%%NVUDIR%%/nsIXPointer.idl
-share/idl/%%NVUDIR%%/nsIXRemoteClient.idl
-share/idl/%%NVUDIR%%/nsIXRemoteService.idl
-share/idl/%%NVUDIR%%/nsIXSLTException.idl
-share/idl/%%NVUDIR%%/nsIXSLTProcessor.idl
-share/idl/%%NVUDIR%%/nsIXSLTProcessorObsolete.idl
-share/idl/%%NVUDIR%%/nsIXULBrowserWindow.idl
-share/idl/%%NVUDIR%%/nsIXULBuilderListener.idl
-share/idl/%%NVUDIR%%/nsIXULOverlayProvider.idl
-share/idl/%%NVUDIR%%/nsIXULSortService.idl
-share/idl/%%NVUDIR%%/nsIXULTemplateBuilder.idl
-share/idl/%%NVUDIR%%/nsIXULWindow.idl
-share/idl/%%NVUDIR%%/nsIZipReader.idl
-share/idl/%%NVUDIR%%/nsPIAccessNode.idl
-share/idl/%%NVUDIR%%/nsPIAccessible.idl
-share/idl/%%NVUDIR%%/nsPIAccessibleDocument.idl
-share/idl/%%NVUDIR%%/nsPICertNotification.idl
-share/idl/%%NVUDIR%%/nsPICommandUpdater.idl
-share/idl/%%NVUDIR%%/nsPIEditorTransaction.idl
-share/idl/%%NVUDIR%%/nsPIPluginHost.idl
-share/idl/%%NVUDIR%%/nsPIPluginInstancePeer.idl
-share/idl/%%NVUDIR%%/nsPIPromptService.idl
-share/idl/%%NVUDIR%%/nsPIWindowWatcher.idl
-share/idl/%%NVUDIR%%/nsPIXPIProxy.idl
-share/idl/%%NVUDIR%%/nsPIXPIStubHook.idl
-share/idl/%%NVUDIR%%/nspluginroot.idl
-share/idl/%%NVUDIR%%/nsrootidl.idl
-share/idl/%%NVUDIR%%/xpccomponents.idl
-share/idl/%%NVUDIR%%/xpcexception.idl
-share/idl/%%NVUDIR%%/xpcjsid.idl
- at dirrm share/idl/%%NVUDIR%%
- at unexec rmdir %D/share/idl 2>/dev/null || true
- at dirrm lib/pkgconfig
- at dirrm lib/%%NVUDIR%%/res/throbber
- at dirrm lib/%%NVUDIR%%/res/samples/sampleimages
- at dirrm lib/%%NVUDIR%%/res/samples
- at dirrm lib/%%NVUDIR%%/res/rdf
- at dirrm lib/%%NVUDIR%%/res/inspector
- at dirrm lib/%%NVUDIR%%/res/html
- at dirrm lib/%%NVUDIR%%/res/fonts
- at dirrm lib/%%NVUDIR%%/res/entityTables
- at dirrm lib/%%NVUDIR%%/res/dtd
- at dirrm lib/%%NVUDIR%%/res/builtin
- at dirrm lib/%%NVUDIR%%/res
- at dirrm lib/%%NVUDIR%%/plugins
- at dirrm lib/%%NVUDIR%%/icons
- at dirrm lib/%%NVUDIR%%/greprefs
- at dirrm lib/%%NVUDIR%%/defaults/wallet
- at dirrm lib/%%NVUDIR%%/defaults/profile/chrome
- at dirrm lib/%%NVUDIR%%/defaults/profile/US/chrome
- at dirrm lib/%%NVUDIR%%/defaults/profile/US
- at dirrm lib/%%NVUDIR%%/defaults/profile
- at dirrm lib/%%NVUDIR%%/defaults/pref
- at dirrm lib/%%NVUDIR%%/defaults/autoconfig
- at dirrm lib/%%NVUDIR%%/defaults
- at dirrm lib/%%NVUDIR%%/components/myspell
- at dirrm lib/%%NVUDIR%%/components
- at dirrm lib/%%NVUDIR%%/chrome/venkman/skin/modern/venkman/images
- at dirrm lib/%%NVUDIR%%/chrome/venkman/skin/modern/venkman
- at dirrm lib/%%NVUDIR%%/chrome/venkman/skin/modern
- at dirrm lib/%%NVUDIR%%/chrome/venkman/skin
- at dirrm lib/%%NVUDIR%%/chrome/venkman/locale/en-US/venkman
- at dirrm lib/%%NVUDIR%%/chrome/venkman/locale/en-US
- at dirrm lib/%%NVUDIR%%/chrome/venkman/locale
- at dirrm lib/%%NVUDIR%%/chrome/venkman/content/venkman/tests
- at dirrm lib/%%NVUDIR%%/chrome/venkman/content/venkman
- at dirrm lib/%%NVUDIR%%/chrome/venkman/content
- at dirrm lib/%%NVUDIR%%/chrome/venkman
- at dirrm lib/%%NVUDIR%%/chrome/toolkit/content/mozapps/xpinstall
- at dirrm lib/%%NVUDIR%%/chrome/toolkit/content/mozapps/shared
- at dirrm lib/%%NVUDIR%%/chrome/toolkit/content/mozapps/extensions
- at dirrm lib/%%NVUDIR%%/chrome/toolkit/content/mozapps/downloads
- at dirrm lib/%%NVUDIR%%/chrome/toolkit/content/mozapps
- at dirrm lib/%%NVUDIR%%/chrome/toolkit/content/global/bindings
- at dirrm lib/%%NVUDIR%%/chrome/toolkit/content/global-region
- at dirrm lib/%%NVUDIR%%/chrome/toolkit/content/global-platform
- at dirrm lib/%%NVUDIR%%/chrome/toolkit/content/global
- at dirrm lib/%%NVUDIR%%/chrome/toolkit/content
- at dirrm lib/%%NVUDIR%%/chrome/toolkit
- at dirrm lib/%%NVUDIR%%/chrome/tipoftheday/content/tipoftheday
- at dirrm lib/%%NVUDIR%%/chrome/tipoftheday/content
- at dirrm lib/%%NVUDIR%%/chrome/tipoftheday
- at dirrm lib/%%NVUDIR%%/chrome/pippki/content/pippki
- at dirrm lib/%%NVUDIR%%/chrome/pippki/content
- at dirrm lib/%%NVUDIR%%/chrome/pippki
- at dirrm lib/%%NVUDIR%%/chrome/pipnss/content/pipnss
- at dirrm lib/%%NVUDIR%%/chrome/pipnss/content
- at dirrm lib/%%NVUDIR%%/chrome/pipnss
- at dirrm lib/%%NVUDIR%%/chrome/pinger/content/pinger
- at dirrm lib/%%NVUDIR%%/chrome/pinger/content
- at dirrm lib/%%NVUDIR%%/chrome/pinger
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/modern/inspector/viewers/xblBindings
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/modern/inspector/viewers/styleRules
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/modern/inspector/viewers/domNode
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/modern/inspector/viewers/dom
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/modern/inspector/viewers/boxModel
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/modern/inspector/viewers
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/modern/inspector
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/modern
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/classic/inspector/viewers/xblBindings
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/classic/inspector/viewers/styleRules
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/classic/inspector/viewers/domNode
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/classic/inspector/viewers/dom
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/classic/inspector/viewers/boxModel
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/classic/inspector/viewers
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/classic/inspector
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin/classic
- at dirrm lib/%%NVUDIR%%/chrome/inspector/skin
- at dirrm lib/%%NVUDIR%%/chrome/inspector/locale/en-US/inspector/viewers
- at dirrm lib/%%NVUDIR%%/chrome/inspector/locale/en-US/inspector/search
- at dirrm lib/%%NVUDIR%%/chrome/inspector/locale/en-US/inspector
- at dirrm lib/%%NVUDIR%%/chrome/inspector/locale/en-US
- at dirrm lib/%%NVUDIR%%/chrome/inspector/locale
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/viewers/xblBindings
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/viewers/stylesheets
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/viewers/styleRules
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/viewers/jsObject
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/viewers/domNode
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/viewers/dom
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/viewers/computedStyle
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/viewers/boxModel
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/viewers
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/tests
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/search/modules/junkImgs
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/search/modules/findFiles
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/search/modules
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/search
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/prefs
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/jsutil/xul
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/jsutil/xpcom
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/jsutil/system
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/jsutil/rdf
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/jsutil/events
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/jsutil
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector/extensions
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content/inspector
- at dirrm lib/%%NVUDIR%%/chrome/inspector/content
- at dirrm lib/%%NVUDIR%%/chrome/inspector
- at dirrm lib/%%NVUDIR%%/chrome/icons/default
- at dirrm lib/%%NVUDIR%%/chrome/icons
- at dirrm lib/%%NVUDIR%%/chrome/en-win/locale/en-US/navigator-platform
- at dirrm lib/%%NVUDIR%%/chrome/en-win/locale/en-US/global-platform
- at dirrm lib/%%NVUDIR%%/chrome/en-win/locale/en-US/communicator-platform/pref
- at dirrm lib/%%NVUDIR%%/chrome/en-win/locale/en-US/communicator-platform
- at dirrm lib/%%NVUDIR%%/chrome/en-win/locale/en-US
- at dirrm lib/%%NVUDIR%%/chrome/en-win/locale
- at dirrm lib/%%NVUDIR%%/chrome/en-win
- at dirrm lib/%%NVUDIR%%/chrome/en-unix/locale/en-US/navigator-platform
- at dirrm lib/%%NVUDIR%%/chrome/en-unix/locale/en-US/global-platform
- at dirrm lib/%%NVUDIR%%/chrome/en-unix/locale/en-US/communicator-platform/pref
- at dirrm lib/%%NVUDIR%%/chrome/en-unix/locale/en-US/communicator-platform
- at dirrm lib/%%NVUDIR%%/chrome/en-unix/locale/en-US
- at dirrm lib/%%NVUDIR%%/chrome/en-unix/locale
- at dirrm lib/%%NVUDIR%%/chrome/en-unix
- at dirrm lib/%%NVUDIR%%/chrome/en-mac/locale/en-US/navigator-platform
- at dirrm lib/%%NVUDIR%%/chrome/en-mac/locale/en-US/global-platform
- at dirrm lib/%%NVUDIR%%/chrome/en-mac/locale/en-US/communicator-platform/pref
- at dirrm lib/%%NVUDIR%%/chrome/en-mac/locale/en-US/communicator-platform
- at dirrm lib/%%NVUDIR%%/chrome/en-mac/locale/en-US
- at dirrm lib/%%NVUDIR%%/chrome/en-mac/locale
- at dirrm lib/%%NVUDIR%%/chrome/en-mac
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/wallet
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/tipoftheday
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/pippki
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/pipnss
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/pinger
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/necko
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/navigator
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/mozapps/xpinstall
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/mozapps/extensions
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/mozapps/downloads
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/mozapps
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/global
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/editor
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/communicator/xpinstall
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/communicator/xml
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/communicator/wallet
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/communicator/sidebar
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/communicator/security
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/communicator/search
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/communicator/profile
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/communicator/pref
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/communicator/layout
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/communicator/history
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/communicator/downloadmanager
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/communicator/dom
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/communicator/directory
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/communicator
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US/autoconfig
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale/en-US
- at dirrm lib/%%NVUDIR%%/chrome/en-US/locale
- at dirrm lib/%%NVUDIR%%/chrome/en-US
- at dirrm lib/%%NVUDIR%%/chrome/embed-sample/skin/classic/embed
- at dirrm lib/%%NVUDIR%%/chrome/embed-sample/skin/classic
- at dirrm lib/%%NVUDIR%%/chrome/embed-sample/skin
- at dirrm lib/%%NVUDIR%%/chrome/embed-sample/locale/en-US/embed
- at dirrm lib/%%NVUDIR%%/chrome/embed-sample/locale/en-US
- at dirrm lib/%%NVUDIR%%/chrome/embed-sample/locale
- at dirrm lib/%%NVUDIR%%/chrome/embed-sample/content/embed
- at dirrm lib/%%NVUDIR%%/chrome/embed-sample/content
- at dirrm lib/%%NVUDIR%%/chrome/embed-sample
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/xbl-marquee
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/wallet
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/necko
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/navigator-region
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/navigator-platform
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/navigator
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/editor/images
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/editor/bindings
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/editor-region
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/editor
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator/xpinstall
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator/xml
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator/wallet
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator/sidebar
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator/search
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator/related
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator/profile
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator/pref
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator/history
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator/downloadmanager
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator/directory
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator/alerts
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator-region
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator-platform
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/communicator
- at dirrm lib/%%NVUDIR%%/chrome/comm/content/autoconfig
- at dirrm lib/%%NVUDIR%%/chrome/comm/content
- at dirrm lib/%%NVUDIR%%/chrome/comm
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/navigator/icons
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/navigator/btn1
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/navigator
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/mozapps/xpinstall
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/mozapps/shared
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/mozapps/pref
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/mozapps/extensions
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/mozapps/downloads
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/mozapps
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/messenger/smime/icons
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/messenger/smime
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/messenger/messengercompose
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/messenger/icons
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/messenger/addressbook/icons
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/messenger/addressbook
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/messenger
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/global/tree
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/global/toolbar
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/global/splitter
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/global/scrollbar
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/global/radio
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/global/progressmeter
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/global/menu
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/global/icons
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/global/filepicker
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/global/console
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/global/checkbox
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/global/arrow
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/global
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/editor/icons
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/editor
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/communicator/xpinstall
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/communicator/taskbar
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/communicator/sidebar
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/communicator/search
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/communicator/related
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/communicator/profile
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/communicator/pref
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/communicator/icons/smileys
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/communicator/icons
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/communicator/directory
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/communicator/brand
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/communicator/bookmarks
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/communicator/alerts
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic/communicator
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin/classic
- at dirrm lib/%%NVUDIR%%/chrome/classic/skin
- at dirrm lib/%%NVUDIR%%/chrome/classic
- at dirrm lib/%%NVUDIR%%/chrome/cascades/locale/en-US/cascades
- at dirrm lib/%%NVUDIR%%/chrome/cascades/locale/en-US
- at dirrm lib/%%NVUDIR%%/chrome/cascades/locale
- at dirrm lib/%%NVUDIR%%/chrome/cascades/content/cascades
- at dirrm lib/%%NVUDIR%%/chrome/cascades/content
- at dirrm lib/%%NVUDIR%%/chrome/cascades
- at dirrm lib/%%NVUDIR%%/chrome/US/locale/US/navigator-region
- at dirrm lib/%%NVUDIR%%/chrome/US/locale/US/global-region
- at dirrm lib/%%NVUDIR%%/chrome/US/locale/US/editor-region
- at dirrm lib/%%NVUDIR%%/chrome/US/locale/US/communicator-region/wallet
- at dirrm lib/%%NVUDIR%%/chrome/US/locale/US/communicator-region
- at dirrm lib/%%NVUDIR%%/chrome/US/locale/US
- at dirrm lib/%%NVUDIR%%/chrome/US/locale
- at dirrm lib/%%NVUDIR%%/chrome/US
- at dirrm lib/%%NVUDIR%%/chrome
- at dirrm lib/%%NVUDIR%%
- at dirrm include/%%NVUDIR%%/xultmpl
- at dirrm include/%%NVUDIR%%/xuldoc
- at dirrm include/%%NVUDIR%%/xulapp
- at dirrm include/%%NVUDIR%%/xul
- at dirrm include/%%NVUDIR%%/xremoteservice
- at dirrm include/%%NVUDIR%%/xprintutil
- at dirrm include/%%NVUDIR%%/xpinstall
- at dirrm include/%%NVUDIR%%/xpconnect
- at dirrm include/%%NVUDIR%%/xpcom_obsolete
- at dirrm include/%%NVUDIR%%/xpcom
- at dirrm include/%%NVUDIR%%/xmlextras
- at dirrm include/%%NVUDIR%%/xlibrgb
- at dirrm include/%%NVUDIR%%/windowwatcher
- at dirrm include/%%NVUDIR%%/widget
- at dirrm include/%%NVUDIR%%/webshell
- at dirrm include/%%NVUDIR%%/webbrwsr
- at dirrm include/%%NVUDIR%%/webbrowserpersist
- at dirrm include/%%NVUDIR%%/walletviewers
- at dirrm include/%%NVUDIR%%/wallet
- at dirrm include/%%NVUDIR%%/view
- at dirrm include/%%NVUDIR%%/util
- at dirrm include/%%NVUDIR%%/uriloader
- at dirrm include/%%NVUDIR%%/unicharutil
- at dirrm include/%%NVUDIR%%/ucvtw2
- at dirrm include/%%NVUDIR%%/ucvtw
- at dirrm include/%%NVUDIR%%/ucvlatin
- at dirrm include/%%NVUDIR%%/ucvko
- at dirrm include/%%NVUDIR%%/ucvja
- at dirrm include/%%NVUDIR%%/ucvibm
- at dirrm include/%%NVUDIR%%/ucvcn
- at dirrm include/%%NVUDIR%%/uconv
- at dirrm include/%%NVUDIR%%/txtsvc
- at dirrm include/%%NVUDIR%%/txmgr
- at dirrm include/%%NVUDIR%%/system-pref
- at dirrm include/%%NVUDIR%%/string
- at dirrm include/%%NVUDIR%%/spellchecker
- at dirrm include/%%NVUDIR%%/sidebar
- at dirrm include/%%NVUDIR%%/shistory
- at dirrm include/%%NVUDIR%%/rdfutil
- at dirrm include/%%NVUDIR%%/rdf
- at dirrm include/%%NVUDIR%%/progressDlg
- at dirrm include/%%NVUDIR%%/profile
- at dirrm include/%%NVUDIR%%/profdirserviceprovider
- at dirrm include/%%NVUDIR%%/prefmigr
- at dirrm include/%%NVUDIR%%/prefetch
- at dirrm include/%%NVUDIR%%/pref
- at dirrm include/%%NVUDIR%%/png
- at dirrm include/%%NVUDIR%%/plugin
- at dirrm include/%%NVUDIR%%/pippki
- at dirrm include/%%NVUDIR%%/pipnss
- at dirrm include/%%NVUDIR%%/pipboot
- at dirrm include/%%NVUDIR%%/nspr/private
- at dirrm include/%%NVUDIR%%/nspr/obsolete
- at dirrm include/%%NVUDIR%%/nspr/md
- at dirrm include/%%NVUDIR%%/nspr
- at dirrm include/%%NVUDIR%%/nkcache
- at dirrm include/%%NVUDIR%%/necko2
- at dirrm include/%%NVUDIR%%/necko
- at dirrm include/%%NVUDIR%%/mork
- at dirrm include/%%NVUDIR%%/mimetype
- at dirrm include/%%NVUDIR%%/lwbrk
- at dirrm include/%%NVUDIR%%/locale
- at dirrm include/%%NVUDIR%%/libreg
- at dirrm include/%%NVUDIR%%/layout
- at dirrm include/%%NVUDIR%%/jsurl
- at dirrm include/%%NVUDIR%%/jsdebug
- at dirrm include/%%NVUDIR%%/jsconsole
- at dirrm include/%%NVUDIR%%/js
- at dirrm include/%%NVUDIR%%/jpeg
- at dirrm include/%%NVUDIR%%/java
- at dirrm include/%%NVUDIR%%/jar
- at dirrm include/%%NVUDIR%%/intl
- at dirrm include/%%NVUDIR%%/inspector
- at dirrm include/%%NVUDIR%%/imglib2
- at dirrm include/%%NVUDIR%%/htmlparser
- at dirrm include/%%NVUDIR%%/history
- at dirrm include/%%NVUDIR%%/helperAppDlg
- at dirrm include/%%NVUDIR%%/gtkxtbin
- at dirrm include/%%NVUDIR%%/gtkembedmoz
- at dirrm include/%%NVUDIR%%/gfx
- at dirrm include/%%NVUDIR%%/find
- at dirrm include/%%NVUDIR%%/filepicker
- at dirrm include/%%NVUDIR%%/exthandler
- at dirrm include/%%NVUDIR%%/extensions
- at dirrm include/%%NVUDIR%%/expat
- at dirrm include/%%NVUDIR%%/embedcomponents
- at dirrm include/%%NVUDIR%%/embed_base
- at dirrm include/%%NVUDIR%%/editor
- at dirrm include/%%NVUDIR%%/downloadmanager
- at dirrm include/%%NVUDIR%%/dom
- at dirrm include/%%NVUDIR%%/docshell
- at dirrm include/%%NVUDIR%%/dbm
- at dirrm include/%%NVUDIR%%/content
- at dirrm include/%%NVUDIR%%/composer
- at dirrm include/%%NVUDIR%%/commandhandler
- at dirrm include/%%NVUDIR%%/chardet
- at dirrm include/%%NVUDIR%%/caps
- at dirrm include/%%NVUDIR%%/browser
- at dirrm include/%%NVUDIR%%/autoconfig
- at dirrm include/%%NVUDIR%%/appshell
- at dirrm include/%%NVUDIR%%/appcomps
- at dirrm include/%%NVUDIR%%/accessibility
- at dirrm include/%%NVUDIR%%
--- nvu-0.50.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list