Fixing potential bustage in access-builtin, inspector, and transformiix (adding REQUIRES, adding newlines, etc.) so they can be added to --with-extensions=all. r=cls@seawood.org sr=hewitt@netscape.com b=75924
git-svn-id: svn://10.0.0.236/trunk@94052 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -25,9 +25,9 @@
|
||||
# Contributor(s):
|
||||
|
||||
DEPTH = ../..
|
||||
topsrcdir = ../..
|
||||
srcdir = .
|
||||
VPATH = .
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
|
||||
@@ -35,6 +35,7 @@ include $(DEPTH)/config/autoconf.mk
|
||||
MODULE = accessproxy
|
||||
XPIDL_MODULE = accessproxy
|
||||
LIBRARY_NAME = accessproxy
|
||||
REQUIRES = xpcom string docshell dom js widget necko layout uriloader gfx2 locale mozcomps
|
||||
EXPORT_LIBRARY = 1
|
||||
IS_COMPONENT = 1
|
||||
|
||||
|
||||
@@ -29,6 +29,7 @@ include $(DEPTH)/config/autoconf.mk
|
||||
MODULE=inspector
|
||||
LIBRARY_NAME=inspector_s
|
||||
SHORT_LIBNAME=inspector_s
|
||||
REQUIRES=xpcom string dom rdf rdfutil layout js widget locale gfx2 necko docshell view uriloader timer
|
||||
|
||||
CPPSRCS= \
|
||||
nsDOMDSResource.cpp \
|
||||
|
||||
@@ -357,4 +357,4 @@ inCSSValueSearch::EqualizeURL(nsAutoString* aURL)
|
||||
}
|
||||
|
||||
return NS_OK;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -635,4 +635,4 @@ inFileSearch::CountDirectoryDepth(nsIFile* aDir, PRUint32* aDepth)
|
||||
}
|
||||
|
||||
return NS_OK;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -179,4 +179,4 @@ inFlasher::GetPresShellFor(nsISupports* aThing)
|
||||
docShell->GetPresShell(&presShell);
|
||||
|
||||
return presShell;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -80,4 +80,4 @@ NS_IMETHODIMP
|
||||
inSearchItemImage::EditItem()
|
||||
{
|
||||
return NS_OK;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -73,4 +73,4 @@ inSearchLoop::TimerCallback(nsITimer *aTimer, void *aClosure)
|
||||
{
|
||||
inSearchLoop* loop = (inSearchLoop*) aClosure;
|
||||
loop->Step();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,4 +23,4 @@ public:
|
||||
NS_DECL_NSICSSDECINTHOLDER
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -432,4 +432,4 @@ nsCSSRuleDataSource::CreateLiteral(nsString& str, nsIRDFNode **aResult)
|
||||
*aResult = literal;
|
||||
NS_IF_ADDREF(*aResult);
|
||||
return NS_OK;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -65,8 +65,8 @@ nsIRDFResource* kINS_HasChildren;
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
||||
nsDOMDataSource::nsDOMDataSource() :
|
||||
mObservers(nsnull),
|
||||
mDocument(nsnull)
|
||||
mDocument(nsnull),
|
||||
mObservers(nsnull)
|
||||
{
|
||||
NS_INIT_REFCNT();
|
||||
|
||||
|
||||
@@ -30,6 +30,7 @@ MODULE = inspector
|
||||
LIBRARY_NAME = inspector
|
||||
EXPORT_LIBRARY = 1
|
||||
SHORT_LIBNAME = inspector
|
||||
REQUIRES = xpcom string layout dom widget js rdf rdfutil locale gfx2 timer necko
|
||||
IS_COMPONENT = 1
|
||||
|
||||
CPPSRCS = \
|
||||
|
||||
@@ -30,6 +30,7 @@ MODULE = transformiix
|
||||
LIBRARY_NAME = transformiix
|
||||
EXPORT_LIBRARY = 1
|
||||
SHORT_LIBNAME = t8iix
|
||||
REQUIRES = xpcom string dom docshell necko layout widget caps webbrwsr js uriloader locale xpconnect gfx2 appshell embedcomponents
|
||||
IS_COMPONENT = 1
|
||||
|
||||
|
||||
|
||||
@@ -26,6 +26,11 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
ifdef MOZ_XSL
|
||||
MODULE = transformiix
|
||||
REQUIRES = string xpcom
|
||||
endif
|
||||
|
||||
CPPSRCS = ArrayList.cpp \
|
||||
DefaultStringComparator.cpp \
|
||||
Double.cpp \
|
||||
@@ -48,4 +53,4 @@ else
|
||||
endif
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install:: $(OBJS)
|
||||
install:: $(OBJS)
|
||||
|
||||
@@ -26,10 +26,15 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
ifdef MOZ_XSL
|
||||
MODULE = transformiix
|
||||
REQUIRES = string xpcom necko
|
||||
endif
|
||||
|
||||
CPPSRCS = URIUtils.cpp
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
INCLUDES += -I$(srcdir)/../base
|
||||
|
||||
install:: $(OBJS)
|
||||
install:: $(OBJS)
|
||||
|
||||
@@ -26,6 +26,11 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
ifdef MOZ_XSL
|
||||
MODULE = transformiix
|
||||
REQUIRES = string xpcom dom layout widget
|
||||
endif
|
||||
|
||||
DIRS = dom parser util
|
||||
ifndef MOZ_XSL
|
||||
DIRS += printer
|
||||
@@ -37,4 +42,4 @@ include $(topsrcdir)/config/rules.mk
|
||||
|
||||
INCLUDES += -I$(srcdir)/../base -I$(srcdir)/dom
|
||||
|
||||
install:: $(OBJS)
|
||||
install:: $(OBJS)
|
||||
|
||||
@@ -26,6 +26,11 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
ifdef MOZ_XSL
|
||||
MODULE = transformiix
|
||||
REQUIRES = string xpcom dom layout widget necko
|
||||
endif
|
||||
|
||||
CPPSRCS = MozillaAttr.cpp \
|
||||
MozillaCDATASection.cpp \
|
||||
MozillaCharacterData.cpp \
|
||||
|
||||
@@ -26,6 +26,11 @@ VPATH = @srcdir@:@srcdir@/xmltok:@srcdir@/xmlparse
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
ifdef MOZ_XSL
|
||||
MODULE = transformiix
|
||||
REQUIRES = string xpcom necko dom layout widget webbrwsr
|
||||
endif
|
||||
|
||||
CSRCS = xmltok.c xmlrole.c xmlparse.c hashtable.c
|
||||
CPPSRCS = XMLParser.cpp
|
||||
|
||||
@@ -34,4 +39,4 @@ include $(topsrcdir)/config/rules.mk
|
||||
COMPILE_CFLAGS += -DXML_UNICODE -I$(srcdir)/xmltok
|
||||
INCLUDES += -I$(srcdir)/../../base -I$(srcdir)/../../net -I$(srcdir)/../dom -I$(srcdir)/xmlparse
|
||||
|
||||
install:: $(OBJS)
|
||||
install:: $(OBJS)
|
||||
|
||||
@@ -26,6 +26,11 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
ifdef MOZ_XSL
|
||||
MODULE = transformiix
|
||||
REQUIRES = string xpcom dom layout widget
|
||||
endif
|
||||
|
||||
CPPSRCS = DOMHelper.cpp
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
@@ -26,6 +26,11 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
ifdef MOZ_XSL
|
||||
MODULE = transformiix
|
||||
REQUIRES = string xpcom dom layout widget caps
|
||||
endif
|
||||
|
||||
CPPSRCS = AdditiveExpr.cpp \
|
||||
AttributeExpr.cpp \
|
||||
AttributeValueTemplate.cpp \
|
||||
@@ -75,4 +80,4 @@ ifdef MOZ_XSL
|
||||
INCLUDES += -I$(srcdir)
|
||||
endif
|
||||
|
||||
install:: $(OBJS)
|
||||
install:: $(OBJS)
|
||||
|
||||
@@ -28,6 +28,11 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
DIRS = functions util
|
||||
|
||||
ifdef MOZ_XSL
|
||||
MODULE = transformiix
|
||||
REQUIRES = string xpcom dom layout widget necko
|
||||
endif
|
||||
|
||||
CPPSRCS = Names.cpp \
|
||||
Numbering.cpp \
|
||||
OutputFormat.cpp \
|
||||
@@ -43,4 +48,4 @@ INCLUDES += -I$(srcdir) -I$(srcdir)/../base -I$(srcdir)/../net \
|
||||
-I$(srcdir)/../xml/printer -I$(srcdir)/../xpath -I$(srcdir)/../xslt/util \
|
||||
-I$(srcdir)/../xslt/functions
|
||||
|
||||
install:: $(OBJS)
|
||||
install:: $(OBJS)
|
||||
|
||||
@@ -26,6 +26,11 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
ifdef MOZ_XSL
|
||||
MODULE = transformiix
|
||||
REQUIRES = string xpcom dom layout widget
|
||||
endif
|
||||
|
||||
CPPSRCS = CurrentFunctionCall.cpp \
|
||||
DocumentFunctionCall.cpp \
|
||||
ElementAvailableFnCall.cpp \
|
||||
|
||||
@@ -26,6 +26,11 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
ifdef MOZ_XSL
|
||||
MODULE = transformiix
|
||||
REQUIRES = string xpcom dom layout widget
|
||||
endif
|
||||
|
||||
CPPSRCS = NodeSorter.cpp NodeStack.cpp
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
Reference in New Issue
Block a user