diff --git a/config/config.mak b/config/config.mak index f74aec2f242..e570b389171 100644 --- a/config/config.mak +++ b/config/config.mak @@ -208,15 +208,10 @@ FINAL_LINK_LIBS=$(DIST)\final-link-libs CFLAGS=$(CFLAGS) -D_IMPL_NS_APPSHELL CFLAGS=$(CFLAGS) -D_IMPL_NS_COOKIE CFLAGS=$(CFLAGS) -D_IMPL_NS_GFX -CFLAGS=$(CFLAGS) -D_IMPL_NS_HTML -CFLAGS=$(CFLAGS) -D_IMPL_NS_HTMLPARS CFLAGS=$(CFLAGS) -D_IMPL_NS_LAYOUT CFLAGS=$(CFLAGS) -D_IMPL_NS_MSG_BASE CFLAGS=$(CFLAGS) -D_IMPL_NS_PICS CFLAGS=$(CFLAGS) -D_IMPL_NS_PLUGIN -CFLAGS=$(CFLAGS) -D_IMPL_NS_RDF -CFLAGS=$(CFLAGS) -D_IMPL_NS_VIEW -CFLAGS=$(CFLAGS) -D_IMPL_NS_WEB CFLAGS=$(CFLAGS) -D_IMPL_NS_WIDGET !endif diff --git a/config/config.mk b/config/config.mk index 5e65b6b73f9..51d3f601828 100644 --- a/config/config.mk +++ b/config/config.mk @@ -421,15 +421,10 @@ DEFINES += \ -D_IMPL_NS_APPSHELL \ -D_IMPL_NS_COOKIE \ -D_IMPL_NS_GFX \ - -D_IMPL_NS_HTML \ - -D_IMPL_NS_HTMLPARS \ -D_IMPL_NS_LAYOUT \ -D_IMPL_NS_MSG_BASE \ -D_IMPL_NS_PICS \ -D_IMPL_NS_PLUGIN \ - -D_IMPL_NS_RDF \ - -D_IMPL_NS_VIEW \ - -D_IMPL_NS_WEB \ -D_IMPL_NS_WIDGET \ $(NULL) endif diff --git a/config/mac/DefinesMozilla.h b/config/mac/DefinesMozilla.h index de692a5635b..a93b562cfad 100644 --- a/config/mac/DefinesMozilla.h +++ b/config/mac/DefinesMozilla.h @@ -52,8 +52,6 @@ // 98-09-25 mlm - turn on javascript thread safety #define JS_THREADSAFE 1 -#define USE_NSREG 1 - // External DTD support for XML #define XML_DTD diff --git a/content/build/Makefile.in b/content/build/Makefile.in index 7de39561c15..32b5a3daadb 100644 --- a/content/build/Makefile.in +++ b/content/build/Makefile.in @@ -121,8 +121,6 @@ LDFLAGS += -Wl,-LD_LAYOUT:lgot_buffer=80 endif endif -DEFINES += -D_IMPL_NS_HTML - LOCAL_INCLUDES = -I$(srcdir)/../base/src \ -I$(srcdir)/../html/base/src \ -I$(srcdir)/../html/style/src \ diff --git a/content/build/makefile.win b/content/build/makefile.win index 471b33a8cea..e69de29bb2d 100644 --- a/content/build/makefile.win +++ b/content/build/makefile.win @@ -1,114 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\.. - -DEFINES=-D_IMPL_NS_HTML - -CPP_OBJS= \ - .\$(OBJDIR)\nsContentDLF.obj \ - .\$(OBJDIR)\nsContentModule.obj \ - .\$(OBJDIR)\nsContentHTTPStartup.obj \ - $(NULL) - -EXPORTS=nsContentCID.h - -MODULE=content -LIBRARY_NAME=gkcontent -MODULE_NAME=nsContentModule -REQUIRES = xpcom \ - string \ - widget \ - necko \ - rdf \ - docshell \ - dom \ - htmlparser \ - uriloader \ - webshell \ - locale \ - unicharutil \ - lwbrk \ - js \ - pref \ - layout \ - gfx \ - layout_xul \ - content_xul \ - caps \ - xpconnect \ - imglib2 \ - $(NULL) - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -LINCS=-I..\html\base\src -I..\base\src \ - -I..\html\style\src \ - -I..\xul\content\src \ - -I..\xul\templates\src \ - -I..\xul\base\src \ - -I..\events\src \ - -I..\html\content\src \ - -I..\html\document\src - -# These are the libraries we need to link with to create the dll -SUB_LIBRARIES=\ - $(DIST)\lib\contentbase_s.lib \ - $(DIST)\lib\contenthtmlcontent_s.lib \ - $(DIST)\lib\contenthtmldoc_s.lib \ - $(DIST)\lib\contenthtmlstyle_s.lib \ - $(DIST)\lib\contentxmlcontent_s.lib \ - $(DIST)\lib\contentxmldoc_s.lib \ - $(DIST)\lib\contentxsldoc_s.lib \ - $(DIST)\lib\contentxulcontent_s.lib \ - $(DIST)\lib\contentxuldocument_s.lib \ - $(DIST)\lib\contentxultemplates_s.lib \ - $(DIST)\lib\contentxbl_s.lib \ -!ifdef MOZ_SVG - $(DIST)\lib\contentsvgdoc_s.lib \ - $(DIST)\lib\contentsvg_s.lib \ -!endif - $(DIST)\lib\contentevents_s.lib \ - $(DIST)\lib\contentshared_s.lib \ - $(NULL) - -LLIBS=\ - $(DIST)\lib\xpcom.lib \ - $(DIST)\lib\gkgfx.lib \ - $(DIST)\lib\unicharutil_s.lib \ - $(DIST)\lib\js32$(VERSION_NUMBER).lib \ -!if defined(MOZ_PERF) - $(DIST)\lib\util.lib \ -!endif - $(LIBNSPR) - -include <$(DEPTH)\config\rules.mak> - -export:: gbdate.h - -gbdate.h:: gbdate.pl - echo +++ make: Creating $@ - $(PERL) gbdate.pl > gbdate.h - - diff --git a/content/events/src/Makefile.in b/content/events/src/Makefile.in index 042a91e5694..f6a8586b2c9 100644 --- a/content/events/src/Makefile.in +++ b/content/events/src/Makefile.in @@ -60,8 +60,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/content/events/src/makefile.win b/content/events/src/makefile.win index 18ce650b97f..e69de29bb2d 100644 --- a/content/events/src/makefile.win +++ b/content/events/src/makefile.win @@ -1,74 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\.. - - - -LIBRARY_NAME=contentevents_s -MODULE=content -REQUIRES = xpcom \ - string \ - dom \ - js \ - locale \ - widget \ - caps \ - xpconnect \ - docshell \ - webshell \ - pref \ - htmlparser \ - view \ - gfx \ - layout \ - layout_xul \ - necko \ - unicharutil \ - $(NULL) - -include <$(DEPTH)\config\config.mak> - - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -CPP_OBJS= .\$(OBJDIR)\nsEventListenerManager.obj \ - .\$(OBJDIR)\nsEventStateManager.obj \ - .\$(OBJDIR)\nsDOMEvent.obj \ - .\$(OBJDIR)\nsDOMMutationEvent.obj \ - .\$(OBJDIR)\nsPrivateTextRange.obj \ - $(NULL) - - -LINCS= -I..\..\html\base\src -I..\..\xul\content\src -I..\..\base\src - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/content/html/content/src/Makefile.in b/content/html/content/src/Makefile.in index 78bd950799a..0fe7bf23de4 100644 --- a/content/html/content/src/Makefile.in +++ b/content/html/content/src/Makefile.in @@ -129,8 +129,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/content/html/content/src/makefile.win b/content/html/content/src/makefile.win index ac93a77169e..e69de29bb2d 100644 --- a/content/html/content/src/makefile.win +++ b/content/html/content/src/makefile.win @@ -1,141 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME = contenthtmlcontent_s -MODULE=content -REQUIRES = xpcom \ - string \ - widget \ - dom \ - js \ - locale \ - webshell \ - htmlparser \ - necko \ - view \ - pref \ - docshell \ - uriloader \ - xpconnect \ - caps \ - editor \ - gfx2 \ - imglib2 \ - layout \ - gfx \ - content_xul \ - mimetype \ - exthandler \ - unicharutil \ - uconv \ - layout_xul \ - intl \ - $(NULL) -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN -!if defined(XP_NEW_SELECTION) -DEFINES = $(DEFINES) -DXP_NEW_SELECTION -!endif - -EXPORTS= \ - nsIAttributeContent.h \ - nsIHTMLTableCellElement.h \ - nsIHTMLTableColElement.h \ - $(NULL) - -CPP_OBJS= \ - .\$(OBJDIR)\nsAttributeContent.obj \ - .\$(OBJDIR)\nsGenericHTMLElement.obj \ - .\$(OBJDIR)\nsGenericDOMHTMLCollection.obj \ - .\$(OBJDIR)\GenericElementCollection.obj \ - .\$(OBJDIR)\nsFormSubmission.obj \ - .\$(OBJDIR)\nsHTMLAnchorElement.obj \ - .\$(OBJDIR)\nsHTMLAppletElement.obj \ - .\$(OBJDIR)\nsHTMLAreaElement.obj \ - .\$(OBJDIR)\nsHTMLBRElement.obj \ - .\$(OBJDIR)\nsHTMLBaseFontElement.obj \ - .\$(OBJDIR)\nsHTMLBodyElement.obj \ - .\$(OBJDIR)\nsHTMLButtonElement.obj \ - .\$(OBJDIR)\nsHTMLDListElement.obj \ - .\$(OBJDIR)\nsHTMLDelElement.obj \ - .\$(OBJDIR)\nsHTMLDirectoryElement.obj \ - .\$(OBJDIR)\nsHTMLDivElement.obj \ - .\$(OBJDIR)\nsHTMLFieldSetElement.obj \ - .\$(OBJDIR)\nsHTMLFontElement.obj \ - .\$(OBJDIR)\nsHTMLFormElement.obj \ - .\$(OBJDIR)\nsHTMLFrameElement.obj \ - .\$(OBJDIR)\nsHTMLFrameSetElement.obj \ - .\$(OBJDIR)\nsHTMLHRElement.obj \ - .\$(OBJDIR)\nsHTMLHeadElement.obj \ - .\$(OBJDIR)\nsHTMLHeadingElement.obj \ - .\$(OBJDIR)\nsHTMLHtmlElement.obj \ - .\$(OBJDIR)\nsHTMLIFrameElement.obj \ - .\$(OBJDIR)\nsHTMLImageElement.obj \ - .\$(OBJDIR)\nsHTMLInputElement.obj \ - .\$(OBJDIR)\nsHTMLInsElement.obj \ - .\$(OBJDIR)\nsHTMLLIElement.obj \ - .\$(OBJDIR)\nsHTMLLabelElement.obj \ - .\$(OBJDIR)\nsHTMLLegendElement.obj \ - .\$(OBJDIR)\nsHTMLLinkElement.obj \ - .\$(OBJDIR)\nsHTMLMapElement.obj \ - .\$(OBJDIR)\nsHTMLMenuElement.obj \ - .\$(OBJDIR)\nsHTMLMetaElement.obj \ - .\$(OBJDIR)\nsHTMLModElement.obj \ - .\$(OBJDIR)\nsHTMLOListElement.obj \ - .\$(OBJDIR)\nsHTMLObjectElement.obj \ - .\$(OBJDIR)\nsHTMLOptionElement.obj \ - .\$(OBJDIR)\nsHTMLOptGroupElement.obj \ - .\$(OBJDIR)\nsHTMLParagraphElement.obj \ - .\$(OBJDIR)\nsHTMLPreElement.obj \ - .\$(OBJDIR)\nsHTMLQuoteElement.obj \ - .\$(OBJDIR)\nsHTMLScriptElement.obj \ - .\$(OBJDIR)\nsHTMLSelectElement.obj \ - .\$(OBJDIR)\nsHTMLSharedLeafElement.obj \ - .\$(OBJDIR)\nsHTMLSpanElement.obj \ - .\$(OBJDIR)\nsHTMLStyleElement.obj \ - .\$(OBJDIR)\nsHTMLTableElement.obj \ - .\$(OBJDIR)\nsHTMLTableCaptionElement.obj \ - .\$(OBJDIR)\nsHTMLTableCellElement.obj \ - .\$(OBJDIR)\nsHTMLTableColElement.obj \ - .\$(OBJDIR)\nsHTMLTableRowElement.obj \ - .\$(OBJDIR)\nsHTMLTableSectionElement.obj \ - .\$(OBJDIR)\nsHTMLTextAreaElement.obj \ - .\$(OBJDIR)\nsHTMLTitleElement.obj \ - .\$(OBJDIR)\nsHTMLUListElement.obj \ - .\$(OBJDIR)\nsHTMLUnknownElement.obj \ - $(NULL) - -LINCS= -I..\..\style\src \ - -I..\..\..\base\src -I..\..\base\src \ - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/content/html/document/src/Makefile.in b/content/html/document/src/Makefile.in index 04583f09476..7dd94bce7d3 100644 --- a/content/html/document/src/Makefile.in +++ b/content/html/document/src/Makefile.in @@ -78,8 +78,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/content/html/document/src/makefile.win b/content/html/document/src/makefile.win index 4671502c6b8..e69de29bb2d 100644 --- a/content/html/document/src/makefile.win +++ b/content/html/document/src/makefile.win @@ -1,92 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=contenthtmldoc_s -MODULE=content -REQUIRES = xpcom \ - string \ - widget \ - dom \ - necko \ - htmlparser \ - locale \ - view \ - js \ - intl \ - webshell \ - docshell \ - caps \ - util \ - uconv \ - pref \ - uriloader \ - rdf \ - chardet \ - nkcache \ - lwbrk \ - gfx2 \ - imglib2 \ - xpconnect \ - unicharutil \ - layout \ - gfx \ - bookmarks \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN -!if defined(XP_NEW_SELECTION) -DEFINES = $(DEFINES) -DXP_NEW_SELECTION -!endif - -CPP_OBJS= \ - .\$(OBJDIR)\nsHTMLContentSink.obj \ - .\$(OBJDIR)\nsHTMLDocument.obj \ - .\$(OBJDIR)\nsHTMLFragmentContentSink.obj \ - .\$(OBJDIR)\nsImageDocument.obj \ - .\$(OBJDIR)\nsMarkupDocument.obj \ - .\$(OBJDIR)\nsWyciwygChannel.obj \ - .\$(OBJDIR)\nsWyciwygProtocolHandler.obj \ - $(NULL) - -EXPORTS = \ - nsIHTMLDocument.h \ - nsIHTMLContentContainer.h \ - $(NULL) - -LINCS=-I..\..\base\src \ - -I..\..\content\src \ - -I..\..\..\base\src - - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/content/html/style/src/Makefile.in b/content/html/style/src/Makefile.in index 745327dd49f..8a30e449fce 100644 --- a/content/html/style/src/Makefile.in +++ b/content/html/style/src/Makefile.in @@ -94,8 +94,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/content/html/style/src/makefile.win b/content/html/style/src/makefile.win index cfba94f24f0..e69de29bb2d 100644 --- a/content/html/style/src/makefile.win +++ b/content/html/style/src/makefile.win @@ -1,104 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=contenthtmlstyle_s -MODULE=content -REQUIRES = xpcom \ - string \ - dom \ - widget \ - caps \ - locale \ - js \ - necko \ - webshell \ - htmlparser \ - uconv \ - unicharutil \ - xpconnect \ - layout \ - gfx \ - content_xul \ - view \ - intl \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -EXPORTS = \ - nsCSSValue.h \ - nsICSSStyleRuleProcessor.h \ - nsICSSRule.h \ - nsICSSGroupRule.h \ - nsICSSStyleRule.h \ - nsICSSImportRule.h \ - nsICSSMediaRule.h \ - nsICSSNameSpaceRule.h \ - nsCSSDeclaration.h \ - nsICSSOMFactory.h \ - nsIHTMLCSSStyleSheet.h \ - nsDOMCSSDeclaration.h \ - nsIInspectorCSSUtils.h \ - $(NULL) - -CPP_OBJS = \ - .\$(OBJDIR)\nsHTMLStyleSheet.obj \ - .\$(OBJDIR)\nsCSSDeclaration.obj \ - .\$(OBJDIR)\nsCSSLoader.obj \ - .\$(OBJDIR)\nsCSSOMFactory.obj \ - .\$(OBJDIR)\nsCSSParser.obj \ - .\$(OBJDIR)\nsCSSScanner.obj \ - .\$(OBJDIR)\nsCSSRule.obj \ - .\$(OBJDIR)\nsCSSStyleRule.obj \ - .\$(OBJDIR)\nsCSSRules.obj \ - .\$(OBJDIR)\nsCSSStyleSheet.obj \ - .\$(OBJDIR)\nsCSSValue.obj \ - .\$(OBJDIR)\nsHTMLAttributes.obj \ - .\$(OBJDIR)\nsHTMLCSSStyleSheet.obj \ - .\$(OBJDIR)\nsDOMCSSAttrDeclaration.obj \ - .\$(OBJDIR)\nsDOMCSSDeclaration.obj \ - .\$(OBJDIR)\nsDOMCSSValueList.obj \ - .\$(OBJDIR)\nsComputedDOMStyle.obj \ - .\$(OBJDIR)\nsInspectorCSSUtils.obj \ - .\$(OBJDIR)\nsROCSSPrimitiveValue.obj \ - .\$(OBJDIR)\nsDOMCSSRect.obj \ - .\$(OBJDIR)\nsDOMCSSRGBColor.obj \ - $(NULL) - -LINCS= -I..\..\..\base\src \ - -I..\..\..\xul\content\src \ - -I..\..\..\xul\base\src \ - -I..\..\base\src -I..\..\content\src - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/content/svg/content/src/Makefile.in b/content/svg/content/src/Makefile.in index eca902781e5..517cde76cf1 100644 --- a/content/svg/content/src/Makefile.in +++ b/content/svg/content/src/Makefile.in @@ -90,8 +90,6 @@ CXXFLAGS += $(MOZ_LIBART_CFLAGS) include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - INCLUDES += \ -I$(srcdir)/../../../shared/public \ diff --git a/content/svg/content/src/makefile.win b/content/svg/content/src/makefile.win index e8ee876c312..e69de29bb2d 100644 --- a/content/svg/content/src/makefile.win +++ b/content/svg/content/src/makefile.win @@ -1,111 +0,0 @@ -#!nmake -# -# 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 Crocodile Clips Ltd code. -# -# The Initial Developer of the Original Code is -# Crocodile Clips Ltd. Portions created by Crocodile Clips are -# Copyright (C) 2001 Crocodile Clips Ltd. All -# Rights Reserved. -# -# Contributor(s): -# -# Alex Fritze -# - -DEPTH=..\..\..\.. - -LIBRARY_NAME=contentsvg_s -MODULE=raptor -REQUIRES = \ - xpcom \ - string \ - layout \ - content \ - widget \ - gfx \ - dom \ - js \ - locale \ - htmlparser \ - webshell \ - necko \ - view \ - libart_lgpl \ - xpconnect \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - - -CPP_OBJS= \ - .\$(OBJDIR)\nsSVGAnimatedLength.obj \ - .\$(OBJDIR)\nsSVGAnimatedRect.obj \ - .\$(OBJDIR)\nsSVGAnimatedTransformList.obj \ - .\$(OBJDIR)\nsSVGAttributes.obj \ - .\$(OBJDIR)\nsSVGCircleElement.obj \ - .\$(OBJDIR)\nsSVGElement.obj \ - .\$(OBJDIR)\nsSVGElementFactory.obj \ - .\$(OBJDIR)\nsSVGEllipseElement.obj \ - .\$(OBJDIR)\nsSVGForeignObjectElement.obj \ - .\$(OBJDIR)\nsSVGGElement.obj \ - .\$(OBJDIR)\nsSVGGenericStringValue.obj \ - .\$(OBJDIR)\nsSVGGraphicElement.obj \ - .\$(OBJDIR)\nsSVGLength.obj \ - .\$(OBJDIR)\nsSVGLineElement.obj \ - .\$(OBJDIR)\nsSVGMatrix.obj \ - .\$(OBJDIR)\nsSVGPathDataParser.obj \ - .\$(OBJDIR)\nsSVGPathElement.obj \ - .\$(OBJDIR)\nsSVGPathSeg.obj \ - .\$(OBJDIR)\nsSVGPathSegList.obj \ - .\$(OBJDIR)\nsSVGPoint.obj \ - .\$(OBJDIR)\nsSVGPointList.obj \ - .\$(OBJDIR)\nsSVGPolygonElement.obj \ - .\$(OBJDIR)\nsSVGPolylineElement.obj \ - .\$(OBJDIR)\nsSVGRect.obj \ - .\$(OBJDIR)\nsSVGRectElement.obj \ - .\$(OBJDIR)\nsSVGSVGElement.obj \ - .\$(OBJDIR)\nsSVGStyleValue.obj \ - .\$(OBJDIR)\nsSVGTransform.obj \ - .\$(OBJDIR)\nsSVGTransformList.obj \ - .\$(OBJDIR)\nsSVGValue.obj \ - $(NULL) - -EXPORTS = \ - nsISVGAttribute.h \ - nsISVGValue.h \ - nsISVGStyleValue.h \ - $(NULL) - -LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I$(PUBLIC)\js \ - -I..\..\..\shared\public -I..\..\..\html\base\src -I$(PUBLIC)\dom \ - -I..\..\..\html\document\src \ - -I$(PUBLIC)\netlib \ - -I$(PUBLIC)\pref \ - -I..\..\..\xml\document\src \ - -I..\..\..\base\src \ - -I..\..\..\xml\content\src \ - -I..\..\..\..\layout\svg\base\src\ \ - $(NULL) - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/content/svg/document/src/Makefile.in b/content/svg/document/src/Makefile.in index 2aaa60d2e81..f52acd99114 100644 --- a/content/svg/document/src/Makefile.in +++ b/content/svg/document/src/Makefile.in @@ -53,8 +53,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - INCLUDES += \ -I$(srcdir) \ -I$(srcdir)/../../../xml/document/src \ diff --git a/content/svg/document/src/makefile.win b/content/svg/document/src/makefile.win index 636a11dbe82..e69de29bb2d 100644 --- a/content/svg/document/src/makefile.win +++ b/content/svg/document/src/makefile.win @@ -1,72 +0,0 @@ -#!nmake -# -# 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 Crocodile Clips Ltd code. -# -# The Initial Developer of the Original Code is -# Crocodile Clips Ltd. Portions created by Crocodile Clips are -# Copyright (C) 2001 Crocodile Clips Ltd. All -# Rights Reserved. -# -# Contributor(s): -# -# Alex Fritze -# - -DEPTH=..\..\..\.. - -LIBRARY_NAME=contentsvgdoc_s -MODULE=raptor - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN -REQUIRES = content \ - layout \ - widget \ - xpcom \ - string \ - gfx \ - dom \ - webshell \ - htmlparser \ - lwbrk \ - necko \ - js \ - caps \ - locale \ - view \ - xpconnect \ - $(null) - - -CPP_OBJS= \ - .\$(OBJDIR)\nsSVGDocument.obj \ - $(NULL) - -LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I$(PUBLIC)\js \ - -I..\..\..\html\document\src -I..\..\..\html\base\src \ - -I..\..\..\xml\document\src \ - -I..\..\..\base\src \ - $(NULL) - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib - diff --git a/content/xbl/src/Makefile.in b/content/xbl/src/Makefile.in index 1cb1c09401a..898acf7f533 100644 --- a/content/xbl/src/Makefile.in +++ b/content/xbl/src/Makefile.in @@ -94,8 +94,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/content/xbl/src/makefile.win b/content/xbl/src/makefile.win index 9dd65cc4e7c..e69de29bb2d 100644 --- a/content/xbl/src/makefile.win +++ b/content/xbl/src/makefile.win @@ -1,108 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\.. - -LIBRARY_NAME=contentxbl_s -MODULE=content -REQUIRES = xpcom \ - string \ - js \ - dom \ - widget \ - view \ - caps \ - layout_xul \ - htmlparser \ - necko \ - xpconnect \ - pref \ - docshell \ - webshell \ - chrome \ - lwbrk \ - gfx2 \ - imglib2 \ - layout \ - gfx \ - rdf \ - content_xul \ - unicharutil \ - locale \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -CPP_OBJS= \ - .\$(OBJDIR)\nsXBLBinding.obj \ - .\$(OBJDIR)\nsXBLPrototypeBinding.obj \ - .\$(OBJDIR)\nsXBLPrototypeResources.obj \ - .\$(OBJDIR)\nsXBLResourceLoader.obj \ - .\$(OBJDIR)\nsXBLDocumentInfo.obj \ - .\$(OBJDIR)\nsXBLContentSink.obj \ - .\$(OBJDIR)\nsXBLEventHandler.obj \ - .\$(OBJDIR)\nsXBLWindowHandler.obj \ - .\$(OBJDIR)\nsXBLWindowKeyHandler.obj \ - .\$(OBJDIR)\nsXBLWindowDragHandler.obj \ - .\$(OBJDIR)\nsXBLKeyHandler.obj \ - .\$(OBJDIR)\nsXBLMouseHandler.obj \ - .\$(OBJDIR)\nsXBLMouseMotionHandler.obj \ - .\$(OBJDIR)\nsXBLMutationHandler.obj \ - .\$(OBJDIR)\nsXBLDragHandler.obj \ - .\$(OBJDIR)\nsXBLFocusHandler.obj \ - .\$(OBJDIR)\nsXBLXULHandler.obj \ - .\$(OBJDIR)\nsXBLScrollHandler.obj \ - .\$(OBJDIR)\nsXBLFormHandler.obj \ - .\$(OBJDIR)\nsXBLLoadHandler.obj \ - .\$(OBJDIR)\nsXBLContextMenuHandler.obj \ - .\$(OBJDIR)\nsXBLCustomHandler.obj \ - .\$(OBJDIR)\nsXBLPrototypeHandler.obj \ - .\$(OBJDIR)\nsXBLService.obj \ - .\$(OBJDIR)\nsBindingManager.obj \ - .\$(OBJDIR)\nsXBLInsertionPoint.obj \ - .\$(OBJDIR)\nsXBLProtoImplProperty.obj \ - .\$(OBJDIR)\nsXBLProtoImplMethod.obj \ - .\$(OBJDIR)\nsXBLProtoImplField.obj \ - .\$(OBJDIR)\nsXBLProtoImpl.obj \ - $(NULL) - -EXPORTS = \ - $(NULL) - -LINCS=-I..\..\html\style\src -I..\..\html\base\src \ - -I..\..\html\document\src \ - -I..\..\xml\document\src \ - -I..\..\xul\content\src \ - -I..\..\base\src \ - $(NULL) - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/content/xml/content/src/Makefile.in b/content/xml/content/src/Makefile.in index 40945f05062..24097b6d634 100644 --- a/content/xml/content/src/Makefile.in +++ b/content/xml/content/src/Makefile.in @@ -59,8 +59,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - INCLUDES += \ -I$(srcdir)/../../../base/src \ $(NULL) diff --git a/content/xml/content/src/makefile.win b/content/xml/content/src/makefile.win index f99833b8dea..e69de29bb2d 100644 --- a/content/xml/content/src/makefile.win +++ b/content/xml/content/src/makefile.win @@ -1,71 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=contentxmlcontent_s -MODULE=content -REQUIRES = xpcom \ - string \ - js \ - dom \ - widget \ - necko \ - caps \ - webshell \ - docshell \ - htmlparser \ - xpconnect \ - layout \ - gfx \ - unicharutil \ - pref \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -CPP_OBJS= \ - .\$(OBJDIR)\nsXMLElement.obj \ - .\$(OBJDIR)\nsXMLCDATASection.obj \ - .\$(OBJDIR)\nsXMLProcessingInstruction.obj \ - .\$(OBJDIR)\nsXMLEntity.obj \ - .\$(OBJDIR)\nsXMLNotation.obj \ - .\$(OBJDIR)\nsXMLNamedNodeMap.obj \ - $(NULL) - -LINCS= \ - -I..\..\..\base\src \ - $(NULL) - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - $(MAKE_INSTALL) xhtml11.dtd $(DIST)\bin\res\dtd - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib - rm -f $(DIST)\bin\res\dtd\xhtml11.dtd diff --git a/content/xml/document/src/Makefile.in b/content/xml/document/src/Makefile.in index c52d84b1d29..c2d2b6fe0f6 100644 --- a/content/xml/document/src/Makefile.in +++ b/content/xml/document/src/Makefile.in @@ -64,8 +64,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/content/xml/document/src/makefile.win b/content/xml/document/src/makefile.win index e98c2591faf..e69de29bb2d 100644 --- a/content/xml/document/src/makefile.win +++ b/content/xml/document/src/makefile.win @@ -1,78 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=contentxmldoc_s -MODULE=content -REQUIRES = xpcom \ - string \ - js \ - dom \ - widget \ - caps \ - htmlparser \ - necko \ - view \ - docshell \ - webshell \ - uriloader \ - pref \ - xpconnect \ - uconv \ - chardet \ - lwbrk \ - exthandler \ - mimetype \ - gfx \ - layout \ - unicharutil \ - windowwatcher \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -CPP_OBJS= \ - .\$(OBJDIR)\nsXMLContentSink.obj \ - .\$(OBJDIR)\nsXMLDocument.obj \ - .\$(OBJDIR)\nsFIXptr.obj \ - $(NULL) - -EXPORTS = \ - $(NULL) - -LINCS=-I..\..\..\html\base\src \ - -I..\..\..\html\document\src \ - -I..\..\..\xul\content\src -I..\..\..\xsl\document\src \ - -I..\..\..\base\src - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/content/xsl/document/src/Makefile.in b/content/xsl/document/src/Makefile.in index 205b99e96f1..ada81a0412f 100755 --- a/content/xsl/document/src/Makefile.in +++ b/content/xsl/document/src/Makefile.in @@ -38,8 +38,6 @@ REQUIRES = xpcom \ include $(topsrcdir)/config/config.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/content/xsl/document/src/makefile.win b/content/xsl/document/src/makefile.win index 6638979308a..e69de29bb2d 100644 --- a/content/xsl/document/src/makefile.win +++ b/content/xsl/document/src/makefile.win @@ -1,62 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME = contentxsldoc_s -MODULE = content - -REQUIRES = xpcom \ - string \ - htmlparser \ - view \ - widget \ - dom \ - necko \ - layout \ - gfx \ - content \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -CPP_OBJS= \ - .\$(OBJDIR)\nsXSLContentSink.obj \ - .\$(OBJDIR)\nsTransformMediator.obj \ - $(NULL) - -LINCS= -I..\..\..\html\style\src -I..\..\..\html\base\src \ - -I..\..\..\html\content\src -I..\..\..\html\document\src \ - -I..\..\..\xul\content\src -I..\..\..\xml\document\src \ - -I..\..\..\base\src - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/content/xul/content/src/Makefile.in b/content/xul/content/src/Makefile.in index ba1e56f1f2c..d540e5b1648 100644 --- a/content/xul/content/src/Makefile.in +++ b/content/xul/content/src/Makefile.in @@ -62,8 +62,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/content/xul/content/src/makefile.win b/content/xul/content/src/makefile.win index b8430a0c398..e69de29bb2d 100644 --- a/content/xul/content/src/makefile.win +++ b/content/xul/content/src/makefile.win @@ -1,71 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=contentxulcontent_s -MODULE=content_xul -REQUIRES = xpcom \ - string \ - widget \ - htmlparser \ - necko \ - dom \ - js \ - caps \ - rdf \ - xpconnect \ - locale \ - lwbrk \ - webshell \ - layout \ - layout_xul \ - view \ - gfx \ - content \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -CPP_OBJS= \ - .\$(OBJDIR)\nsRDFDOMNodeList.obj \ - .\$(OBJDIR)\nsXULAttributeValue.obj \ - .\$(OBJDIR)\nsXULAttributes.obj \ - .\$(OBJDIR)\nsXULElement.obj \ - .\$(OBJDIR)\nsXULPopupListener.obj \ - $(NULL) - -LINCS= \ - -I..\..\document\src -I..\..\..\xml\content\src \ - -I..\..\..\base\src - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/content/xul/document/src/Makefile.in b/content/xul/document/src/Makefile.in index 568cfc8f817..7e959d59b06 100644 --- a/content/xul/document/src/Makefile.in +++ b/content/xul/document/src/Makefile.in @@ -71,8 +71,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/content/xul/document/src/makefile.win b/content/xul/document/src/makefile.win index 42cfa331f27..e69de29bb2d 100644 --- a/content/xul/document/src/makefile.win +++ b/content/xul/document/src/makefile.win @@ -1,84 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=contentxuldocument_s -MODULE=content_xul -REQUIRES = xpcom \ - string \ - exthandler \ - mimetype \ - widget \ - dom \ - rdf \ - js \ - xpconnect \ - caps \ - locale \ - view \ - necko \ - uriloader \ - htmlparser \ - lwbrk \ - chrome \ - docshell \ - pref \ - layout \ - gfx \ - layout_xul \ - content \ - webshell \ - unicharutil \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -EXPORTS = \ - $(NULL) - -CPP_OBJS= \ - .\$(OBJDIR)\nsElementMap.obj \ - .\$(OBJDIR)\nsXULCommandDispatcher.obj \ - .\$(OBJDIR)\nsXULContentSink.obj \ - .\$(OBJDIR)\nsXULControllers.obj \ - .\$(OBJDIR)\nsXULDocument.obj \ - .\$(OBJDIR)\nsXULPrototypeCache.obj \ - .\$(OBJDIR)\nsXULPrototypeDocument.obj \ - $(NULL) - -LINCS=\ - -I..\..\..\html\style\src -I..\..\..\html\base\src \ - -I..\..\..\html\document\src -I..\..\content\src -I..\..\templates\src \ - -I..\..\..\base\src - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/content/xul/templates/src/Makefile.in b/content/xul/templates/src/Makefile.in index d2c6eb9f2c7..49008c77db9 100644 --- a/content/xul/templates/src/Makefile.in +++ b/content/xul/templates/src/Makefile.in @@ -78,8 +78,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/content/xul/templates/src/makefile.win b/content/xul/templates/src/makefile.win index 7187e6addfd..e69de29bb2d 100644 --- a/content/xul/templates/src/makefile.win +++ b/content/xul/templates/src/makefile.win @@ -1,89 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=contentxultemplates_s -MODULE=content_xul -REQUIRES = xpcom \ - string \ - js \ - xpconnect \ - caps \ - widget \ - dom \ - rdf \ - necko \ - locale \ - unicharutil \ - layout \ - gfx \ - htmlparser \ - layout_xul \ - content \ - webshell \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -CPP_OBJS= \ - .\$(OBJDIR)\nsClusterKey.obj \ - .\$(OBJDIR)\nsClusterKeySet.obj \ - .\$(OBJDIR)\nsConflictSet.obj \ - .\$(OBJDIR)\nsContentSupportMap.obj \ - .\$(OBJDIR)\nsContentTagTestNode.obj \ - .\$(OBJDIR)\nsContentTestNode.obj \ - .\$(OBJDIR)\nsInstantiationNode.obj \ - .\$(OBJDIR)\nsTreeRowTestNode.obj \ - .\$(OBJDIR)\nsTreeRows.obj \ - .\$(OBJDIR)\nsRDFConInstanceTestNode.obj \ - .\$(OBJDIR)\nsRDFConMemberTestNode.obj \ - .\$(OBJDIR)\nsRDFPropertyTestNode.obj \ - .\$(OBJDIR)\nsResourceSet.obj \ - .\$(OBJDIR)\nsRuleNetwork.obj \ - .\$(OBJDIR)\nsTemplateMatch.obj \ - .\$(OBJDIR)\nsTemplateMatchSet.obj \ - .\$(OBJDIR)\nsTemplateRule.obj \ - .\$(OBJDIR)\nsXULContentBuilder.obj \ - .\$(OBJDIR)\nsXULContentUtils.obj \ - .\$(OBJDIR)\nsXULTreeBuilder.obj \ - .\$(OBJDIR)\nsXULSortService.obj \ - .\$(OBJDIR)\nsXULTemplateBuilder.obj \ - $(NULL) - - -LINCS= \ - -I..\..\..\html\style\src -I..\..\..\html\base\src \ - -I..\..\..\html\document\src -I..\..\content\src \ - -I..\..\..\base\src - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/docshell/macbuild/docshell.xml b/docshell/macbuild/docshell.xml index 6bd0b71a37c..e69de29bb2d 100644 --- a/docshell/macbuild/docshell.xml +++ b/docshell/macbuild/docshell.xml @@ -1,2322 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -]> - - - - - docshell.shlb - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path:: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:::dist: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnamedocshell.shlb - OutputDirectory - Path: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathsfalse - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.gc - CompilerGameCode Converter - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.l - CompilerFlex Preprocessor - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.y - CompilerBison Preprocessor - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - - - CacheModDatesfalse - ActivateBrowserfalse - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - - - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint1 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamedocshellSharedPrefix.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline1 - MWFrontEnd_C_useRTTI0 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse0 - MWFrontEnd_C_direct_to_som0 - MWFrontEnd_C_som_env_check0 - MWFrontEnd_C_alwaysinline0 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl1 - MWWarning_C_warn_possunwant1 - MWWarning_C_warn_unusedvar1 - MWWarning_C_warn_unusedarg1 - MWWarning_C_warn_extracomma1 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password263jzwcn63nthc2ÀÑ“( - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameApple Applet Runner - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_useVM1 - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Depricated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_peephole0 - MWCodeGen_PPC_processorspecific0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_vrsave0 - - - MWCodeGen_MachO_structalignmentPPC - MWCodeGen_MachO_tracebacktablesNone - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_profiler0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_processorspecific0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vrsave1 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_implicit_templates1 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname__NSInitialize - MWLinker_PPC_mainname - MWLinker_PPC_termname__NSTerminate - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_stacksize64 - MWProject_MachO_stackaddress0 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - - - MWPEF_exportsPragma - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnameWEB_DLL - MWPEF_collapsereloads0 - - - MWProject_PPC_typeSharedLibrary - MWProject_PPC_outfiledocshell.shlb - MWProject_PPC_filecreatorMOZZ - MWProject_PPC_filetypeshlb - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_machinecodelisting0 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_syminfo0 - MWCodeGen_X86_codeviewinfo1 - MWCodeGen_X86_extinst_cmov_fcomi0 - MWCodeGen_X86_extinst_sse0 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showSourcefalse - PDisasmX86_showHextrue - PDisasmX86_showRelocationtrue - PDisasmX86_showCommentsfalse - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showDatatrue - PDisasmX86_showRawfalse - PDisasmX86_verbosefalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV1 - - - MWProject_X86_typeApplication - MWProject_X86_outfilenoname.exe - MWProject_X86_baseaddress4194304 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWProject_X86_importlib - xpidl Settings - 0001000101000000000000000000000000000000000000000000000000000000 - 0000000000000000 - - - - - Name - InterfacesStubs - MacOS - Library - - - - Name - NSRuntime.shlb - MacOS - Library - - - - Name - NSStdLib.shlb - MacOS - Library - - - - Name - xpcom.shlb - MacOS - Library - - - - Name - NSPR20.shlb - MacOS - Library - - - - Name - nsDSURIContentListener.cpp - MacOS - Text - Debug - - - Name - nsDocShell.cpp - MacOS - Text - Debug - - - Name - nsDocShellLoadInfo.cpp - MacOS - Text - Debug - - - Name - nsWebShell.cpp - MacOS - Text - Debug - - - Name - nsDocShellModule.cpp - MacOS - Text - Debug - - - Name - nsDefaultURIFixup.cpp - MacOS - Text - Debug - - - Name - nsDocShellEnumerator.cpp - MacOS - Text - Debug - - - Name - NSComponentStartup.o - MacOS - Library - Debug - - - Name - nsDocShellEditorData.cpp - MacOS - Text - Debug - - - - - Name - NSComponentStartup.o - MacOS - - - Name - InterfacesStubs - MacOS - - - Name - NSRuntime.shlb - MacOS - - - Name - NSStdLib.shlb - MacOS - - - Name - xpcom.shlb - MacOS - - - Name - NSPR20.shlb - MacOS - - - Name - nsDSURIContentListener.cpp - MacOS - - - Name - nsDocShell.cpp - MacOS - - - Name - nsDocShellLoadInfo.cpp - MacOS - - - Name - nsWebShell.cpp - MacOS - - - Name - nsDocShellModule.cpp - MacOS - - - Name - nsDefaultURIFixup.cpp - MacOS - - - Name - nsDocShellEnumerator.cpp - MacOS - - - Name - nsDocShellEditorData.cpp - MacOS - - - - - docshellDebug.shlb - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path:: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:::dist: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - TargetnamedocshellDebug.shlb - OutputDirectory - Path: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathsfalse - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.gc - CompilerGameCode Converter - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.l - CompilerFlex Preprocessor - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.y - CompilerBison Preprocessor - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - - - CacheModDatesfalse - ActivateBrowsertrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - - - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint1 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamedocshellSharedPrefix_debug.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline1 - MWFrontEnd_C_useRTTI0 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse0 - MWFrontEnd_C_direct_to_som0 - MWFrontEnd_C_som_env_check0 - MWFrontEnd_C_alwaysinline0 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl1 - MWWarning_C_warn_possunwant1 - MWWarning_C_warn_unusedvar1 - MWWarning_C_warn_unusedarg1 - MWWarning_C_warn_extracomma1 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password263jzwcn63nthc2ÀÑ“( - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameApple Applet Runner - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_useVM1 - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Depricated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_peephole0 - MWCodeGen_PPC_processorspecific0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_vrsave0 - - - MWCodeGen_MachO_structalignmentPPC - MWCodeGen_MachO_tracebacktablesNone - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_profiler0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_processorspecific0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vrsave1 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_implicit_templates1 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname__NSInitialize - MWLinker_PPC_mainname - MWLinker_PPC_termname__NSTerminate - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_stacksize64 - MWProject_MachO_stackaddress0 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - - - MWPEF_exportsPragma - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnameWEB_DLL - MWPEF_collapsereloads0 - - - MWProject_PPC_typeSharedLibrary - MWProject_PPC_outfiledocshellDebug.shlb - MWProject_PPC_filecreatorMOZZ - MWProject_PPC_filetypeshlb - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_machinecodelisting0 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_syminfo0 - MWCodeGen_X86_codeviewinfo1 - MWCodeGen_X86_extinst_cmov_fcomi0 - MWCodeGen_X86_extinst_sse0 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showSourcefalse - PDisasmX86_showHextrue - PDisasmX86_showRelocationtrue - PDisasmX86_showCommentsfalse - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showDatatrue - PDisasmX86_showRawfalse - PDisasmX86_verbosefalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV1 - - - MWProject_X86_typeApplication - MWProject_X86_outfilenoname.exe - MWProject_X86_baseaddress4194304 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWProject_X86_importlib - xpidl Settings - 0001000101000000000000000000000000000000000000000000000000000000 - 0000000000000000 - - - - - Name - NSRuntimeDebug.shlb - MacOS - Library - - - - Name - NSStdLibDebug.shlb - MacOS - Library - - - - Name - InterfacesStubs - MacOS - Library - - - - Name - NSPR20Debug.shlb - MacOS - Library - - - - Name - xpcomDebug.shlb - MacOS - Library - - - - Name - nsDSURIContentListener.cpp - MacOS - Text - Debug - - - Name - nsDocShell.cpp - MacOS - Text - Debug - - - Name - nsDocShellLoadInfo.cpp - MacOS - Text - Debug - - - Name - nsWebShell.cpp - MacOS - Text - Debug - - - Name - nsDocShellModule.cpp - MacOS - Text - Debug - - - Name - nsDefaultURIFixup.cpp - MacOS - Text - Debug - - - Name - nsDocShellEnumerator.cpp - MacOS - Text - Debug - - - Name - NSComponentStartup.o - MacOS - Library - Debug - - - Name - nsDocShellEditorData.cpp - MacOS - Text - Debug - - - - - Name - NSComponentStartup.o - MacOS - - - Name - NSRuntimeDebug.shlb - MacOS - - - Name - NSStdLibDebug.shlb - MacOS - - - Name - InterfacesStubs - MacOS - - - Name - NSPR20Debug.shlb - MacOS - - - Name - xpcomDebug.shlb - MacOS - - - Name - nsDSURIContentListener.cpp - MacOS - - - Name - nsDocShell.cpp - MacOS - - - Name - nsDocShellLoadInfo.cpp - MacOS - - - Name - nsWebShell.cpp - MacOS - - - Name - nsDocShellModule.cpp - MacOS - - - Name - nsDefaultURIFixup.cpp - MacOS - - - Name - nsDocShellEnumerator.cpp - MacOS - - - Name - nsDocShellEditorData.cpp - MacOS - - - - - - - docshell.shlb - docshellDebug.shlb - - - - Source - - docshell.shlb - Name - nsWebShell.cpp - MacOS - - - docshell.shlb - Name - nsDocShell.cpp - MacOS - - - docshell.shlb - Name - nsDSURIContentListener.cpp - MacOS - - - docshell.shlb - Name - nsDocShellLoadInfo.cpp - MacOS - - - docshell.shlb - Name - nsDocShellEnumerator.cpp - MacOS - - - docshell.shlb - Name - nsDefaultURIFixup.cpp - MacOS - - - docshell.shlb - Name - nsDocShellModule.cpp - MacOS - - - docshell.shlb - Name - nsDocShellEditorData.cpp - MacOS - - - NS Libraries - Optimized - - docshell.shlb - Name - NSPR20.shlb - MacOS - - - docshell.shlb - Name - NSRuntime.shlb - MacOS - - - docshell.shlb - Name - NSStdLib.shlb - MacOS - - - docshell.shlb - Name - xpcom.shlb - MacOS - - - Debug - - docshellDebug.shlb - Name - NSPR20Debug.shlb - MacOS - - - docshellDebug.shlb - Name - NSRuntimeDebug.shlb - MacOS - - - docshellDebug.shlb - Name - NSStdLibDebug.shlb - MacOS - - - docshellDebug.shlb - Name - xpcomDebug.shlb - MacOS - - - - System Libraries - - docshell.shlb - Name - NSComponentStartup.o - MacOS - - - docshell.shlb - Name - InterfacesStubs - MacOS - - - - - diff --git a/editor/txmgr/tests/Makefile.in b/editor/txmgr/tests/Makefile.in index 0bc011e4db5..7ab89c16d86 100644 --- a/editor/txmgr/tests/Makefile.in +++ b/editor/txmgr/tests/Makefile.in @@ -36,7 +36,5 @@ CPPSRCS = TestTXMgr.cpp LIBS = $(MOZ_COMPONENT_LIBS) -DEFINES += -DUSE_NSREG - include $(topsrcdir)/config/rules.mk diff --git a/editor/txmgr/tests/makefile.win b/editor/txmgr/tests/makefile.win index 7cb38f05327..e69de29bb2d 100644 --- a/editor/txmgr/tests/makefile.win +++ b/editor/txmgr/tests/makefile.win @@ -1,47 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\.. - -REQUIRES = xpcom \ - txmgr \ - $(NULL) - -MAKE_OBJ_TYPE = EXE -PROG1 = .\$(OBJDIR)\TestTXMgr.exe -PROGRAMS = $(PROG1) - -LCFLAGS=-DUSE_NSREG - - -LLIBS= \ - $(DIST)\lib\xpcom.lib - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin - -clobber:: - -for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p - -$(PROG1): $(OBJDIR) TestTXMgr.cpp - diff --git a/extensions/cookie/tests/makefile.win b/extensions/cookie/tests/makefile.win index 2d612ceb4b2..e69de29bb2d 100644 --- a/extensions/cookie/tests/makefile.win +++ b/extensions/cookie/tests/makefile.win @@ -1,60 +0,0 @@ -#!gmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - - -DEPTH = ..\..\.. -DEFINES=-D_IMPL_NS_COOKIE -DWIN32_LEAN_AND_MEAN -MODULE=cookie -REQUIRES = xpcom \ - string \ - cookie \ - necko \ - intl \ - $(NULL) - -MAKE_OBJ_TYPE = EXE - -LCFLAGS=-DUSE_NSREG - -EXENAME=TestCookie -PDBFILE=TestCookie.pdb -MAPFILE=TestCookie.map - -PROGRAM=.\$(OBJDIR)\$(EXENAME).exe - -OBJS=.\$(OBJDIR)\TestCookie.obj \ - $(NULL) - - -LINCS = -I$(DEPTH)\include \ - - -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) \ - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAM) - $(MAKE_INSTALL) $(PROGRAM) $(DIST)\bin - -clobber:: - rm -f $(DIST)\bin\TestCookie.exe diff --git a/extensions/ctl/src/Makefile.in b/extensions/ctl/src/Makefile.in index 288c9135129..e69de29bb2d 100755 --- a/extensions/ctl/src/Makefile.in +++ b/extensions/ctl/src/Makefile.in @@ -1,62 +0,0 @@ -# -# 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 Sun Microsystems, -# Inc. Portions created by SUN are Copyright (C) 2000 SUN -# Microsystems, Inc. All Rights Reserved. -# -# This module 'XPCTL Interface' is based on Pango (www.pango.org) -# by Red Hat Software. Portions created by Redhat are Copyright (C) -# 1999 Red Hat Software. -# -# Contributor(s): - -DEPTH = ../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - -include $(DEPTH)/config/autoconf.mk - -MODULE = ctl -LIBRARY_NAME = ctl -EXPORT_LIBRARY = 1 -IS_COMPONENT = 1 - -REQUIRES = xpcom \ - string \ - uconv \ - locale \ - $(NULL) - -EXTRA_DSO_LIBS = mozpango - -CPPSRCS = \ - nsULE.cpp \ - nsUnicodeToTIS620.cpp \ - nsCtlLEModule.cpp \ - $(NULL) - -include $(topsrcdir)/config/rules.mk - -CFLAGS += -DUSE_NSREG - -LOCAL_INCLUDES += -I$(srcdir)/pangoLite - -CXXFLAGS += $(GLIB_CFLAGS) - -EXTRA_DSO_LDOPTS += \ - $(MOZ_COMPONENT_LIBS) \ - -L$(DIST)/lib \ - $(EXTRA_DSO_LIBS) \ - $(GLIB_GMODULE_LIBS) \ - $(NULL) diff --git a/extensions/inspector/base/src/Makefile.in b/extensions/inspector/base/src/Makefile.in index 6d387edf217..d508a66565c 100644 --- a/extensions/inspector/base/src/Makefile.in +++ b/extensions/inspector/base/src/Makefile.in @@ -73,8 +73,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/extensions/inspector/base/src/makefile.win b/extensions/inspector/base/src/makefile.win index 77c149f050e..e69de29bb2d 100644 --- a/extensions/inspector/base/src/makefile.win +++ b/extensions/inspector/base/src/makefile.win @@ -1,88 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 2001 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=inspector_s -MODULE=inspector -REQUIRES = xpcom \ - string \ - dom \ - rdf \ - rdfutil \ - gfx \ - layout \ - layout_xul \ - content \ - widget \ - locale \ - gfx2 \ - necko \ - docshell \ - view \ - imglib2 \ - mimetype \ - exthandler \ - png \ - zlib \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -DIRS=win - -CPP_OBJS= \ - .\$(OBJDIR)\inDOMView.obj \ - .\$(OBJDIR)\inDeepTreeWalker.obj \ - .\$(OBJDIR)\inFlasher.obj \ - .\$(OBJDIR)\inSearchLoop.obj \ - .\$(OBJDIR)\inFileSearch.obj \ - .\$(OBJDIR)\inCSSValueSearch.obj \ - .\$(OBJDIR)\inDOMUtils.obj \ - .\$(OBJDIR)\inLayoutUtils.obj \ - .\$(OBJDIR)\inBitmap.obj \ - .\$(OBJDIR)\inBitmapDepot.obj \ - .\$(OBJDIR)\inBitmapDecoder.obj \ - .\$(OBJDIR)\inBitmapProtocolHandler.obj \ - .\$(OBJDIR)\inBitmapChannel.obj \ - .\$(OBJDIR)\inBitmapURI.obj \ - .\$(OBJDIR)\inPNGEncoder.obj \ - $(NULL) - -EXPORTS=$(NULL) - -LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I$(PUBLIC)\js \ - -I$(PUBLIC)\dom -I$(PUBLIC)\uconv - -LCFLAGS= \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib - - diff --git a/extensions/inspector/base/src/win/Makefile.in b/extensions/inspector/base/src/win/Makefile.in index 724c5e266f1..4256bd4f0d6 100644 --- a/extensions/inspector/base/src/win/Makefile.in +++ b/extensions/inspector/base/src/win/Makefile.in @@ -48,8 +48,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/extensions/inspector/base/src/win/makefile.win b/extensions/inspector/base/src/win/makefile.win index 8ba20564653..e69de29bb2d 100755 --- a/extensions/inspector/base/src/win/makefile.win +++ b/extensions/inspector/base/src/win/makefile.win @@ -1,66 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\..\.. - -LIBRARY_NAME=inscreencap_s -MODULE=inspector -REQUIRES = xpcom \ - string \ - gfx \ - layout \ - widget \ - content \ - locale \ - dom \ - necko \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -INCS = $(INCS) \ - -I$(DEPTH)\dist\include \ - -I..\ \ - $(NULL) - -CPP_OBJS= \ - .\$(OBJDIR)\inScreenCapturer.obj \ - $(NULL) - -EXPORTS = $(NULL) - -LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I$(PUBLIC)\js \ - -I$(PUBLIC)\dom -I$(PUBLIC)\uconv - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib - - diff --git a/extensions/pics/tests/makefile.win b/extensions/pics/tests/makefile.win index 5e06f1c14cf..e69de29bb2d 100644 --- a/extensions/pics/tests/makefile.win +++ b/extensions/pics/tests/makefile.win @@ -1,63 +0,0 @@ -#!gmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - - -DEPTH = ..\..\.. -include <$(DEPTH)/config/config.mak> -DEFINES=-D_IMPL_NS_PICS -DWIN32_LEAN_AND_MEAN -MODULE=pics - -MAKE_OBJ_TYPE = EXE - -LCFLAGS=-DUSE_NSREG -DNECKO - -EXENAME=TestPICS -PDBFILE=TestPICS.pdb -MAPFILE=TestPICS.map - -PROGRAM=.\$(OBJDIR)\$(EXENAME).exe - -OBJS=.\$(OBJDIR)\TestPICS.obj \ - $(NULL) - - -LINCS = -I$(PUBLIC)/js \ - -I$(PUBLIC)\pics \ - -I$(PUBLIC)\pref \ - -I$(PUBLIC)\xpcom \ - -I$(PUBLIC)\raptor \ - -I$(PUBLIC)\netlib \ - -I$(DEPTH)\include \ - - -LLIBS= \ - $(DIST)\lib\pics.lib \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) \ - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAM) - $(MAKE_INSTALL) $(PROGRAM) $(DIST)\bin - $(MAKE_INSTALL) samples\picstest1.html $(DIST)\bin\res\samples - -clobber:: - rm -f $(DIST)\bin\TestPICS.exe diff --git a/extensions/universalchardet/tests/Makefile.in b/extensions/universalchardet/tests/Makefile.in index 0afd826644f..c1d262bab80 100644 --- a/extensions/universalchardet/tests/Makefile.in +++ b/extensions/universalchardet/tests/Makefile.in @@ -37,8 +37,6 @@ CPPSRCS = \ SIMPLE_PROGRAMS = $(CPPSRCS:.cpp=$(BIN_SUFFIX)) -DEFINES += -DUSE_NSREG - include $(topsrcdir)/config/config.mk LIBS += \ diff --git a/extensions/universalchardet/tests/makefile.win b/extensions/universalchardet/tests/makefile.win index 50f5f90ffb4..e69de29bb2d 100644 --- a/extensions/universalchardet/tests/makefile.win +++ b/extensions/universalchardet/tests/makefile.win @@ -1,51 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): -DEPTH = ..\..\.. -REQUIRES = xpcom \ - chardet \ - $(NULL) -include <$(DEPTH)\config\config.mak> - -MAKE_OBJ_TYPE = EXE -PROGRAMNAME = UniversalChardetTest.exe -PROG1 = .\$(OBJDIR)\$(PROGRAMNAME) -PROGRAM = $(PROG1) - -LCFLAGS=-DUSE_NSREG - -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) - - -CPP_OBJS= \ - .\$(OBJDIR)\UniversalChardetTest.obj \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(OBJDIR) $(PROGRAM) - $(MAKE_INSTALL) $(PROGRAM) $(DIST)\bin - -clobber:: - rm -f $(DIST)\bin\$(PROGRAMNAME) - -#$(PROG1): $(OBJDIR) UniversalChardetTest.cpp diff --git a/extensions/webservices/schema/src/Makefile.in b/extensions/webservices/schema/src/Makefile.in index a01532bd836..9ffcbd7c6e8 100644 --- a/extensions/webservices/schema/src/Makefile.in +++ b/extensions/webservices/schema/src/Makefile.in @@ -57,8 +57,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/extensions/webservices/soap/src/Makefile.in b/extensions/webservices/soap/src/Makefile.in index cb4cc4edd93..3f5e81c0786 100644 --- a/extensions/webservices/soap/src/Makefile.in +++ b/extensions/webservices/soap/src/Makefile.in @@ -75,8 +75,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/extensions/webservices/wsdl/src/Makefile.in b/extensions/webservices/wsdl/src/Makefile.in index 3c5d4fcee70..f94454492d0 100644 --- a/extensions/webservices/wsdl/src/Makefile.in +++ b/extensions/webservices/wsdl/src/Makefile.in @@ -55,8 +55,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/extensions/xmlextras/base/src/Makefile.in b/extensions/xmlextras/base/src/Makefile.in index 78cdb5a060a..1908ce552b4 100644 --- a/extensions/xmlextras/base/src/Makefile.in +++ b/extensions/xmlextras/base/src/Makefile.in @@ -59,8 +59,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/extensions/xmlextras/base/src/makefile.win b/extensions/xmlextras/base/src/makefile.win index 26b6efc0770..e69de29bb2d 100644 --- a/extensions/xmlextras/base/src/makefile.win +++ b/extensions/xmlextras/base/src/makefile.win @@ -1,72 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=xmlextrasbase_s -MODULE=xmlextras -REQUIRES = xpcom \ - string \ - dom \ - js \ - layout \ - widget \ - caps \ - uconv \ - necko \ - docshell \ - xpconnect \ - webBrowser_core \ - content \ - gfx \ - htmlparser \ - windowwatcher \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -CPP_OBJS= \ - .\$(OBJDIR)\nsDOMSerializer.obj \ - .\$(OBJDIR)\nsXMLHttpRequest.obj \ - .\$(OBJDIR)\nsDOMParser.obj \ - .\$(OBJDIR)\nsLoadListenerProxy.obj \ - $(NULL) - -EXPORTS = \ - $(NULL) - -LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I$(PUBLIC)\js \ - -I$(PUBLIC)\dom -I$(PUBLIC)\uconv - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib - - diff --git a/extensions/xmlextras/proxy/src/makefile.win b/extensions/xmlextras/proxy/src/makefile.win index 84e459e045c..e69de29bb2d 100755 --- a/extensions/xmlextras/proxy/src/makefile.win +++ b/extensions/xmlextras/proxy/src/makefile.win @@ -1,64 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -!if !defined(DISABLE_TESTS) -DIRS=tests -!endif - -LIBRARY_NAME=xmlextrasproxy_s -MODULE=xmlextras - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -REQUIRES = xpcom \ - string \ - xpconnect \ - caps \ - js \ - necko \ - dom \ - iiextras \ - $(NULL) - -CPP_OBJS= \ - .\$(OBJDIR)\wspinfoservice.obj \ - .\$(OBJDIR)\wspproxy.obj \ - .\$(OBJDIR)\wspcallcontext.obj \ - .\$(OBJDIR)\wspfactory.obj \ - .\$(OBJDIR)\wspexception.obj \ - .\$(OBJDIR)\wspcomplextypewrapper.obj \ - .\$(OBJDIR)\wsppropertybagwrapper.obj \ - $(NULL) - -EXPORTS = \ - $(NULL) - -LINCS=-I..\..\soap\src - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/extensions/xmlextras/proxy/src/tests/makefile.win b/extensions/xmlextras/proxy/src/tests/makefile.win index e8c05e29c66..e69de29bb2d 100644 --- a/extensions/xmlextras/proxy/src/tests/makefile.win +++ b/extensions/xmlextras/proxy/src/tests/makefile.win @@ -1,61 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\..\.. - -MODULE=wsproxytest -LIBRARY_NAME=wsproxytest -MODULE_NAME=WSPProxyTestModule - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -XPIDLSRCS = .\nsIWSPProxyTest.idl \ - $(NULL) - -REQUIRES = xpcom \ - string \ - xmlextras \ - xpconnect \ - caps \ - js \ - necko \ - dom \ - $(NULL) - -CPP_OBJS= \ - .\$(OBJDIR)\wspproxytest.obj \ - .\$(OBJDIR)\wspproxytestmodule.obj \ - $(NULL) - -EXPORTS = \ - $(NULL) - -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(DIST)\lib\js3250.lib \ - $(LIBNSPR) \ - $(NULL) - -include <$(DEPTH)/config/config.mak> - -LINCS=-I..\ - -include <$(DEPTH)\config\rules.mak> diff --git a/extensions/xmlextras/schema/src/Makefile.in b/extensions/xmlextras/schema/src/Makefile.in index a01532bd836..9ffcbd7c6e8 100644 --- a/extensions/xmlextras/schema/src/Makefile.in +++ b/extensions/xmlextras/schema/src/Makefile.in @@ -57,8 +57,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/extensions/xmlextras/schema/src/makefile.win b/extensions/xmlextras/schema/src/makefile.win index 65c805f67b7..e69de29bb2d 100644 --- a/extensions/xmlextras/schema/src/makefile.win +++ b/extensions/xmlextras/schema/src/makefile.win @@ -1,81 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=xmlextrasschema_s -MODULE=xmlextras - -REQUIRES = xpcom \ - string \ - dom \ - xpconnect \ - caps \ - layout \ - widget \ - content \ - js \ - necko \ - $(NULL) - -REQUIRES = xpcom \ - string \ - dom \ - xpconnect \ - caps \ - layout \ - widget \ - content \ - js \ - necko \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -CPP_OBJS= \ - .\$(OBJDIR)\nsSchema.obj \ - .\$(OBJDIR)\nsSchemaComponentBase.obj \ - .\$(OBJDIR)\nsSchemaSimpleTypes.obj \ - .\$(OBJDIR)\nsSchemaComplexType.obj \ - .\$(OBJDIR)\nsSchemaParticles.obj \ - .\$(OBJDIR)\nsSchemaAttributes.obj \ - .\$(OBJDIR)\nsSchemaLoader.obj \ - .\$(OBJDIR)\nsSOAPTypes.obj \ - $(NULL) - -EXPORTS = \ - $(NULL) - -LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I$(PUBLIC)\js \ - -I$(PUBLIC)\dom -I$(PUBLIC)\uconv - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/extensions/xmlextras/soap/src/Makefile.in b/extensions/xmlextras/soap/src/Makefile.in index cb4cc4edd93..3f5e81c0786 100644 --- a/extensions/xmlextras/soap/src/Makefile.in +++ b/extensions/xmlextras/soap/src/Makefile.in @@ -75,8 +75,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/extensions/xmlextras/soap/src/makefile.win b/extensions/xmlextras/soap/src/makefile.win index 119ee3da2dd..e69de29bb2d 100644 --- a/extensions/xmlextras/soap/src/makefile.win +++ b/extensions/xmlextras/soap/src/makefile.win @@ -1,83 +0,0 @@ -#!nmake -# ***** 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) 2001 -# 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 ***** * - -DEPTH=..\..\..\.. - -LIBRARY_NAME=xmlextrassoap_s -MODULE=xmlextras - -REQUIRES = \ - xpcom \ - string \ - caps \ - dom \ - js \ - widget \ - xpconnect \ - necko - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -OBJS= \ - .\$(OBJDIR)\nsDefaultSOAPEncoder.obj \ - .\$(OBJDIR)\nsHTTPSOAPTransport.obj \ - .\$(OBJDIR)\nsSOAPBlock.obj \ - .\$(OBJDIR)\nsSOAPCall.obj \ - .\$(OBJDIR)\nsSOAPEncoding.obj \ - .\$(OBJDIR)\nsSOAPException.obj \ - .\$(OBJDIR)\nsSOAPFault.obj \ - .\$(OBJDIR)\nsSOAPHeaderBlock.obj \ - .\$(OBJDIR)\nsSOAPMessage.obj \ - .\$(OBJDIR)\nsSOAPParameter.obj \ - .\$(OBJDIR)\nsSOAPPropertyBag.obj \ - .\$(OBJDIR)\nsSOAPResponse.obj \ - .\$(OBJDIR)\nsSOAPUtils.obj \ - $(NULL) - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/extensions/xmlextras/tests/Makefile.in b/extensions/xmlextras/tests/Makefile.in index 110a1a3b983..a94cbb9dc0d 100644 --- a/extensions/xmlextras/tests/Makefile.in +++ b/extensions/xmlextras/tests/Makefile.in @@ -52,8 +52,6 @@ LIBS = \ include $(topsrcdir)/config/rules.mk -DEFINES += -DUSE_NSREG - ifeq ($(OS_ARCH),WINNT) CXXFLAGS += -GX endif diff --git a/extensions/xmlextras/tests/makefile.win b/extensions/xmlextras/tests/makefile.win index 85848f0462a..e69de29bb2d 100755 --- a/extensions/xmlextras/tests/makefile.win +++ b/extensions/xmlextras/tests/makefile.win @@ -1,57 +0,0 @@ -#!nmake -# -# 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 imitations under the License. -# -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is International -# Business Machines Corporation. Portions created by IBM -# Corporation are Copyright (C) 2000 International Business -# Machines Corporation. All Rights Reserved. -# -# Contributor(s): IBM Corporation. -# Heikki Toivonen -# - -DEPTH = ..\..\.. - -REQUIRES = xpcom \ - string \ - xmlextras \ - necko \ - dom \ - content \ - widget \ - $(NULL) - -include <$(DEPTH)/config/config.mak> - -MAKE_OBJ_TYPE = EXE -PROG1 = .\$(OBJDIR)\TestXMLExtras.exe - -PROGRAMS = $(PROG1) \ - $(NULL) - -LCFLAGS = -DUSE_NSREG -GX - -LLIBS = \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin - -clobber:: - -for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p - -$(PROG1): $(OBJDIR) TestXMLExtras.cpp diff --git a/extensions/xmlextras/wsdl/src/Makefile.in b/extensions/xmlextras/wsdl/src/Makefile.in index 3c5d4fcee70..f94454492d0 100644 --- a/extensions/xmlextras/wsdl/src/Makefile.in +++ b/extensions/xmlextras/wsdl/src/Makefile.in @@ -55,8 +55,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/extensions/xmlextras/wsdl/src/makefile.win b/extensions/xmlextras/wsdl/src/makefile.win index dafcabba771..e69de29bb2d 100644 --- a/extensions/xmlextras/wsdl/src/makefile.win +++ b/extensions/xmlextras/wsdl/src/makefile.win @@ -1,63 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=xmlextraswsdl_s -MODULE=xmlextras - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -REQUIRES = xpcom \ - string \ - dom \ - xpconnect \ - caps \ - layout \ - widget \ - content \ - js \ - necko \ - $(NULL) - -CPP_OBJS= \ - .\$(OBJDIR)\nsWSDLLoader.obj \ - .\$(OBJDIR)\nsWSDLDefinitions.obj \ - $(NULL) - -EXPORTS = \ - $(NULL) - -LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I$(PUBLIC)\js \ - -I$(PUBLIC)\dom -I$(PUBLIC)\uconv -I..\..\schema\src - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/htmlparser/macbuild/htmlparser.xml b/htmlparser/macbuild/htmlparser.xml index c90f017aa82..109dfe92557 100644 --- a/htmlparser/macbuild/htmlparser.xml +++ b/htmlparser/macbuild/htmlparser.xml @@ -479,7 +479,7 @@ MWFrontEnd_C_onlystdkeywords0 MWFrontEnd_C_enumsalwaysint1 MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamehtmlparserSharedPrefix_debug.h + MWFrontEnd_C_prefixnameMacSharedPrefix_debug.h MWFrontEnd_C_ansistrict0 MWFrontEnd_C_mpwcnewline0 MWFrontEnd_C_wchar_type1 @@ -1722,7 +1722,7 @@ MWFrontEnd_C_onlystdkeywords0 MWFrontEnd_C_enumsalwaysint1 MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamehtmlparserSharedPrefix.h + MWFrontEnd_C_prefixnameMacSharedPrefix.h MWFrontEnd_C_ansistrict0 MWFrontEnd_C_mpwcnewline0 MWFrontEnd_C_wchar_type1 diff --git a/htmlparser/robot/test/Makefile.in b/htmlparser/robot/test/Makefile.in index b5c83682c4c..df102c08b4b 100644 --- a/htmlparser/robot/test/Makefile.in +++ b/htmlparser/robot/test/Makefile.in @@ -50,8 +50,6 @@ include $(topsrcdir)/config/config.mk include $(topsrcdir)/config/rules.mk -DEFINES += -DUSE_NSREG - ifdef ($(OS_ARCH),WINNT) ifdef GNU_CC LDFLAGS += -SUBSYSTEM:CONSOLE diff --git a/htmlparser/src/Makefile.in b/htmlparser/src/Makefile.in index fc7750201f6..b206084428e 100644 --- a/htmlparser/src/Makefile.in +++ b/htmlparser/src/Makefile.in @@ -92,7 +92,7 @@ EXTRA_DSO_LDOPTS += \ include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTMLPARS -DXML_DTD +DEFINES += -DXML_DTD ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN diff --git a/htmlparser/src/makefile.win b/htmlparser/src/makefile.win index 034a1ea4ef0..e69de29bb2d 100644 --- a/htmlparser/src/makefile.win +++ b/htmlparser/src/makefile.win @@ -1,95 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\.. - -MODULE = htmlparser -REQUIRES = xpcom \ - string \ - necko \ - util \ - uconv \ - unicharutil \ - expat \ - layout \ - dom \ - pref \ - nkcache \ - intl \ - $(NULL) -include <$(DEPTH)\config\config.mak> - -LIBRARY_NAME=raptorhtmlpars -DEFINES=-D_IMPL_NS_HTMLPARS -DWIN32_LEAN_AND_MEAN -DXML_DTD - -LIBRARY_NAME = gkparser -MODULE_NAME = nsParserModule - -CPP_OBJS = \ - .\$(OBJDIR)\nsDTDUtils.obj \ - .\$(OBJDIR)\nsHTMLTokenizer.obj \ - .\$(OBJDIR)\nsExpatDriver.obj \ - .\$(OBJDIR)\nsElementTable.obj \ - .\$(OBJDIR)\CNavDTD.obj \ - .\$(OBJDIR)\COtherDTD.obj \ - .\$(OBJDIR)\nsHTMLEntities.obj \ - .\$(OBJDIR)\nsHTMLTags.obj \ - .\$(OBJDIR)\nsHTMLTokens.obj \ - .\$(OBJDIR)\nsParser.obj \ - .\$(OBJDIR)\CParserContext.obj \ - .\$(OBJDIR)\nsParserNode.obj \ - .\$(OBJDIR)\nsScanner.obj \ - .\$(OBJDIR)\nsToken.obj \ - .\$(OBJDIR)\nsViewSourceHTML.obj\ - .\$(OBJDIR)\nsParserService.obj \ - .\$(OBJDIR)\nsParserModule.obj \ - .\$(OBJDIR)\nsParserMsgUtils.obj\ -!ifdef MOZ_DEBUG - .\$(OBJDIR)\nsLoggingSink.obj \ - .\$(OBJDIR)\nsHTMLNullSink.obj \ -!endif - $(NULL) - - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -# These are the libraries we need to link with to create the dll -SUB_LIBRARIES= \ - $(DIST)\lib\expat.lib \ - $(NULL) - -LLIBS= \ - $(DIST)\lib\unicharutil_s.lib \ - $(DIST)\lib\xpcom.lib \ -!ifdef MOZ_PERF - $(DIST)\lib\util.lib \ -!endif - $(LIBNSPR) - -!ifdef MOZ_NO_DEBUG_RTL -LLFLAGS= /NODEFAULTLIB msvcirt.lib msvcrt.lib -#LLFLAGS= /NODEFAULTLIB -!endif - -include <$(DEPTH)\config\rules.mak> diff --git a/intl/chardet/tests/Makefile.in b/intl/chardet/tests/Makefile.in index a79f58107e3..400fefea7cb 100644 --- a/intl/chardet/tests/Makefile.in +++ b/intl/chardet/tests/Makefile.in @@ -38,7 +38,6 @@ LIBS = $(XPCOM_LIBS) $(NSPR_LIBS) include $(topsrcdir)/config/rules.mk -DEFINES += -DUSE_NSREG INCLUDES += -I$(srcdir)/../public diff --git a/intl/chardet/tests/makefile.win b/intl/chardet/tests/makefile.win index 95c7cd47ae6..e69de29bb2d 100644 --- a/intl/chardet/tests/makefile.win +++ b/intl/chardet/tests/makefile.win @@ -1,46 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): -DEPTH = ..\..\.. - -REQUIRES = xpcom \ - chardet \ - $(NULL) - - -MAKE_OBJ_TYPE = EXE -PROG1 = .\$(OBJDIR)\DetectCharset.exe -PROGRAMS = $(PROG1) -LCFLAGS=-DUSE_NSREG - - -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin - -clobber:: - -for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p - -$(PROG1): $(OBJDIR) DetectCharset.cpp diff --git a/intl/chardet/tools/makefile.win b/intl/chardet/tools/makefile.win index 90285576e45..9721ebd582d 100644 --- a/intl/chardet/tools/makefile.win +++ b/intl/chardet/tools/makefile.win @@ -27,7 +27,6 @@ MAKE_OBJ_TYPE = EXE PROG1 = .\$(OBJDIR)\GenCyrillicClass.exe PROGRAMS = $(PROG1) -LCFLAGS=-DUSE_NSREG REQUIRES=\ xpcom \ string \ diff --git a/intl/compatibility/tests/makefile.win b/intl/compatibility/tests/makefile.win index 99899cca1bb..f733a9fc8f6 100644 --- a/intl/compatibility/tests/makefile.win +++ b/intl/compatibility/tests/makefile.win @@ -27,8 +27,6 @@ MAKE_OBJ_TYPE = EXE PROG1 = .\$(OBJDIR)\TestI18nCompatibility.exe PROGRAMS = $(PROG1) -LCFLAGS=-DUSE_NSREG - LLIBS= \ $(DIST)\lib\xpcom.lib \ diff --git a/intl/locale/tests/makefile.win b/intl/locale/tests/makefile.win index 10204507b9f..e69de29bb2d 100644 --- a/intl/locale/tests/makefile.win +++ b/intl/locale/tests/makefile.win @@ -1,56 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): -DEPTH = ..\..\.. - - - - -MAKE_OBJ_TYPE = EXE -PROG1 = .\$(OBJDIR)\LocaleSelfTest.exe -PROG2 = .\$(OBJDIR)\nsLocaleTest.exe -SRPT1 = .\nsLocaleTest.html -PROGRAMS = $(PROG1) $(PROG2) -SRPTS = $(SRPT1) - - -LCFLAGS=-DUSE_NSREG $(LCFLAGS) - - -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) \ - $(DIST)\lib\nslocale.lib - -LLFLAGS= /NODEFAULTLIB msvcirt.lib msvcrt.lib - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS) $(SRPTS)) do $(MAKE_INSTALL) %p $(DIST)\bin - -clobber:: - for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p - for %p in ($(SRPTS)) do $(RM) $(DIST)\bin\%p - -$(PROG1): $(OBJDIR) LocaleSelfTest.cpp - -$(PROG2): $(OBJDIR) nsLocaleTest.cpp - diff --git a/intl/lwbrk/src/Makefile.in b/intl/lwbrk/src/Makefile.in index 1f60e0b58d5..7c3d28f8a9a 100644 --- a/intl/lwbrk/src/Makefile.in +++ b/intl/lwbrk/src/Makefile.in @@ -48,8 +48,6 @@ CPPSRCS = \ include $(topsrcdir)/config/rules.mk -CFLAGS += -DUSE_NSREG - EXTRA_DSO_LDOPTS += $(MOZ_COMPONENT_LIBS) # Reserved name __STDC__ cannot be defined as a macro name on AIX or OpenVMS. diff --git a/intl/lwbrk/tests/Makefile.in b/intl/lwbrk/tests/Makefile.in index 3b11df5acb5..ef65a4794fc 100644 --- a/intl/lwbrk/tests/Makefile.in +++ b/intl/lwbrk/tests/Makefile.in @@ -37,6 +37,5 @@ LIBS = $(XPCOM_LIBS) $(NSPR_LIBS) include $(topsrcdir)/config/rules.mk -DEFINES += -DUSE_NSREG LOCAL_INCLUDES = -I$(srcdir)/../public diff --git a/intl/lwbrk/tests/makefile.win b/intl/lwbrk/tests/makefile.win index 53a93d65367..e69de29bb2d 100644 --- a/intl/lwbrk/tests/makefile.win +++ b/intl/lwbrk/tests/makefile.win @@ -1,49 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): -DEPTH = ..\..\.. - - -REQUIRES = xpcom \ - string \ - lwbrk \ - $(NULL) - - -MAKE_OBJ_TYPE = EXE -PROG1 = .\$(OBJDIR)\TestLineBreak.exe -PROGRAMS = $(PROG1) - -LCFLAGS=-DUSE_NSREG - - -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin - -clobber:: - -for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p - -$(PROG1): $(OBJDIR) TestLineBreak.cpp diff --git a/intl/uconv/src/Makefile.in b/intl/uconv/src/Makefile.in index 4ec67183957..5bbf49d4e7b 100644 --- a/intl/uconv/src/Makefile.in +++ b/intl/uconv/src/Makefile.in @@ -118,8 +118,6 @@ endif include $(topsrcdir)/config/rules.mk -CFLAGS += -DUSE_NSREG - # Reserved name __STDC__ cannot be defined as a macro name on AIX or OpenVMS. # QNX simply objects to the way it's being redefined. ifeq (,$(filter AIX OpenVMS QNX HP-UX,$(OS_ARCH))) diff --git a/intl/uconv/tests/Makefile.in b/intl/uconv/tests/Makefile.in index 52b0e69529f..d3c8cd98b8b 100644 --- a/intl/uconv/tests/Makefile.in +++ b/intl/uconv/tests/Makefile.in @@ -47,8 +47,6 @@ SIMPLE_PROGRAMS = $(CPPSRCS:.cpp=$(BIN_SUFFIX)) include $(topsrcdir)/config/rules.mk -DEFINES += -DUSE_NSREG - INCLUDES += \ -I$(srcdir)/../ucvlatin \ -I$(srcdir)/../ucvja \ diff --git a/intl/uconv/tests/makefile.win b/intl/uconv/tests/makefile.win index 71bf3fcd132..e69de29bb2d 100644 --- a/intl/uconv/tests/makefile.win +++ b/intl/uconv/tests/makefile.win @@ -1,57 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH = ..\..\.. -REQUIRES = xpcom \ - uconv \ - string \ - locale \ - $(NULL) -MAKE_OBJ_TYPE = EXE - -PROG1 = .\$(OBJDIR)\convperf.exe -PROG2 = .\$(OBJDIR)\nsTestUConv.exe -PROG3 = .\$(OBJDIR)\nsconv.exe -PROG4 = .\$(OBJDIR)\plattest.exe -PROG5 = .\$(OBJDIR)\TestUConv.exe -PROGRAMS = $(PROG1) $(PROG2) $(PROG3) $(PROG4) $(PROG5) - -LCFLAGS = -DUSE_NSREG - - -LLIBS = \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) - - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin - -clobber:: - -for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p - -$(PROG1): $(OBJDIR) convperf.cpp -$(PROG2): $(OBJDIR) nsTestUConv.cpp -$(PROG3): $(OBJDIR) nsconv.cpp -$(PROG4): $(OBJDIR) plattest.cpp -$(PROG5): $(OBJDIR) TestUConv.cpp diff --git a/intl/unicharutil/tests/Makefile.in b/intl/unicharutil/tests/Makefile.in index 1d452fc298c..c78c16a5b11 100644 --- a/intl/unicharutil/tests/Makefile.in +++ b/intl/unicharutil/tests/Makefile.in @@ -45,6 +45,3 @@ include $(topsrcdir)/config/rules.mk INCLUDES += -I$(srcdir)/../public -ifeq ($(OS_ARCH),WINNT) -DEFINES += -DUSE_NSREG -endif diff --git a/intl/unicharutil/tests/makefile.win b/intl/unicharutil/tests/makefile.win index edeb5142a02..e69de29bb2d 100644 --- a/intl/unicharutil/tests/makefile.win +++ b/intl/unicharutil/tests/makefile.win @@ -1,51 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): -DEPTH = ..\..\.. - -REQUIRES = xpcom \ - string \ - unicharutil \ - uconv \ - necko \ - $(NULL) - - -MAKE_OBJ_TYPE = EXE -PROG1 = .\$(OBJDIR)\UnicharSelfTest.exe -PROGRAMS = $(PROG1) - -LCFLAGS=-DUSE_NSREG - - -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) - - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin - -clobber:: - -for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p - -$(PROG1): $(OBJDIR) UnicharSelfTest.cpp diff --git a/js/src/xpconnect/shell/Makefile.in b/js/src/xpconnect/shell/Makefile.in index f3841700b2f..b2db45c7db1 100644 --- a/js/src/xpconnect/shell/Makefile.in +++ b/js/src/xpconnect/shell/Makefile.in @@ -56,7 +56,7 @@ LIBS = \ include $(topsrcdir)/config/rules.mk -DEFINES += -DJS_THREADSAFE -DUSE_NSREG +DEFINES += -DJS_THREADSAFE ifeq ($(OS_ARCH), Linux) DEFINES += -D_BSD_SOURCE endif diff --git a/js/src/xpconnect/shell/makefile.win b/js/src/xpconnect/shell/makefile.win index 66faf664e08..e69de29bb2d 100644 --- a/js/src/xpconnect/shell/makefile.win +++ b/js/src/xpconnect/shell/makefile.win @@ -1,62 +0,0 @@ -#!nmake -# -# 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 Communicator client code, released -# March 31, 1998. -# -# The Initial Developer of the Original Code is Netscape -# Communications Corporation. Portions created by Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): -# -# Alternatively, the contents of this file may be used under the -# terms of the GNU Public License (the "GPL"), in which case the -# provisions of the GPL are applicable instead of those above. -# If you wish to allow use of your version of this file only -# under the terms of the GPL and not to allow others to use your -# version of this file under the NPL, indicate your decision by -# deleting the provisions above and replace them with the notice -# and other provisions required by the GPL. If you do not delete -# the provisions above, a recipient may use your version of this -# file under either the NPL or the GPL. - -DEPTH=..\..\..\.. -REQUIRES = xpcom \ - string \ - xpconnect \ - js \ - $(NULL) - - -MAKE_OBJ_TYPE = EXE -PROG1 = .\$(OBJDIR)\xpcshell.exe -PROGRAMS = $(PROG1) - -LCFLAGS=-DUSE_NSREG -DWIN32_LEAN_AND_MEAN - -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) \ - $(DIST)\lib\js3250.lib \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin - -clobber:: - -for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p - -$(PROG1): $(OBJDIR) xpcshell.cpp diff --git a/js/src/xpconnect/tests/Makefile.in b/js/src/xpconnect/tests/Makefile.in index 8493bde4093..778b479ee30 100644 --- a/js/src/xpconnect/tests/Makefile.in +++ b/js/src/xpconnect/tests/Makefile.in @@ -59,7 +59,7 @@ LIBS = \ include $(topsrcdir)/config/rules.mk -DEFINES += -DJS_THREADSAFE -DUSE_NSREG -DJSFILE +DEFINES += -DJS_THREADSAFE -DJSFILE ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/js/src/xpconnect/tests/makefile.win b/js/src/xpconnect/tests/makefile.win index 2d87a018e0d..e69de29bb2d 100644 --- a/js/src/xpconnect/tests/makefile.win +++ b/js/src/xpconnect/tests/makefile.win @@ -1,69 +0,0 @@ -#!nmake -# -# 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 Communicator client code, released -# March 31, 1998. -# -# The Initial Developer of the Original Code is Netscape -# Communications Corporation. Portions created by Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): -# -# Alternatively, the contents of this file may be used under the -# terms of the GNU Public License (the "GPL"), in which case the -# provisions of the GPL are applicable instead of those above. -# If you wish to allow use of your version of this file only -# under the terms of the GPL and not to allow others to use your -# version of this file under the NPL, indicate your decision by -# deleting the provisions above and replace them with the notice -# and other provisions required by the GPL. If you do not delete -# the provisions above, a recipient may use your version of this -# file under either the NPL or the GPL. - -DEPTH=..\..\..\.. - - - -DIRS = idl components -MODULE=xpconnect_tests -REQUIRES = xpcom \ - string \ - js \ - xpconnect \ - $(NULL) -MAKE_OBJ_TYPE = EXE -PROG1 = .\$(OBJDIR)\TestXPC.exe -PROGRAMS = $(PROG1) - -LCFLAGS=-DUSE_NSREG -DWIN32_LEAN_AND_MEAN -DJS_THREADSAFE -DJSFILE - - -LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\js -I$(PUBLIC)\xpconnect \ - -I$(PUBLIC)\raptor - -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) \ - $(DIST)\lib\js3250.lib \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin - -clobber:: - -for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p - -$(PROG1): $(OBJDIR) TestXPC.cpp diff --git a/layout/build/Makefile.in b/layout/build/Makefile.in index 955f3c16cbb..546de7228ff 100644 --- a/layout/build/Makefile.in +++ b/layout/build/Makefile.in @@ -102,8 +102,6 @@ endif include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - INCLUDES += -I$(srcdir)/../base/src \ -I$(srcdir)/../html/base/src \ -I$(srcdir)/../html/style/src \ diff --git a/layout/build/makefile.win b/layout/build/makefile.win index ea7ca4da225..e69de29bb2d 100644 --- a/layout/build/makefile.win +++ b/layout/build/makefile.win @@ -1,94 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\.. -MODULE=layout -REQUIRES = xpcom \ - string \ - widget \ - locale \ - gfx \ - content \ - layout_xul \ - necko \ - $(NULL) - -include <$(DEPTH)/config/config.mak> - -DEFINES=-D_IMPL_NS_HTML - -LIBRARY_NAME=gklayout -MODULE_NAME=nsLayoutModule - -CPP_OBJS= \ - .\$(OBJDIR)\dlldeps.obj \ - .\$(OBJDIR)\nsLayoutModule.obj \ - $(NULL) - -EXPORTS=nsLayoutCID.h - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -LINCS= -I..\html\base\src -I..\base\src \ - -I..\html\style\src \ - -I..\xul\content\src \ - -I..\xul\base\src \ -!ifdef MOZ_MATHML - -I..\mathml\content\src \ -!endif - $(NULL) - -SUB_LIBRARIES= \ - $(DIST)\lib\layoutbase_s.lib \ - $(DIST)\lib\layouthtmlbase_s.lib \ - $(DIST)\lib\layouthtmldoc_s.lib \ - $(DIST)\lib\layouthtmlforms_s.lib \ - $(DIST)\lib\layouthtmlstyle_s.lib \ - $(DIST)\lib\layouthtmltable_s.lib \ - $(DIST)\lib\layoutxulbase_s.lib \ - $(DIST)\lib\contentshared_s.lib \ - $(DIST)\lib\raptorxultree_s.lib \ - $(DIST)\lib\raptorxulgrid_s.lib \ -!ifdef MOZ_MATHML - $(DIST)\lib\layoutmathmlbase_s.lib \ - $(DIST)\lib\layoutmathmlcontent_s.lib \ -!endif -!ifdef MOZ_SVG - $(DIST)\lib\layoutsvgbase_s.lib \ - $(DIST)\lib\moz_art_lgpl.lib \ -!endif - $(NULL) - -# These are the libraries we need to link with to create the dll -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(DIST)\lib\gkgfx.lib \ - $(DIST)\lib\unicharutil_s.lib \ - $(DIST)\lib\js32$(VERSION_NUMBER).lib \ -!if defined(MOZ_PERF) - $(DIST)\lib\util.lib \ -!endif - $(LIBNSPR) - -include <$(DEPTH)\config\rules.mak> diff --git a/layout/html/base/src/Makefile.in b/layout/html/base/src/Makefile.in index b9057266a98..b448ca27bbf 100644 --- a/layout/html/base/src/Makefile.in +++ b/layout/html/base/src/Makefile.in @@ -147,8 +147,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/layout/html/base/src/makefile.win b/layout/html/base/src/makefile.win index 67d7e30f2bf..e69de29bb2d 100644 --- a/layout/html/base/src/makefile.win +++ b/layout/html/base/src/makefile.win @@ -1,149 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. -MODULE=layout -REQUIRES = xpcom \ - string \ - dom \ - widget \ - locale \ - view \ - necko \ - js \ - caps \ - pref \ - htmlparser \ - webshell \ - plugin \ - docshell \ - mimetype \ - webBrowser_core \ - oji \ - util \ - unicharutil \ - lwbrk \ - gfx2 \ - gfx \ - imglib2 \ - accessibility \ - xpconnect \ - java \ - exthandler \ - content \ - layout_xul \ - $(NULL) -include <$(DEPTH)\config\config.mak> - -LIBRARY_NAME=layouthtmlbase_s -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN -!if defined(XP_NEW_SELECTION) -DEFINES = $(DEFINES) -DXP_NEW_SELECTION -!endif - -EXPORTS = \ - nsILineIterator.h \ - nsHTMLParts.h \ -!ifdef IBMBIDI - nsTextTransformer.h \ - nsBidiFrames.h \ -!endif - $(NULL) - -CPP_OBJS= \ - .\$(OBJDIR)\nsAbsoluteContainingBlock.obj \ - .\$(OBJDIR)\nsAreaFrame.obj \ - .\$(OBJDIR)\nsBRFrame.obj \ - .\$(OBJDIR)\nsBlockBandData.obj \ - .\$(OBJDIR)\nsBlockFrame.obj \ - .\$(OBJDIR)\nsBlockReflowContext.obj \ - .\$(OBJDIR)\nsBlockReflowState.obj \ - .\$(OBJDIR)\nsBulletFrame.obj \ - .\$(OBJDIR)\nsContainerFrame.obj \ - .\$(OBJDIR)\nsFirstLetterFrame.obj \ - .\$(OBJDIR)\nsFrame.obj \ - .\$(OBJDIR)\nsFrameManager.obj \ - .\$(OBJDIR)\nsGfxScrollFrame.obj \ - .\$(OBJDIR)\nsHRFrame.obj \ - .\$(OBJDIR)\nsHTMLContainerFrame.obj \ - .\$(OBJDIR)\nsHTMLFrame.obj \ - .\$(OBJDIR)\nsHTMLReflowCommand.obj \ - .\$(OBJDIR)\nsHTMLReflowState.obj \ - .\$(OBJDIR)\nsImageFrame.obj \ - .\$(OBJDIR)\nsImageMap.obj \ - .\$(OBJDIR)\nsInlineFrame.obj \ - .\$(OBJDIR)\nsLeafFrame.obj \ - .\$(OBJDIR)\nsLineBox.obj \ - .\$(OBJDIR)\nsLineLayout.obj \ - .\$(OBJDIR)\nsObjectFrame.obj \ - .\$(OBJDIR)\nsPageFrame.obj \ - .\$(OBJDIR)\nsPageContentFrame.obj \ - .\$(OBJDIR)\nsPlaceholderFrame.obj \ - .\$(OBJDIR)\nsPresShell.obj \ - .\$(OBJDIR)\nsReflowPath.obj \ - .\$(OBJDIR)\nsScrollFrame.obj \ - .\$(OBJDIR)\nsScrollPortFrame.obj \ - .\$(OBJDIR)\nsSelectsAreaFrame.obj \ - .\$(OBJDIR)\nsSimplePageSequence.obj \ - .\$(OBJDIR)\nsSpacerFrame.obj \ - .\$(OBJDIR)\nsSplittableFrame.obj \ - .\$(OBJDIR)\nsTextFrame.obj \ - .\$(OBJDIR)\nsTextTransformer.obj \ - .\$(OBJDIR)\nsViewportFrame.obj \ -!ifdef IBMBIDI - .\$(OBJDIR)\nsBidiFrames.obj \ -!endif - $(NULL) - -LINCS= \ - -I..\..\style\src \ - -I..\..\forms\src \ - -I..\..\..\base\src \ - -I..\..\..\xul\content\src \ - -I..\..\..\xul\base\src \ - $(NULL) - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -libs:: - $(MAKE_INSTALL) broken-image.gif $(DIST)\bin\res - $(MAKE_INSTALL) loading-image.gif $(DIST)\bin\res - $(MAKE_INSTALL) gopher-audio.gif $(DIST)\bin\res\html - $(MAKE_INSTALL) gopher-binary.gif $(DIST)\bin\res\html - $(MAKE_INSTALL) gopher-find.gif $(DIST)\bin\res\html - $(MAKE_INSTALL) gopher-image.gif $(DIST)\bin\res\html - $(MAKE_INSTALL) gopher-menu.gif $(DIST)\bin\res\html - $(MAKE_INSTALL) gopher-movie.gif $(DIST)\bin\res\html - $(MAKE_INSTALL) gopher-sound.gif $(DIST)\bin\res\html - $(MAKE_INSTALL) gopher-telnet.gif $(DIST)\bin\res\html - $(MAKE_INSTALL) gopher-text.gif $(DIST)\bin\res\html - $(MAKE_INSTALL) gopher-unknown.gif $(DIST)\bin\res\html - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/layout/html/document/src/Makefile.in b/layout/html/document/src/Makefile.in index b699151f57d..3d64a578499 100644 --- a/layout/html/document/src/Makefile.in +++ b/layout/html/document/src/Makefile.in @@ -60,8 +60,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/layout/html/document/src/makefile.win b/layout/html/document/src/makefile.win index c037bce81b2..e69de29bb2d 100644 --- a/layout/html/document/src/makefile.win +++ b/layout/html/document/src/makefile.win @@ -1,93 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -DIRS = xbl-marquee - -LIBRARY_NAME=layouthtmldoc_s -MODULE=layout -REQUIRES = xpcom \ - string \ - widget \ - dom \ - necko \ - locale \ - view \ - js \ - webshell \ - docshell \ - caps \ - pref \ - uriloader \ - xpconnect \ - accessibility \ - gfx \ - content \ - webBrowser_core \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN -!if defined(XP_NEW_SELECTION) -DEFINES = $(DEFINES) -DXP_NEW_SELECTION -!endif - -CPP_OBJS= \ - .\$(OBJDIR)\nsFrameFrame.obj \ - .\$(OBJDIR)\nsFrameSetFrame.obj \ - $(NULL) - -LINCS= \ - -I..\..\base\src \ - -I..\..\content\src \ - -I..\..\..\base\src \ - $(NULL) - -!ifdef NECKO -LINCS = $(LINCS) -I$(PUBLIC)\necko -!endif - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - $(MAKE_INSTALL) ua.css $(DIST)\bin\res - $(MAKE_INSTALL) html.css $(DIST)\bin\res - $(MAKE_INSTALL) forms.css $(DIST)\bin\res - $(MAKE_INSTALL) quirk.css $(DIST)\bin\res - $(MAKE_INSTALL) viewsource.css $(DIST)\bin\res - $(MAKE_INSTALL) arrow.gif $(DIST)\bin\res - $(MAKE_INSTALL) arrowd.gif $(DIST)\bin\res - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib - rm -f $(DIST)\bin\res\ua.css - rm -f $(DIST)\bin\res\html.css - rm -f $(DIST)\bin\res\forms.css - rm -f $(DIST)\bin\res\quirk.css - rm -f $(DIST)\bin\res\viewsource.css - rm -f $(DIST)\bin\res\arrow.gif - rm -f $(DIST)\bin\res\arrowd.gif diff --git a/layout/html/forms/src/Makefile.in b/layout/html/forms/src/Makefile.in index f6f4d9e31f5..ccb15339a06 100644 --- a/layout/html/forms/src/Makefile.in +++ b/layout/html/forms/src/Makefile.in @@ -76,8 +76,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/layout/html/forms/src/makefile.win b/layout/html/forms/src/makefile.win index d2701543993..e69de29bb2d 100644 --- a/layout/html/forms/src/makefile.win +++ b/layout/html/forms/src/makefile.win @@ -1,91 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=layouthtmlforms_s - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN -MODULE=layout -REQUIRES = xpcom \ - string \ - locale \ - widget \ - view \ - dom \ - js \ - htmlparser \ - necko \ - webshell \ - caps \ - editor \ - intl \ - uconv \ - txmgr \ - gfx2 \ - imglib2 \ - accessibility \ - xpconnect \ - unicharutil \ - pref \ - gfx \ - content \ - content_xul \ - $(NULL) - -CPP_OBJS= \ - .\$(OBJDIR)\nsFormControlHelper.obj \ - .\$(OBJDIR)\nsComboboxControlFrame.obj \ - .\$(OBJDIR)\nsListControlFrame.obj \ - .\$(OBJDIR)\nsFormControlFrame.obj \ - .\$(OBJDIR)\nsFileControlFrame.obj \ - .\$(OBJDIR)\nsTextControlFrame.obj \ - .\$(OBJDIR)\nsFieldSetFrame.obj \ - .\$(OBJDIR)\nsLegendFrame.obj \ - .\$(OBJDIR)\nsHTMLButtonControlFrame.obj \ - .\$(OBJDIR)\nsButtonFrameRenderer.obj \ - .\$(OBJDIR)\nsImageControlFrame.obj \ - .\$(OBJDIR)\nsGfxButtonControlFrame.obj \ - .\$(OBJDIR)\nsGfxCheckboxControlFrame.obj \ - .\$(OBJDIR)\nsGfxRadioControlFrame.obj \ - .\$(OBJDIR)\nsIsIndexFrame.obj - - -LINCS= -I..\..\base\src \ - -I..\..\style\src \ - -I..\..\..\base\src \ - -I..\..\..\xul\base\src \ - $(NULL) - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -CHROME_DIR = locales\en-US -CHROME_L10N_DIR = communicator\locale\layout -CHROME_L10N = .\HtmlForm.properties -CHROME_L10N = .\ImageDocument.properties - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib diff --git a/layout/html/style/src/Makefile.in b/layout/html/style/src/Makefile.in index dd075e79fc2..a8c5fd1d46d 100644 --- a/layout/html/style/src/Makefile.in +++ b/layout/html/style/src/Makefile.in @@ -63,8 +63,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/layout/html/style/src/makefile.win b/layout/html/style/src/makefile.win index d15ee9c067e..e69de29bb2d 100644 --- a/layout/html/style/src/makefile.win +++ b/layout/html/style/src/makefile.win @@ -1,90 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=layouthtmlstyle_s -MODULE=layout -REQUIRES = xpcom \ - string \ - dom \ - widget \ - locale \ - view \ - necko \ - webshell \ - pref \ - docshell \ - plugin \ - content_xul \ - imglib2 \ - gfx2 \ - gfx \ - content \ - layout_xul \ -!ifdef MOZ_SVG - raptor \ -!endif - $(NULL) - -include <$(DEPTH)/config/config.mak> - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -EXPORTS = \ - nsIHTMLStyleSheet.h \ - nsICSSFrameConstructor.h \ - $(NULL) - -CPP_OBJS = \ - .\$(OBJDIR)\nsCSSFrameConstructor.obj \ - .\$(OBJDIR)\nsCSSRendering.obj \ - .\$(OBJDIR)\nsFrameContentIterator.obj \ - .\$(OBJDIR)\nsChildIterator.obj \ - $(NULL) - -LINCS= \ - -I..\..\..\base\src \ - -I..\..\..\xul\content\src \ - -I..\..\..\xul\base\src \ -!ifdef MOZ_MATHML - -I..\..\..\mathml\content\src \ - -I..\..\..\mathml\base\src \ -!endif -!ifdef MOZ_SVG - -I..\..\..\svg\base\src \ -!endif - -I..\..\forms\src \ - -I..\..\base\src -I..\..\table\src -I..\..\content\src \ - $(NULL) - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/layout/html/table/src/Makefile.in b/layout/html/table/src/Makefile.in index 1582224e28a..630a2aa7d7b 100644 --- a/layout/html/table/src/Makefile.in +++ b/layout/html/table/src/Makefile.in @@ -59,7 +59,7 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML -DDEBUG_TABLE_REFLOW_TIMING_off -DDEBUG_TABLE_STRATEGY_off +DEFINES += -DDEBUG_TABLE_REFLOW_TIMING_off -DDEBUG_TABLE_STRATEGY_off ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN diff --git a/layout/html/table/src/makefile.win b/layout/html/table/src/makefile.win index f3cac192690..e69de29bb2d 100644 --- a/layout/html/table/src/makefile.win +++ b/layout/html/table/src/makefile.win @@ -1,71 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=layouthtmltable_s -MODULE=layout -REQUIRES = xpcom \ - string \ - dom \ - widget \ - locale \ - webshell \ - view \ - accessibility \ - gfx \ - content \ - necko \ - $(NULL) - - -DEFINES =-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN \ - -DoffDEBUG_TABLE_REFLOW_TIMING -DoffDEBUG_TABLE_REFLOW_TIMING_DETAIL \ - -DoffDEBUG_TABLE_STRATEGY \ - $(NULL) - -CPP_OBJS= .\$(OBJDIR)\nsCellMap.obj \ - .\$(OBJDIR)\nsTableCellFrame.obj \ - .\$(OBJDIR)\nsTableColFrame.obj \ - .\$(OBJDIR)\nsTableColGroupFrame.obj \ - .\$(OBJDIR)\nsTableFrame.obj \ - .\$(OBJDIR)\nsTableOuterFrame.obj \ - .\$(OBJDIR)\nsTableRowFrame.obj \ - .\$(OBJDIR)\nsTableRowGroupFrame.obj \ - .\$(OBJDIR)\BasicTableLayoutStrategy.obj \ - .\$(OBJDIR)\FixedTableLayoutStrategy.obj \ - $(NULL) - -LINCS=-I..\..\base\src -I..\..\style\src -I..\..\content\src \ - -I..\..\..\base\src - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/layout/html/tests/makefile.win b/layout/html/tests/makefile.win index b7cdb01f7fe..e69de29bb2d 100644 --- a/layout/html/tests/makefile.win +++ b/layout/html/tests/makefile.win @@ -1,79 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\.. -REQUIRES = xpcom \ - string \ - layout \ - content \ - layout \ - $(NULL) -include <$(DEPTH)/config/config.mak> - -MAKE_OBJ_TYPE = EXE -PROG2 = .\$(OBJDIR)\TestCSSPropertyLookup.exe -PROGRAMS = $(PROG2) - -DEFINES = -D_IMPL_NS_HTML - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -LINCS= \ - -I..\base\src \ - -I..\style\src \ - -I..\..\css\layout\src \ - -I..\..\base\src \ - -I..\document\src - -LLIBS= \ - $(DIST)\lib\layouthtmlbase_s.lib \ - $(DIST)\lib\layouthtmldoc_s.lib \ - $(DIST)\lib\layouthtmlforms_s.lib \ - $(DIST)\lib\layouthtmlstyle_s.lib \ - $(DIST)\lib\layouthtmltable_s.lib \ - $(DIST)\lib\layoutbase_s.lib \ - $(DIST)\lib\gkgfx.lib \ - $(DIST)\lib\layoutxulbase_s.lib \ - $(DIST)\lib\contentshared_s.lib \ -!ifdef MOZ_MATHML - $(DIST)\lib\layoutmathmlbase_s.lib \ - $(DIST)\lib\layoutmathmlcontent_s.lib \ -!endif -!ifdef MOZ_SVG - $(DIST)\lib\layoutsvgbase_s.lib \ -!endif - $(DIST)\lib\util.lib \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) \ - $(DIST)\lib\js32$(VERSION_NUMBER).lib - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - $(MAKE_INSTALL) $(PROG2) $(DIST)\bin - -clobber:: - rm -f $(DIST)\bin\TestCSSPropertyLookup.exe - -$(PROG2): $(OBJDIR) TestCSSPropertyLookup.cpp diff --git a/layout/mathml/content/src/Makefile.in b/layout/mathml/content/src/Makefile.in index f81adfb77fc..49688f21e49 100644 --- a/layout/mathml/content/src/Makefile.in +++ b/layout/mathml/content/src/Makefile.in @@ -38,8 +38,6 @@ REQUIRES = xpcom \ include $(topsrcdir)/config/config.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/layout/mathml/content/src/makefile.win b/layout/mathml/content/src/makefile.win index e4fcf4db855..e69de29bb2d 100644 --- a/layout/mathml/content/src/makefile.win +++ b/layout/mathml/content/src/makefile.win @@ -1,60 +0,0 @@ -#!nmake -# -# 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 MathML Project. -# -# The Initial Developer of the Original Code is Heriot-Watt -# University, Edinburgh. Portions created by Heriot-Watt University -# are Copyright (C) 1999 Heriot-Watt University. All Rights Reserved. -# -# Contributor(s): -# David J. Fiddes -# Roger B. Sidje -# - -DEPTH=..\..\..\.. - -LIBRARY_NAME=layoutmathmlcontent_s -MODULE=layout -REQUIRES = string \ - xpcom \ - content \ - necko \ - gfx \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -CPP_OBJS= \ - .\$(OBJDIR)\nsMathMLAtoms.obj \ - .\$(OBJDIR)\nsMathMLOperators.obj \ - $(NULL) - - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -libs:: - $(MAKE_INSTALL) mathml.dtd $(DIST)\bin\res\dtd - $(MAKE_INSTALL) mathml.css $(DIST)\bin\res - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib - rm -f $(DIST)\bin\res\dtd\mathml.dtd - rm -f $(DIST)\bin\res\mathml.css diff --git a/layout/svg/base/src/Makefile.in b/layout/svg/base/src/Makefile.in index bbfc06b5434..fa2ed358ae7 100644 --- a/layout/svg/base/src/Makefile.in +++ b/layout/svg/base/src/Makefile.in @@ -69,8 +69,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/layout/svg/base/src/makefile.win b/layout/svg/base/src/makefile.win index 46cd9a23bce..e69de29bb2d 100644 --- a/layout/svg/base/src/makefile.win +++ b/layout/svg/base/src/makefile.win @@ -1,97 +0,0 @@ -#!nmake -# -# 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) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=layoutsvgbase_s -MODULE=layout -REQUIRES = xpcom \ - widget \ - content \ - gfx \ - string \ - locale \ - dom \ - pref \ - view \ - libart_lgpl \ - necko \ - unicharutil \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -CPP_OBJS= \ - .\$(OBJDIR)\nsSVGBPathBuilder.obj \ - .\$(OBJDIR)\nsSVGCircleFrame.obj \ - .\$(OBJDIR)\nsSVGEllipseFrame.obj \ - .\$(OBJDIR)\nsSVGFill.obj \ - .\$(OBJDIR)\nsSVGForeignObjectFrame.obj \ - .\$(OBJDIR)\nsSVGGFrame.obj \ - .\$(OBJDIR)\nsSVGGenericContainerFrame.obj \ - .\$(OBJDIR)\nsSVGGraphic.obj \ - .\$(OBJDIR)\nsSVGGraphicFrame.obj \ - .\$(OBJDIR)\nsSVGLineFrame.obj \ - .\$(OBJDIR)\nsSVGOuterSVGFrame.obj \ - .\$(OBJDIR)\nsSVGPathFrame.obj \ - .\$(OBJDIR)\nsSVGPolygonFrame.obj \ - .\$(OBJDIR)\nsSVGPolylineFrame.obj \ - .\$(OBJDIR)\nsSVGRectFrame.obj \ - .\$(OBJDIR)\nsSVGRenderItem.obj \ - .\$(OBJDIR)\nsSVGRenderingContext.obj \ - .\$(OBJDIR)\nsSVGStroke.obj \ - $(NULL) - -EXPORTS = \ - $(NULL) - -LINCS= \ - -I..\..\..\html\style\src -I..\..\..\html\base\src \ - -I..\..\..\html\document\src \ - -I..\..\..\html\content\src \ - -I..\..\..\html\table\src \ - -I..\..\content\src \ - -I..\..\..\html\forms\src \ - -I..\..\..\base\src \ - -I..\..\..\xml\content\src \ - -I..\..\..\base\public \ - -I..\..\..\..\content\svg\content\src \ - $(NULL) - - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - $(MAKE_INSTALL) svg.dtd $(DIST)\bin\res\dtd - $(MAKE_INSTALL) svg.css $(DIST)\bin\res - $(PERL) install-svg-css.pl $(DIST)\bin\res\ua.css - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib - rm -f $(DIST)\bin\res\dtd\svg.dtd - rm -f $(DIST)\bin\res\svg.css diff --git a/layout/xul/base/src/Makefile.in b/layout/xul/base/src/Makefile.in index 72402b6bf9b..93954459e25 100644 --- a/layout/xul/base/src/Makefile.in +++ b/layout/xul/base/src/Makefile.in @@ -113,8 +113,6 @@ FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTML - ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/layout/xul/base/src/grid/Makefile.in b/layout/xul/base/src/grid/Makefile.in index 77ea4d312d7..66e32e46b7e 100644 --- a/layout/xul/base/src/grid/Makefile.in +++ b/layout/xul/base/src/grid/Makefile.in @@ -62,8 +62,6 @@ EXPORTS = \ nsGridCell.h \ $(NULL) -DEFINES += -D_IMPL_NS_HTML - LOCAL_INCLUDES = \ -I$(srcdir) \ -I$(srcdir)/../../../base/src \ diff --git a/layout/xul/base/src/grid/makefile.win b/layout/xul/base/src/grid/makefile.win index d1f3aef0755..e69de29bb2d 100644 --- a/layout/xul/base/src/grid/makefile.win +++ b/layout/xul/base/src/grid/makefile.win @@ -1,84 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\..\.. - -LIBRARY_NAME=raptorxulgrid_s -MODULE=layout_xul -REQUIRES = xpcom \ - string \ - widget \ - locale \ - view \ - necko \ - gfx \ - content \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -CPP_OBJS= \ - .\$(OBJDIR)\nsGridLayout2.obj \ - .\$(OBJDIR)\nsGridRowLayout.obj \ - .\$(OBJDIR)\nsGridRowLeafLayout.obj \ - .\$(OBJDIR)\nsGridRowLeafFrame.obj \ - .\$(OBJDIR)\nsGridRowGroupFrame.obj \ - .\$(OBJDIR)\nsGridRowGroupLayout.obj \ - .\$(OBJDIR)\nsGrid.obj \ - .\$(OBJDIR)\nsGridRow.obj \ - .\$(OBJDIR)\nsGridCell.obj \ - $(NULL) - -LINCS= \ - -I..\.. \ - -I..\..\..\..\base\src \ - -I..\..\..\..\html\style\src \ - -I..\..\..\..\html\base\src \ - -I..\..\..\content\src \ - -I..\..\..\..\html\forms\src \ - -I..\..\..\..\xml\content\src \ - -I.. \ - -I..\..\..\..\base\public - -EXPORTS = nsGridLayout2.h \ - nsGridRowLayout.h \ - nsGridRowLeafLayout.h \ - nsGridRowLeafFrame.h \ - nsGridRowGroupLayout.h \ - nsIGridPart.h \ - nsGrid.h \ - nsGridRow.h \ - nsGridCell.h \ - $(NULL) - - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/layout/xul/base/src/makefile.win b/layout/xul/base/src/makefile.win index 4927a4373f6..e69de29bb2d 100644 --- a/layout/xul/base/src/makefile.win +++ b/layout/xul/base/src/makefile.win @@ -1,125 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -LIBRARY_NAME=layoutxulbase_s -MODULE=layout_xul -DIRS=tree \ - grid - -REQUIRES = xpcom \ - string \ - dom \ - locale \ - widget \ - view \ - docshell \ - necko \ - editor \ - htmlparser \ - webshell \ - pref \ - intl \ - gfx2 \ - imglib2 \ - unicharutil \ - gfx \ - content \ - layout \ - xpconnect \ - js \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -CPP_OBJS= \ - .\$(OBJDIR)\nsScrollBoxFrame.obj \ - .\$(OBJDIR)\nsEditorBoxObject.obj \ - .\$(OBJDIR)\nsIFrameBoxObject.obj \ - .\$(OBJDIR)\nsBrowserBoxObject.obj \ - .\$(OBJDIR)\nsListBoxObject.obj \ - .\$(OBJDIR)\nsScrollBoxObject.obj \ - .\$(OBJDIR)\nsPopupBoxObject.obj \ - .\$(OBJDIR)\nsMenuBoxObject.obj \ - .\$(OBJDIR)\nsBoxObject.obj \ - .\$(OBJDIR)\nsImageBoxFrame.obj \ - .\$(OBJDIR)\nsRootBoxFrame.obj \ - .\$(OBJDIR)\nsDocElementBoxFrame.obj \ - .\$(OBJDIR)\nsStackLayout.obj \ - .\$(OBJDIR)\nsPopupSetFrame.obj \ - .\$(OBJDIR)\nsMenuBarFrame.obj \ - .\$(OBJDIR)\nsMenuFrame.obj \ - .\$(OBJDIR)\nsSplitterFrame.obj \ - .\$(OBJDIR)\nsButtonBoxFrame.obj \ - .\$(OBJDIR)\nsSpringFrame.obj \ - .\$(OBJDIR)\nsSliderFrame.obj \ - .\$(OBJDIR)\nsProgressMeterFrame.obj \ - .\$(OBJDIR)\nsGroupBoxFrame.obj \ - .\$(OBJDIR)\nsBox.obj \ - .\$(OBJDIR)\nsContainerBox.obj \ - .\$(OBJDIR)\nsBoxFrame.obj \ - .\$(OBJDIR)\nsBoxLayoutState.obj \ - .\$(OBJDIR)\nsBoxToBlockAdaptor.obj \ - .\$(OBJDIR)\nsSprocketLayout.obj \ - .\$(OBJDIR)\nsBoxLayout.obj \ - .\$(OBJDIR)\nsLeafBoxFrame.obj \ - .\$(OBJDIR)\nsTextBoxFrame.obj \ - .\$(OBJDIR)\nsFrameNavigator.obj \ - .\$(OBJDIR)\nsRepeatService.obj \ - .\$(OBJDIR)\nsGrippyFrame.obj \ - .\$(OBJDIR)\nsDeckFrame.obj \ - .\$(OBJDIR)\nsStackFrame.obj \ - .\$(OBJDIR)\nsScrollbarFrame.obj \ - .\$(OBJDIR)\nsScrollbarButtonFrame.obj \ - .\$(OBJDIR)\nsMenuPopupFrame.obj \ - .\$(OBJDIR)\nsMenuBarListener.obj \ - .\$(OBJDIR)\nsMenuListener.obj \ - .\$(OBJDIR)\nsMenuDismissalListener.obj \ - .\$(OBJDIR)\nsTitleBarFrame.obj \ - .\$(OBJDIR)\nsResizerFrame.obj \ - .\$(OBJDIR)\nsListBoxBodyFrame.obj \ - .\$(OBJDIR)\nsListItemFrame.obj \ - .\$(OBJDIR)\nsListBoxLayout.obj \ - .\$(OBJDIR)\nsXULTooltipListener.obj \ - .\$(OBJDIR)\nsNativeScrollbarFrame.obj \ - $(NULL) - -LINCS= \ - -I..\..\..\html\style\src -I..\..\..\html\base\src \ - -I..\..\content\src \ - -I..\..\..\html\forms\src \ - -I..\..\..\base\src \ - -I..\..\..\xml\content\src \ - -I..\..\..\base\public - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/layout/xul/base/src/tree/src/Makefile.in b/layout/xul/base/src/tree/src/Makefile.in index fe5eecd1413..37d40681612 100644 --- a/layout/xul/base/src/tree/src/Makefile.in +++ b/layout/xul/base/src/tree/src/Makefile.in @@ -62,8 +62,6 @@ EXPORTS = \ nsTreeContentView.h \ $(NULL) -DEFINES += -D_IMPL_NS_HTML - LOCAL_INCLUDES = \ -I$(srcdir) \ -I$(srcdir)/../../../../base/src \ diff --git a/layout/xul/base/src/tree/src/makefile.win b/layout/xul/base/src/tree/src/makefile.win index 06b490b0feb..e69de29bb2d 100644 --- a/layout/xul/base/src/tree/src/makefile.win +++ b/layout/xul/base/src/tree/src/makefile.win @@ -1,78 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\..\..\.. - -LIBRARY_NAME=raptorxultree_s -MODULE=layout_xul -REQUIRES = xpcom \ - string \ - dom \ - widget \ - locale \ - view \ - rdf \ - necko \ - gfx2 \ - imglib2 \ - gfx \ - content \ - content_xul \ - xpconnect \ - js \ - $(NULL) - -DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN - -CPP_OBJS= \ - .\$(OBJDIR)\nsTreeBoxObject.obj \ - .\$(OBJDIR)\nsTreeBodyFrame.obj \ - .\$(OBJDIR)\nsTreeColFrame.obj \ - .\$(OBJDIR)\nsTreeSelection.obj \ - .\$(OBJDIR)\nsTreeUtils.obj \ - .\$(OBJDIR)\nsTreeContentView.obj \ - $(NULL) - -EXPORTS = nsTreeColFrame.h \ - nsTreeUtils.h \ - $(NULL) - -LINCS= \ - -I..\.. \ - -I..\..\..\..\..\html\style\src -I..\..\..\..\..\html\base\src \ - -I..\..\..\..\content\src \ - -I..\..\..\..\..\html\forms\src \ - -I..\..\..\..\..\base\src \ - -I..\..\..\..\..\xml\content\src \ - -I..\..\..\..\..\base\public - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/mailnews/addrbook/src/Makefile.in b/mailnews/addrbook/src/Makefile.in index bd84d142ee5..cef28f731f2 100644 --- a/mailnews/addrbook/src/Makefile.in +++ b/mailnews/addrbook/src/Makefile.in @@ -122,7 +122,6 @@ CPPSRCS += \ nsAbOutlookCard.cpp \ nsAbOutlookDirFactory.cpp \ nsAbOutlookDirectory.cpp \ - nsAbQueryStringToExpression.cpp \ nsAbWinHelper.cpp \ nsMapiAddressBook.cpp \ nsWabAddressBook.cpp \ diff --git a/mailnews/base/search/src/Makefile.in b/mailnews/base/search/src/Makefile.in index 57ca36566d0..99b7d470ed7 100644 --- a/mailnews/base/search/src/Makefile.in +++ b/mailnews/base/search/src/Makefile.in @@ -71,8 +71,6 @@ EXPORTS = nsMsgFilterService.h \ nsMsgFilterDelegateFactory.h \ $(NULL) -DEFINES += -D_IMPL_NS_HTML - # we don't want the shared lib, but we want to force the creation of a static lib. FORCE_STATIC_LIB = 1 diff --git a/mailnews/base/search/src/makefile.win b/mailnews/base/search/src/makefile.win index 9913ecf0b1b..e69de29bb2d 100644 --- a/mailnews/base/search/src/makefile.win +++ b/mailnews/base/search/src/makefile.win @@ -1,85 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1999 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -MODULE=msgsearch -REQUIRES = xpcom \ - string \ - mailnews \ - msgdb \ - msgbaseutil \ - necko \ - mime \ - msgimap \ - rdf \ - msglocal \ - intl \ - unicharutil \ - pref \ - msgnews \ - docshell \ - txmgr \ - msgbase \ - import \ - $(NULL) -include <$(DEPTH)\config\config.mak> - -LIBRARY_NAME=msgsearch_s - -DEFINES=-D_IMPL_NS_HTML - -CPP_OBJS= .\$(OBJDIR)\nsMsgFilterService.obj \ - .\$(OBJDIR)\nsMsgFilterList.obj\ - .\$(OBJDIR)\nsMsgFilter.obj\ - .\$(OBJDIR)\nsMsgSearchTerm.obj\ - .\$(OBJDIR)\nsMsgBodyHandler.obj\ - .\$(OBJDIR)\nsMsgLocalSearch.obj\ - .\$(OBJDIR)\nsMsgSearchNews.obj\ - .\$(OBJDIR)\nsMsgImapSearch.obj\ - .\$(OBJDIR)\nsMsgSearchSession.obj\ - .\$(OBJDIR)\nsMsgSearchAdapter.obj\ - .\$(OBJDIR)\nsMsgSearchValue.obj \ - .\$(OBJDIR)\nsMsgFilterDataSource.obj \ - .\$(OBJDIR)\nsMsgFilterDelegateFactory.obj \ - $(NULL) - - -EXPORTS= nsMsgFilterService.h \ - nsMsgSearchSession.h \ - nsMsgFilterDataSource.h \ - nsMsgFilterDelegateFactory.h \ - $(NULL) - - - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/mailnews/mime/cthandlers/calendar/makefile.win b/mailnews/mime/cthandlers/calendar/makefile.win index 60d8001a042..e69de29bb2d 100644 --- a/mailnews/mime/cthandlers/calendar/makefile.win +++ b/mailnews/mime/cthandlers/calendar/makefile.win @@ -1,121 +0,0 @@ -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): -# - -# -# mimect-cal.dll -# ================ -# This is a content type handler for calendar entries. This will live externally -# to libmime and be able to render a calendar stream for presentation inline -# - -#//------------------------------------------------------------------------ -#// -#// Specify the depth of the current directory relative to the -#// root of NS -#// -#//------------------------------------------------------------------------ -DEPTH=..\..\..\.. - -#//------------------------------------------------------------------------ -#// -# New build system where zip dll is built independently of java stubs. -#// -#//------------------------------------------------------------------------ -MODULE = calendar -LIBRARY_NAME = calendar -META_COMPONENT = mail -MODULE_NAME = nsCalendarModule - -#EXPORTS = -# Exported headers here!!! -# $(NULL) - -REQUIRES = \ - xpcom \ - string \ - mime \ - msgbase \ - pref \ - necko \ - uconv \ - $(NULL) - -DEFINES= -DEBUG_rhp -D_IMPL_NS_HTML - -#//------------------------------------------------------------------------ -#// -#// Define the files necessary to build the target (ie. OBJS) -#// -#//------------------------------------------------------------------------ - -OBJS= \ - .\$(OBJDIR)\mimecal.obj \ - .\$(OBJDIR)\nsCalendarFactory.obj \ - $(NULL) - -#//------------------------------------------------------------------------ -#// -#// Define any Public Make Variables here: (ie. PDFFILE, MAPFILE, ...) -#// -#//------------------------------------------------------------------------ - -MAPFILE=$(MODULE).map -DEFFILE=$(MODULE).def - -#//------------------------------------------------------------------------ -#// -#// Define any Public Targets here (ie. PROGRAM, LIBRARY, DLL, ...) -#// (these must be defined before the common makefiles are included) -#// -#//------------------------------------------------------------------------ -# -!ifdef MOZ_STATIC_COMPONENT_LIBS -LIB=.\$(OBJDIR)\$(LIBRARY_NAME).lib -!else -DLL=.\$(OBJDIR)\$(DLLNAME).dll -!endif - -#//------------------------------------------------------------------------ -#// -#// Define any local options for the make tools -#// (ie. LCFLAGS, LLFLAGS, LLIBS, LINCS) -#// -#//------------------------------------------------------------------------ -LCFLAGS=-DNETSCAPE - -MSGLIBS= \ - $(NULL) - -LINCS= -I..\glue - -# These are the libraries we need to link with to create the dll -LLIBS= \ - $(LLIBS) \ - $(DIST)\lib\mimecthglue_s.lib \ - $(LIBNSPR) \ - $(DIST)\lib\xpcom.lib \ - $(NULL) - -#//------------------------------------------------------------------------ -#// -#// Include the common makefile rules -#// -#//------------------------------------------------------------------------ -include <$(DEPTH)/config/rules.mak> diff --git a/mailnews/mime/cthandlers/glue/Makefile.in b/mailnews/mime/cthandlers/glue/Makefile.in index 93881277af9..b14cdfd1b7a 100644 --- a/mailnews/mime/cthandlers/glue/Makefile.in +++ b/mailnews/mime/cthandlers/glue/Makefile.in @@ -43,8 +43,6 @@ CPPSRCS = \ nsMimeContentTypeHandler.cpp \ $(NULL) -DEFINES += -D_IMPL_NS_HTML - # glue lib should be static FORCE_STATIC_LIB = 1 diff --git a/mailnews/mime/cthandlers/glue/makefile.win b/mailnews/mime/cthandlers/glue/makefile.win index 95d21f9beee..e69de29bb2d 100644 --- a/mailnews/mime/cthandlers/glue/makefile.win +++ b/mailnews/mime/cthandlers/glue/makefile.win @@ -1,100 +0,0 @@ -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): -# - -#//------------------------------------------------------------------------ -#// -#// Specify the depth of the current directory relative to the -#// root of NS -#// -#//------------------------------------------------------------------------ -DEPTH=..\..\..\.. - -#//------------------------------------------------------------------------ -#// -# New build system where zip dll is built independently of java stubs. -#// -#//------------------------------------------------------------------------ -MODULE = mime -LIBRARY_NAME = mimecthglue_s -META_COMPONENT = mail -# Only set this for static build, so it wouldn't break dynamic -# build because EXPORT_LIBRARY is forcing libs to be dynamic -# in dynamic builds, but this is a static lib. bug 108290 -!ifdef MOZ_STATIC_COMPONENT_LIBS -EXPORT_LIBRARY=1 -!endif -REQUIRES = xpcom \ - string \ - pref \ - uconv \ - necko \ - msgbase \ - $(NULL) - -DEFINES= -DEBUG_rhp -D_IMPL_NS_HTML - -#//------------------------------------------------------------------------ -#// -#// Define the files necessary to build the target (ie. OBJS) -#// -#//------------------------------------------------------------------------ - -OBJS= \ - .\$(OBJDIR)\mimexpcom.obj \ - .\$(OBJDIR)\nsMimeContentTypeHandler.obj \ - $(NULL) - -#//------------------------------------------------------------------------ -#// -#// Define any Public Make Variables here: (ie. PDFFILE, MAPFILE, ...) -#// -#//------------------------------------------------------------------------ - -#//------------------------------------------------------------------------ -#// -#// Define any Public Targets here (ie. PROGRAM, LIBRARY, DLL, ...) -#// (these must be defined before the common makefiles are included) -#// -#//------------------------------------------------------------------------ -# -#// Force glue library to be static -MOZ_STATIC_COMPONENT_LIBS=1 - -#//------------------------------------------------------------------------ -#// -#// Define any local options for the make tools -#// (ie. LCFLAGS, LLFLAGS, LLIBS, LINCS) -#// -#//------------------------------------------------------------------------ - -# These are the libraries we need to link with to create the dll -LLIBS= \ - $(LLIBS) \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) \ - $(NULL) - -#//------------------------------------------------------------------------ -#// -#// Include the common makefile rules -#// -#//------------------------------------------------------------------------ -include <$(DEPTH)/config/rules.mak> - diff --git a/mailnews/mime/cthandlers/smimestub/Makefile.in b/mailnews/mime/cthandlers/smimestub/Makefile.in index 8de85629e16..364ad59b398 100644 --- a/mailnews/mime/cthandlers/smimestub/Makefile.in +++ b/mailnews/mime/cthandlers/smimestub/Makefile.in @@ -49,8 +49,6 @@ endif EXTRA_DSO_LIBS = mimecthglue_s -DEFINES += -D_IMPL_NS_HTML - CPPSRCS = \ nsSMIMEStub.cpp \ nsSMIMEStubFactory.cpp \ diff --git a/mailnews/mime/cthandlers/smimestub/Makefile.win b/mailnews/mime/cthandlers/smimestub/Makefile.win index 8b3f65d2a3e..969e1f3f593 100644 --- a/mailnews/mime/cthandlers/smimestub/Makefile.win +++ b/mailnews/mime/cthandlers/smimestub/Makefile.win @@ -48,7 +48,6 @@ REQUIRES = \ # $(NULL) -DEFINES= -D_IMPL_NS_HTML #//------------------------------------------------------------------------ #// diff --git a/mailnews/mime/cthandlers/vcard/Makefile.in b/mailnews/mime/cthandlers/vcard/Makefile.in index 94be947665c..7955bea579c 100644 --- a/mailnews/mime/cthandlers/vcard/Makefile.in +++ b/mailnews/mime/cthandlers/vcard/Makefile.in @@ -58,8 +58,6 @@ endif EXTRA_DSO_LIBS += mimecthglue_s -DEFINES += -D_IMPL_NS_HTML - CPPSRCS = \ mimevcrd.cpp \ nsVCard.cpp \ diff --git a/mailnews/mime/cthandlers/vcard/makefile.win b/mailnews/mime/cthandlers/vcard/makefile.win index 7adece2d8e5..e69de29bb2d 100644 --- a/mailnews/mime/cthandlers/vcard/makefile.win +++ b/mailnews/mime/cthandlers/vcard/makefile.win @@ -1,125 +0,0 @@ -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): -# - -IGNORE_MANIFEST = 1 - -# -# vcard.dll -# ================ -# This is a content type handler for vcards. This will live externally -# to libmime and be able to render a text/vcard stream -# - -#//------------------------------------------------------------------------ -#// -#// Specify the depth of the current directory relative to the -#// root of NS -#// -#//------------------------------------------------------------------------ -DEPTH=..\..\..\.. - -#//------------------------------------------------------------------------ -#// -# New build system where zip dll is built independently of java stubs. -#// -#//------------------------------------------------------------------------ -MODULE = vcard -LIBRARY_NAME = vcard -META_COMPONENT = mail -MODULE_NAME = nsVCardModule -REQUIRES = xpcom \ - string \ - mime \ - msgbase \ - msgbaseutil \ - uconv \ - necko \ - intl \ - pref \ - mailnews \ - msgdb \ - $(NULL) - -# EXPORTS = -# Put any necessary exported headers here!!! -# $(NULL) - - -DEFINES= -D_IMPL_NS_HTML - -#//------------------------------------------------------------------------ -#// -#// Define the files necessary to build the target (ie. OBJS) -#// -#//------------------------------------------------------------------------ - -OBJS= \ - .\$(OBJDIR)\mimevcrd.obj \ - .\$(OBJDIR)\nsVCard.obj \ - .\$(OBJDIR)\nsVCardObj.obj \ - .\$(OBJDIR)\nsVCardFactory.obj \ - $(NULL) - -#//------------------------------------------------------------------------ -#// -#// Define any Public Make Variables here: (ie. PDFFILE, MAPFILE, ...) -#// -#//------------------------------------------------------------------------ -PDBFILE=$(MODULE).pdb -MAPFILE=$(MODULE).map -DEFFILE=$(MODULE).def - -#//------------------------------------------------------------------------ -#// -#// Define any Public Targets here (ie. PROGRAM, LIBRARY, DLL, ...) -#// (these must be defined before the common makefiles are included) -#// -#//------------------------------------------------------------------------ -# - -#//------------------------------------------------------------------------ -#// -#// Define any local options for the make tools -#// (ie. LCFLAGS, LLFLAGS, LLIBS, LINCS) -#// -#//------------------------------------------------------------------------ -LCFLAGS=-DNETSCAPE - -MSGLIBS= \ - $(NULL) - -LINCS= -I..\glue - -# These are the libraries we need to link with to create the dll -LLIBS= \ - $(LLIBS) \ - $(DIST)\lib\mimecthglue_s.lib \ - $(LIBNSPR) \ - $(DIST)\lib\js32$(VERSION_NUMBER).lib \ - $(DIST)\lib\xpcom.lib \ - $(DIST)\lib\msgbsutl.lib \ - $(NULL) - -#//------------------------------------------------------------------------ -#// -#// Include the common makefile rules -#// -#//------------------------------------------------------------------------ -include <$(DEPTH)/config/rules.mak> diff --git a/netwerk/streamconv/test/Makefile.in b/netwerk/streamconv/test/Makefile.in index 7741873b3b5..2dc73e3faf4 100644 --- a/netwerk/streamconv/test/Makefile.in +++ b/netwerk/streamconv/test/Makefile.in @@ -45,8 +45,6 @@ LIBS = \ include $(topsrcdir)/config/rules.mk -DEFINES += -DUSE_NSREG - ifeq ($(OS_ARCH),WINNT) LDFLAGS += -SUBSYSTEM:CONSOLE ifdef MOZ_NO_DEBUG_RTL diff --git a/netwerk/test/Makefile.in b/netwerk/test/Makefile.in index 417e90f2d60..7f9c2860445 100644 --- a/netwerk/test/Makefile.in +++ b/netwerk/test/Makefile.in @@ -76,8 +76,6 @@ LIBS = \ include $(topsrcdir)/config/rules.mk -DEFINES += -DUSE_NSREG - _RES_FILES = \ urlparse.dat \ urlparse_unx.dat \ diff --git a/netwerk/test/makefile.win b/netwerk/test/makefile.win index f2a50fa550f..e69de29bb2d 100644 --- a/netwerk/test/makefile.win +++ b/netwerk/test/makefile.win @@ -1,118 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\.. -REQUIRES = xpcom \ - string \ - necko \ - nkcache \ - cookie \ - dbm \ - util \ - $(NULL) - -MAKE_OBJ_TYPE = EXE -PROG1 = .\$(OBJDIR)\TestFileInput.exe -PROG2 = .\$(OBJDIR)\TestSocketInput.exe -PROG3 = .\$(OBJDIR)\TestSocketIO.exe -PROG4 = .\$(OBJDIR)\TestProtocols.exe -PROG5 = .\$(OBJDIR)\TestSocketTransport.exe -PROG6 = .\$(OBJDIR)\urltest.exe -PROG7 = .\$(OBJDIR)\TestFileInput2.exe -PROG8 = .\$(OBJDIR)\TestFileTransport.exe -PROGA = .\$(OBJDIR)\TestUpload.exe -PROGB = .\$(OBJDIR)\TestPageLoad.exe -PROGC = .\$(OBJDIR)\TestWriteStream.exe -PROGD = .\$(OBJDIR)\TestWriteSpeed.exe -PROGE = .\$(OBJDIR)\TestCallbacks.exe -PROGF = .\$(OBJDIR)\TestHttp.exe -PROGG = .\$(OBJDIR)\TestIDN.exe -PROGH = .\$(OBJDIR)\TestStandardURL.exe -PROGI = .\$(OBJDIR)\TestURLParser.exe -PROGJ = .\$(OBJDIR)\TestPerf.exe -PROGK = .\$(OBJDIR)\PropertiesTest.exe - -PROGRAMS = \ -$(PROG1) $(PROG2) $(PROG3) $(PROG4) $(PROG5) $(PROG6) $(PROG7) $(PROG8)\ - $(PROGA) $(PROGB) $(PROGC) $(PROGD) $(PROGE) $(PROGF) $(PROGG)\ - $(PROGH) $(PROGI) $(PROGJ) $(PROGK) - -LCFLAGS=-DUSE_NSREG -GX - - -INCS = $(INCS) \ - -I$(DEPTH)\dist\include \ - $(NULL) - -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin - $(MAKE_INSTALL) urlparse.dat $(DIST)\bin\res - $(MAKE_INSTALL) urlparse_win.dat $(DIST)\bin\res - $(MAKE_INSTALL) jarlist.dat $(DIST)\bin\res - -clobber:: - -for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p - -$(PROG1): $(OBJDIR) TestFileInput.cpp - -$(PROG2): $(OBJDIR) TestSocketInput.cpp - -$(PROG3): $(OBJDIR) TestSocketIO.cpp - -$(PROG4): $(OBJDIR) TestProtocols.cpp - -$(PROG5): $(OBJDIR) TestSocketTransport.cpp - -$(PROG6): $(OBJDIR) urltest.cpp - -$(PROG7): $(OBJDIR) TestFileInput2.cpp - -$(PROG8): $(OBJDIR) TestFileTransport.cpp - -$(PROGA): $(OBJDIR) TestUpload.cpp - -$(PROGB): $(OBJDIR) TestPageLoad.cpp - -$(PROGC): $(OBJDIR) TestWriteStream.cpp - -$(PROGD): $(OBJDIR) TestWriteSpeed.cpp - -$(PROGE): $(OBJDIR) TestCallbacks.cpp - -$(PROGF): $(OBJDIR) TestHttp.cpp - -$(PROGG): $(OBJDIR) TestIDN.cpp - -$(PROGH): $(OBJDIR) TestStandardURL.cpp - -$(PROGI): $(OBJDIR) TestURLParser.cpp - -$(PROGJ): $(OBJDIR) TestPerf.cpp - -$(PROGK): $(OBJDIR) PropertiesTest.cpp - diff --git a/parser/htmlparser/macbuild/htmlparser.xml b/parser/htmlparser/macbuild/htmlparser.xml index c90f017aa82..109dfe92557 100644 --- a/parser/htmlparser/macbuild/htmlparser.xml +++ b/parser/htmlparser/macbuild/htmlparser.xml @@ -479,7 +479,7 @@ MWFrontEnd_C_onlystdkeywords0 MWFrontEnd_C_enumsalwaysint1 MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamehtmlparserSharedPrefix_debug.h + MWFrontEnd_C_prefixnameMacSharedPrefix_debug.h MWFrontEnd_C_ansistrict0 MWFrontEnd_C_mpwcnewline0 MWFrontEnd_C_wchar_type1 @@ -1722,7 +1722,7 @@ MWFrontEnd_C_onlystdkeywords0 MWFrontEnd_C_enumsalwaysint1 MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamehtmlparserSharedPrefix.h + MWFrontEnd_C_prefixnameMacSharedPrefix.h MWFrontEnd_C_ansistrict0 MWFrontEnd_C_mpwcnewline0 MWFrontEnd_C_wchar_type1 diff --git a/parser/htmlparser/robot/test/Makefile.in b/parser/htmlparser/robot/test/Makefile.in index b5c83682c4c..df102c08b4b 100644 --- a/parser/htmlparser/robot/test/Makefile.in +++ b/parser/htmlparser/robot/test/Makefile.in @@ -50,8 +50,6 @@ include $(topsrcdir)/config/config.mk include $(topsrcdir)/config/rules.mk -DEFINES += -DUSE_NSREG - ifdef ($(OS_ARCH),WINNT) ifdef GNU_CC LDFLAGS += -SUBSYSTEM:CONSOLE diff --git a/parser/htmlparser/src/Makefile.in b/parser/htmlparser/src/Makefile.in index fc7750201f6..b206084428e 100644 --- a/parser/htmlparser/src/Makefile.in +++ b/parser/htmlparser/src/Makefile.in @@ -92,7 +92,7 @@ EXTRA_DSO_LDOPTS += \ include $(topsrcdir)/config/rules.mk -DEFINES += -D_IMPL_NS_HTMLPARS -DXML_DTD +DEFINES += -DXML_DTD ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN diff --git a/parser/htmlparser/src/makefile.win b/parser/htmlparser/src/makefile.win index 034a1ea4ef0..e69de29bb2d 100644 --- a/parser/htmlparser/src/makefile.win +++ b/parser/htmlparser/src/makefile.win @@ -1,95 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\.. - -MODULE = htmlparser -REQUIRES = xpcom \ - string \ - necko \ - util \ - uconv \ - unicharutil \ - expat \ - layout \ - dom \ - pref \ - nkcache \ - intl \ - $(NULL) -include <$(DEPTH)\config\config.mak> - -LIBRARY_NAME=raptorhtmlpars -DEFINES=-D_IMPL_NS_HTMLPARS -DWIN32_LEAN_AND_MEAN -DXML_DTD - -LIBRARY_NAME = gkparser -MODULE_NAME = nsParserModule - -CPP_OBJS = \ - .\$(OBJDIR)\nsDTDUtils.obj \ - .\$(OBJDIR)\nsHTMLTokenizer.obj \ - .\$(OBJDIR)\nsExpatDriver.obj \ - .\$(OBJDIR)\nsElementTable.obj \ - .\$(OBJDIR)\CNavDTD.obj \ - .\$(OBJDIR)\COtherDTD.obj \ - .\$(OBJDIR)\nsHTMLEntities.obj \ - .\$(OBJDIR)\nsHTMLTags.obj \ - .\$(OBJDIR)\nsHTMLTokens.obj \ - .\$(OBJDIR)\nsParser.obj \ - .\$(OBJDIR)\CParserContext.obj \ - .\$(OBJDIR)\nsParserNode.obj \ - .\$(OBJDIR)\nsScanner.obj \ - .\$(OBJDIR)\nsToken.obj \ - .\$(OBJDIR)\nsViewSourceHTML.obj\ - .\$(OBJDIR)\nsParserService.obj \ - .\$(OBJDIR)\nsParserModule.obj \ - .\$(OBJDIR)\nsParserMsgUtils.obj\ -!ifdef MOZ_DEBUG - .\$(OBJDIR)\nsLoggingSink.obj \ - .\$(OBJDIR)\nsHTMLNullSink.obj \ -!endif - $(NULL) - - -LCFLAGS = \ - $(LCFLAGS) \ - $(DEFINES) \ - $(NULL) - -# These are the libraries we need to link with to create the dll -SUB_LIBRARIES= \ - $(DIST)\lib\expat.lib \ - $(NULL) - -LLIBS= \ - $(DIST)\lib\unicharutil_s.lib \ - $(DIST)\lib\xpcom.lib \ -!ifdef MOZ_PERF - $(DIST)\lib\util.lib \ -!endif - $(LIBNSPR) - -!ifdef MOZ_NO_DEBUG_RTL -LLFLAGS= /NODEFAULTLIB msvcirt.lib msvcrt.lib -#LLFLAGS= /NODEFAULTLIB -!endif - -include <$(DEPTH)\config\rules.mak> diff --git a/rdf/base/public/rdf.h b/rdf/base/public/rdf.h index 6b47de1a019..678537bba97 100644 --- a/rdf/base/public/rdf.h +++ b/rdf/base/public/rdf.h @@ -111,18 +111,4 @@ static const char* kURI##prefix##_##name = ns #name /*@}*/ -#ifdef _IMPL_NS_RDF -#if defined(XP_PC) && !defined(XP_OS2_EMX) -#define NS_RDF _declspec(dllexport) -#else /* !XP_PC */ -#define NS_RDF -#endif /* !XP_PC */ -#else /* !_IMPL_NS_RDF */ -#if defined(XP_PC) && !defined(XP_OS2_EMX) -#define NS_RDF _declspec(dllimport) -#else /* !XP_PC */ -#define NS_RDF -#endif /* !XP_PC */ -#endif /* !_IMPL_NS_RDF */ - #endif /* rdf_h___ */ diff --git a/rdf/util/src/makefile.win b/rdf/util/src/makefile.win index d5fcfc2c226..e69de29bb2d 100644 --- a/rdf/util/src/makefile.win +++ b/rdf/util/src/makefile.win @@ -1,43 +0,0 @@ -#!gmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\.. - -LCFLAGS=-DUSE_XPIDL_INTERFACES -D_IMPL_NS_RDF - -MODULE=rdfutil -LIBRARY_NAME=rdfutil_s -REQUIRES = xpcom \ - string \ - rdf \ - $(NULL) - -CPP_OBJS=\ - .\$(OBJDIR)\nsRDFResource.obj \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(LIBRARY) - $(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib - -clobber:: - rm -f $(DIST)\lib\$(LIBRARY_NAME).lib diff --git a/view/macbuild/view.xml b/view/macbuild/view.xml index ce1f1d810c7..e69de29bb2d 100644 --- a/view/macbuild/view.xml +++ b/view/macbuild/view.xml @@ -1,2188 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -]> - - - - - viewDebug.shlb - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path:: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:::dist: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - TargetnameviewDebug.shlb - OutputDirectory - Path: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathsfalse - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - - - CacheModDatesfalse - ActivateBrowsertrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - - - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos1 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint1 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnameviewSharedPrefix_debug.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse0 - MWFrontEnd_C_direct_to_som0 - MWFrontEnd_C_som_env_check0 - MWFrontEnd_C_alwaysinline0 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl1 - MWWarning_C_warn_possunwant1 - MWWarning_C_warn_unusedvar1 - MWWarning_C_warn_unusedarg1 - MWWarning_C_warn_extracomma1 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0 - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_useVM1 - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Depricated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_peephole0 - MWCodeGen_PPC_processorspecific0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_vrsave0 - - - MWCodeGen_MachO_structalignmentPPC - MWCodeGen_MachO_tracebacktablesNone - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_profiler0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_processorspecific0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vrsave1 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_implicit_templates1 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs1 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname__NSInitialize - MWLinker_PPC_mainname - MWLinker_PPC_termname__NSTerminate - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror1 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics1 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeBundle - MWProject_MachO_outfilea.out - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMAPL - MWProject_MachO_stacksize64 - MWProject_MachO_stackaddress0 - MWProject_MachO_flatrsrc0 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - - - MWPEF_exportsPragma - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnameVIEW_DLL - MWPEF_collapsereloads0 - - - MWProject_PPC_typeSharedLibrary - MWProject_PPC_outfileviewDebug.shlb - MWProject_PPC_filecreatorMOZZ - MWProject_PPC_filetypeshlb - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_machinecodelisting0 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_syminfo0 - MWCodeGen_X86_codeviewinfo1 - MWCodeGen_X86_extinst_cmov_fcomi0 - MWCodeGen_X86_extinst_sse0 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showSourcefalse - PDisasmX86_showHextrue - PDisasmX86_showRelocationtrue - PDisasmX86_showCommentsfalse - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showDatatrue - PDisasmX86_showRawfalse - PDisasmX86_verbosefalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV1 - - - MWProject_X86_typeApplication - MWProject_X86_outfilenoname.exe - MWProject_X86_baseaddress4194304 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWProject_X86_importlib - xpidl Settings - 0001000101000000000000000000000000000000000000000000000000000000 - 0000000000000000 - - - - - Name - InterfacesStubs - MacOS - Library - Debug - - - Name - NSRuntimeDebug.shlb - MacOS - Library - Debug - - - Name - NSStdLibDebug.shlb - MacOS - Library - Debug - - - Name - nsScrollingView.cpp - MacOS - Text - Debug - - - Name - nsViewFactory.cpp - MacOS - Text - Debug - - - Name - nsView.cpp - MacOS - Text - Debug - - - Name - gfxDebug.shlb - MacOS - Library - Debug - - - Name - xpcomDebug.shlb - MacOS - Library - Debug - - - Name - NSPR20Debug.shlb - MacOS - Library - Debug - - - Name - NSComponentStartup.o - MacOS - Library - Debug - - - Name - nsScrollPortView.cpp - MacOS - Text - Debug - - - Name - nsViewManager.cpp - MacOS - Text - Debug - - - - - Name - NSComponentStartup.o - MacOS - - - Name - InterfacesStubs - MacOS - - - Name - NSPR20Debug.shlb - MacOS - - - Name - NSRuntimeDebug.shlb - MacOS - - - Name - NSStdLibDebug.shlb - MacOS - - - Name - nsScrollingView.cpp - MacOS - - - Name - nsViewFactory.cpp - MacOS - - - Name - nsView.cpp - MacOS - - - Name - gfxDebug.shlb - MacOS - - - Name - xpcomDebug.shlb - MacOS - - - Name - nsScrollPortView.cpp - MacOS - - - Name - nsViewManager.cpp - MacOS - - - - - view.shlb - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path:: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:::dist: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnameview.shlb - OutputDirectory - Path: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathsfalse - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - - - CacheModDatesfalse - ActivateBrowsertrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - - - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos1 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint1 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnameviewSharedPrefix.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse0 - MWFrontEnd_C_direct_to_som0 - MWFrontEnd_C_som_env_check0 - MWFrontEnd_C_alwaysinline0 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl1 - MWWarning_C_warn_possunwant1 - MWWarning_C_warn_unusedvar1 - MWWarning_C_warn_unusedarg1 - MWWarning_C_warn_extracomma1 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0 - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_useVM1 - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Depricated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_peephole0 - MWCodeGen_PPC_processorspecific0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_vrsave0 - - - MWCodeGen_MachO_structalignmentPPC - MWCodeGen_MachO_tracebacktablesNone - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_profiler0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_processorspecific0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vrsave1 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_implicit_templates1 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym0 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs1 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname__NSInitialize - MWLinker_PPC_mainname - MWLinker_PPC_termname__NSTerminate - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror1 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics1 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeBundle - MWProject_MachO_outfilea.out - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMAPL - MWProject_MachO_stacksize64 - MWProject_MachO_stackaddress0 - MWProject_MachO_flatrsrc0 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - - - MWPEF_exportsPragma - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnameVIEW_DLL - MWPEF_collapsereloads0 - - - MWProject_PPC_typeSharedLibrary - MWProject_PPC_outfileview.shlb - MWProject_PPC_filecreatorMOZZ - MWProject_PPC_filetypeshlb - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_machinecodelisting0 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_syminfo0 - MWCodeGen_X86_codeviewinfo1 - MWCodeGen_X86_extinst_cmov_fcomi0 - MWCodeGen_X86_extinst_sse0 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showSourcefalse - PDisasmX86_showHextrue - PDisasmX86_showRelocationtrue - PDisasmX86_showCommentsfalse - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showDatatrue - PDisasmX86_showRawfalse - PDisasmX86_verbosefalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV1 - - - MWProject_X86_typeApplication - MWProject_X86_outfilenoname.exe - MWProject_X86_baseaddress4194304 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWProject_X86_importlib - xpidl Settings - 0001000101000000000000000000000000000000000000000000000000000000 - 0000000000000000 - - - - - Name - InterfacesStubs - MacOS - Library - Debug - - - Name - NSRuntime.shlb - MacOS - Library - Debug - - - Name - NSStdLib.shlb - MacOS - Library - Debug - - - Name - nsScrollingView.cpp - MacOS - Text - Debug - - - Name - nsViewFactory.cpp - MacOS - Text - Debug - - - Name - nsView.cpp - MacOS - Text - Debug - - - Name - gfx.shlb - MacOS - Library - - - - Name - xpcom.shlb - MacOS - Library - - - - Name - NSPR20.shlb - MacOS - Library - - - - Name - NSComponentStartup.o - MacOS - Library - - - - Name - nsScrollPortView.cpp - MacOS - Text - - - - Name - nsViewManager.cpp - MacOS - Text - Debug - - - - - Name - NSComponentStartup.o - MacOS - - - Name - InterfacesStubs - MacOS - - - Name - NSRuntime.shlb - MacOS - - - Name - NSStdLib.shlb - MacOS - - - Name - nsScrollingView.cpp - MacOS - - - Name - nsViewFactory.cpp - MacOS - - - Name - nsView.cpp - MacOS - - - Name - gfx.shlb - MacOS - - - Name - xpcom.shlb - MacOS - - - Name - NSPR20.shlb - MacOS - - - Name - nsScrollPortView.cpp - MacOS - - - Name - nsViewManager.cpp - MacOS - - - - - - - viewDebug.shlb - view.shlb - - - - view - - viewDebug.shlb - Name - nsViewFactory.cpp - MacOS - - - viewDebug.shlb - Name - nsViewManager.cpp - MacOS - - - viewDebug.shlb - Name - nsView.cpp - MacOS - - - viewDebug.shlb - Name - nsScrollingView.cpp - MacOS - - - viewDebug.shlb - Name - nsScrollPortView.cpp - MacOS - - - NS Libraries - Optimized - - view.shlb - Name - gfx.shlb - MacOS - - - view.shlb - Name - NSPR20.shlb - MacOS - - - view.shlb - Name - xpcom.shlb - MacOS - - - view.shlb - Name - NSRuntime.shlb - MacOS - - - view.shlb - Name - NSStdLib.shlb - MacOS - - - Debug - - viewDebug.shlb - Name - gfxDebug.shlb - MacOS - - - viewDebug.shlb - Name - NSPR20Debug.shlb - MacOS - - - viewDebug.shlb - Name - NSRuntimeDebug.shlb - MacOS - - - viewDebug.shlb - Name - NSStdLibDebug.shlb - MacOS - - - viewDebug.shlb - Name - xpcomDebug.shlb - MacOS - - - - System Libraries - - viewDebug.shlb - Name - NSComponentStartup.o - MacOS - - - viewDebug.shlb - Name - InterfacesStubs - MacOS - - - - - diff --git a/view/src/Makefile.in b/view/src/Makefile.in index e64fe963e34..8ac500bb05c 100644 --- a/view/src/Makefile.in +++ b/view/src/Makefile.in @@ -61,6 +61,3 @@ EXTRA_DSO_LDOPTS = \ $(NULL) include $(topsrcdir)/config/rules.mk - -DEFINES += -D_IMPL_NS_VIEW - diff --git a/view/src/makefile.win b/view/src/makefile.win index bf4bc77e21c..e69de29bb2d 100644 --- a/view/src/makefile.win +++ b/view/src/makefile.win @@ -1,61 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\.. - -MODULE = view -LIBRARY_NAME = gkview -MODULE_NAME = nsViewModule -REQUIRES = xpcom \ - string \ - layout \ - gfx \ - widget \ - dom \ - locale \ - pref \ - content \ - necko \ - $(NULL) - -DEFINES =-D_IMPL_NS_VIEW -DWIN32_LEAN_AND_MEAN - -OBJS = \ - .\$(OBJDIR)\nsView.obj \ - .\$(OBJDIR)\nsScrollPortView.obj \ - .\$(OBJDIR)\nsScrollingView.obj \ - .\$(OBJDIR)\nsViewManager.obj \ - .\$(OBJDIR)\nsViewFactory.obj \ - $(NULL) - - -LCFLAGS = \ - $(LCFLAGS) \ - -D_IMPL_NS_VIEW \ - $(NULL) - -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(DIST)\lib\gkgfx.lib \ - $(DIST)\lib\util.lib \ - $(LIBNSPR) - -include <$(DEPTH)\config\rules.mak> diff --git a/xpcom/base/nsComObsolete.h b/xpcom/base/nsComObsolete.h index ec6ee39162a..37b5b5cc55c 100644 --- a/xpcom/base/nsComObsolete.h +++ b/xpcom/base/nsComObsolete.h @@ -43,12 +43,6 @@ #define NS_WIDGET NS_IMPORT #endif -#ifdef _IMPL_NS_VIEW -#define NS_VIEW NS_EXPORT -#else -#define NS_VIEW NS_IMPORT -#endif - #ifdef _IMPL_NS_GFXNONXP #define NS_GFXNONXP NS_EXPORT #define NS_GFXNONXP_(type) NS_EXPORT_(type) diff --git a/xpcom/reflect/xptcall/tests/Makefile.in b/xpcom/reflect/xptcall/tests/Makefile.in index de55cd28a12..de043d2bb52 100644 --- a/xpcom/reflect/xptcall/tests/Makefile.in +++ b/xpcom/reflect/xptcall/tests/Makefile.in @@ -40,8 +40,6 @@ LIBS = \ include $(topsrcdir)/config/rules.mk -DEFINES += -DUSE_NSREG - # For _write(). ifeq ($(OS_ARCH),BSD_OS) OS_LIBS += -lgcc diff --git a/xpcom/reflect/xptcall/tests/makefile.win b/xpcom/reflect/xptcall/tests/makefile.win index 63b006d91a4..e69de29bb2d 100644 --- a/xpcom/reflect/xptcall/tests/makefile.win +++ b/xpcom/reflect/xptcall/tests/makefile.win @@ -1,47 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -REQUIRES = xpcom \ - $(NULL) - -MAKE_OBJ_TYPE = EXE -PROG1 = .\$(OBJDIR)\TestXPTCInvoke.exe -PROGRAMS = $(PROG1) - -LCFLAGS=-DUSE_NSREG -DWIN32_LEAN_AND_MEAN - -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin - -for %p in ($(TESTCASES)) do $(MAKE_INSTALL) %p $(DIST)\bin - -clobber:: - -for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p - -$(PROG1): $(OBJDIR) TestXPTCInvoke.cpp diff --git a/xpcom/reflect/xptinfo/tests/Makefile.in b/xpcom/reflect/xptinfo/tests/Makefile.in index 35fd295fd96..a1d1afc0243 100644 --- a/xpcom/reflect/xptinfo/tests/Makefile.in +++ b/xpcom/reflect/xptinfo/tests/Makefile.in @@ -39,7 +39,7 @@ LIBS = \ include $(topsrcdir)/config/rules.mk -DEFINES += -DUSE_NSREG -DEXPORT_XPTI_API +DEFINES += -DEXPORT_XPTI_API ifeq ($(OS_ARCH), WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/xpcom/reflect/xptinfo/tests/makefile.win b/xpcom/reflect/xptinfo/tests/makefile.win index c2130ff839b..e69de29bb2d 100644 --- a/xpcom/reflect/xptinfo/tests/makefile.win +++ b/xpcom/reflect/xptinfo/tests/makefile.win @@ -1,48 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1999 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - - -REQUIRES = xpcom \ - $(NULL) -MAKE_OBJ_TYPE = EXE -PROG1 = .\$(OBJDIR)\TestInterfaceInfo.exe -PROGRAMS = $(PROG1) - -LCFLAGS=-DUSE_NSREG -DEXPORT_XPTI_API -DWIN32_LEAN_AND_MEAN - -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin - -for %p in ($(TESTCASES)) do $(MAKE_INSTALL) %p $(DIST)\bin - -clobber:: - -for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p - -$(PROG1): $(OBJDIR) TestInterfaceInfo.cpp - diff --git a/xpcom/tests/Makefile.in b/xpcom/tests/Makefile.in index 0822ecd63b6..eca98de2ef9 100644 --- a/xpcom/tests/Makefile.in +++ b/xpcom/tests/Makefile.in @@ -75,7 +75,6 @@ endif include $(topsrcdir)/config/rules.mk -DEFINES += -DUSE_NSREG LOCAL_INCLUDES = \ -I$(srcdir)/../ds \ -I$(srcdir)/services \ diff --git a/xpcom/tests/makefile.win b/xpcom/tests/makefile.win index 0d1f31f5d0a..e69de29bb2d 100644 --- a/xpcom/tests/makefile.win +++ b/xpcom/tests/makefile.win @@ -1,116 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\.. -REQUIRES = xpcom \ - string \ - necko \ - $(NULL) -include <$(DEPTH)/config/config.mak> - - - -DIRS = dynamic windows services - -MAKE_OBJ_TYPE = EXE -PROG1 = .\$(OBJDIR)\TestFactory.exe -PROG3 = .\$(OBJDIR)\TestArray.exe -PROG4 = .\$(OBJDIR)\TestID.exe -PROG5 = .\$(OBJDIR)\TestServMgr.exe -#PROG6 = .\$(OBJDIR)\TimerTest.exe -PROG7 = .\$(OBJDIR)\TestAtoms.exe -PROG8 = .\$(OBJDIR)\nsIFileTest.exe -PROG9 = .\$(OBJDIR)\TestCRT.exe -PROG12 = .\$(OBJDIR)\TestAutoLock.exe -PROG13 = .\$(OBJDIR)\TestThreads.exe -PROG14 = .\$(OBJDIR)\TestObserverService.exe -PROG16 = .\$(OBJDIR)\TestPipes.exe -PROG17 = .\$(OBJDIR)\TestShutdown.exe -PROG18 = .\$(OBJDIR)\TestStackCrawl.exe -PROG20 = .\$(OBJDIR)\nsIFileEnumerator.exe -PROG21 = .\$(OBJDIR)\TestCOMPtrEq.exe -PROG22 = .\$(OBJDIR)\TestCallTemplates.exe -PROG23 = .\$(OBJDIR)\TestPermanentAtoms.exe -PROG24 = .\$(OBJDIR)\TestDeque.exe - -RESFILE = timer.res - -PROGRAMS = $(PROG1) \ - $(PROG3) \ - $(PROG4) \ - $(PROG5) \ - $(PROG6) \ - $(PROG7) \ - $(PROG8) \ - $(PROG9) \ - $(PROG10) \ - $(PROG12) \ - $(PROG13) \ - $(PROG14) \ - $(PROG16) \ - $(PROG17) \ - $(PROG18) \ - $(PROG20) \ - $(PROG21) \ - $(PROG22) \ - $(PROG23) \ - $(PROG24) \ - $(NULL) - -LCFLAGS=-DUSE_NSREG -GX - - -LINCS= \ - -Iservices \ - -I..\ds \ - $(NULL) - -LLIBS= \ - $(DIST)\lib\xpcom.lib \ - $(LIBNSPR) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin - -clobber:: - -for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p - -$(PROG1): $(OBJDIR) TestFactory.cpp -$(PROG3): $(OBJDIR) TestArray.cpp -$(PROG4): $(OBJDIR) TestID.cpp -$(PROG5): $(OBJDIR) TestServMgr.cpp -#$(PROG6): $(OBJDIR) TimerTest.cpp $(RESFILE) -$(PROG7): $(OBJDIR) TestAtoms.cpp -$(PROG8): $(OBJDIR) nsIFileTest.cpp -$(PROG9): $(OBJDIR) TestCRT.cpp -$(PROG12): $(OBJDIR) TestAutoLock.cpp -$(PROG13): $(OBJDIR) TestThreads.cpp -$(PROG14): $(OBJDIR) TestObserverService.cpp -$(PROG16): $(OBJDIR) TestPipes.cpp -$(PROG17): $(OBJDIR) TestShutdown.cpp -$(PROG18): $(OBJDIR) TestStackCrawl.cpp -$(PROG20): $(OBJDIR) nsIFileEnumerator.cpp -$(PROG21): $(OBJDIR) TestCOMPtrEq.cpp -$(PROG22): $(OBJDIR) TestCallTemplates.cpp -$(PROG23): $(OBJDIR) TestPermanentAtoms.cpp -$(PROG24): $(OBJDIR) TestDeque.cpp diff --git a/xpcom/tools/registry/Makefile.in b/xpcom/tools/registry/Makefile.in index 40ddf61e964..2216793942f 100644 --- a/xpcom/tools/registry/Makefile.in +++ b/xpcom/tools/registry/Makefile.in @@ -40,5 +40,3 @@ LIBS = \ include $(topsrcdir)/config/rules.mk -DEFINES += -DUSE_NSREG - diff --git a/xpcom/typelib/xpt/tests/Makefile.in b/xpcom/typelib/xpt/tests/Makefile.in index a748ef04d09..af2c1936ea8 100644 --- a/xpcom/typelib/xpt/tests/Makefile.in +++ b/xpcom/typelib/xpt/tests/Makefile.in @@ -40,7 +40,7 @@ LIBS = \ include $(topsrcdir)/config/rules.mk -DEFINES += -DEXPORT_XPT_API -DUSE_NSREG +DEFINES += -DEXPORT_XPT_API ifeq ($(OS_ARCH),WINNT) DEFINES += -DWIN32_LEAN_AND_MEAN endif diff --git a/xpcom/typelib/xpt/tests/makefile.win b/xpcom/typelib/xpt/tests/makefile.win index 183c343cb18..e69de29bb2d 100644 --- a/xpcom/typelib/xpt/tests/makefile.win +++ b/xpcom/typelib/xpt/tests/makefile.win @@ -1,48 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - -REQUIRES = xpcom \ - $(NULL) - -MAKE_OBJ_TYPE = EXE -PROG1 = .\$(OBJDIR)\PrimitiveTest.exe -PROG2 = .\$(OBJDIR)\SimpleTypeLib.exe -PROGRAMS = $(PROG1) $(PROG2) - -LCFLAGS=-DWIN32_LEAN_AND_MEAN -DEXPORT_XPT_API -DUSE_NSREG - -LLIBS= \ - $(DIST)\lib\xpcomxpt_s.lib \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin - -for %p in ($(TESTCASES)) do $(MAKE_INSTALL) %p $(DIST)\bin - -clobber:: - -for %p in ($(PROGRAMS)) do $(RM) %p $(DIST)\bin\%p - -$(PROG1): $(OBJDIR) PrimitiveTest.c -$(PROG2): $(OBJDIR) SimpleTypeLib.c diff --git a/xpcom/typelib/xpt/tools/Makefile.in b/xpcom/typelib/xpt/tools/Makefile.in index d1e6b95c9a5..af978c178fc 100644 --- a/xpcom/typelib/xpt/tools/Makefile.in +++ b/xpcom/typelib/xpt/tools/Makefile.in @@ -43,7 +43,7 @@ include $(topsrcdir)/config/rules.mk # Compile directly against the static lib, so we can use the tools # during the build without the shared library path being set. ifeq ($(OS_ARCH),WINNT) -DEFINES += -DUSE_NSREG -DWIN32_LEAN_AND_MEAN -DEXPORT_XPT_API +DEFINES += -DWIN32_LEAN_AND_MEAN -DEXPORT_XPT_API endif LIBS = $(DIST)/lib/$(LIB_PREFIX)xpt.$(LIB_SUFFIX) diff --git a/xpcom/typelib/xpt/tools/makefile.win b/xpcom/typelib/xpt/tools/makefile.win index 6c68b22778c..e69de29bb2d 100644 --- a/xpcom/typelib/xpt/tools/makefile.win +++ b/xpcom/typelib/xpt/tools/makefile.win @@ -1,55 +0,0 @@ -#!nmake -# -# 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 Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): - -DEPTH=..\..\..\.. - - -REQUIRES = xpcom \ - $(NULL) -MAKE_OBJ_TYPE = EXE -PROG1 = .\$(OBJDIR)\xpt_dump.exe -PROG2 = .\$(OBJDIR)\xpt_link.exe -PROGRAMS = $(PROG1) $(PROG2) - -LCFLAGS=-DUSE_NSREG -DWIN32_LEAN_AND_MEAN -DEXPORT_XPT_API - -LLIBS= \ - $(DIST)\lib\xpcomxpt_s.lib \ - $(NULL) - -MOZ_NO_COVERAGE=1 - -include <$(DEPTH)\config\rules.mak> - -# build these xpt tools early so that it'll be -# available along with xpidl, which also must be built early. -libs:: $(PROGRAMS) - -for %p in ($(PROGRAMS)) do $(MAKE_INSTALL) %p $(DIST)\bin - -clobber:: - -for %p in ($(PROGRAMS)) do $(RM) %p - -$(RM) $(DIST)\bin\xpt_dump.exe - -$(RM) $(DIST)\bin\xpt_link.exe - -$(PROG1): $(OBJDIR) xpt_dump.c - -$(PROG2): $(OBJDIR) xpt_link.c -