mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 683416 - A: Remove build support for standalone Necko and standalone Transformiix XSLT; r=khuey
This commit is contained in:
parent
7e5eb7d196
commit
1029411f7a
@ -251,7 +251,6 @@ MOZ_XTF = @MOZ_XTF@
|
||||
MOZ_SVG_DLISTS = @MOZ_SVG_DLISTS@
|
||||
MOZ_CAIRO_CFLAGS = @MOZ_CAIRO_CFLAGS@
|
||||
MOZ_SMIL = @MOZ_SMIL@
|
||||
MOZ_XSLT_STANDALONE = @MOZ_XSLT_STANDALONE@
|
||||
|
||||
MOZ_PREF_EXTENSIONS = @MOZ_PREF_EXTENSIONS@
|
||||
|
||||
|
@ -4485,7 +4485,6 @@ MOZ_TOOLKIT_SEARCH=1
|
||||
MOZ_UI_LOCALE=en-US
|
||||
MOZ_UNIVERSALCHARDET=1
|
||||
MOZ_URL_CLASSIFIER=
|
||||
MOZ_XSLT_STANDALONE=
|
||||
MOZ_XTF=1
|
||||
MOZ_XUL=1
|
||||
MOZ_ZIPWRITER=1
|
||||
@ -4541,8 +4540,6 @@ MOZ_ARG_ENABLE_STRING(application,
|
||||
Options include:
|
||||
browser (Firefox)
|
||||
xulrunner
|
||||
content/xslt (Standalone Transformiix XSLT)
|
||||
netwerk (Standalone Necko)
|
||||
tools/update-packaging (AUS-related packaging tools)],
|
||||
[ MOZ_BUILD_APP=$enableval ] )
|
||||
|
||||
@ -4616,11 +4613,6 @@ browser)
|
||||
xulrunner)
|
||||
AC_DEFINE(MOZ_XULRUNNER)
|
||||
;;
|
||||
|
||||
content/xslt)
|
||||
AC_DEFINE(TX_EXE)
|
||||
;;
|
||||
|
||||
esac
|
||||
|
||||
AC_SUBST(MOZ_BUILD_APP)
|
||||
@ -8543,7 +8535,6 @@ AC_SUBST(MOZ_PERMISSIONS)
|
||||
AC_SUBST(MOZ_XTF)
|
||||
AC_SUBST(MOZ_PREF_EXTENSIONS)
|
||||
AC_SUBST(MOZ_SMIL)
|
||||
AC_SUBST(MOZ_XSLT_STANDALONE)
|
||||
AC_SUBST(MOZ_JS_LIBS)
|
||||
AC_SUBST(MOZ_PSM)
|
||||
AC_SUBST(MOZ_DEBUG)
|
||||
|
@ -44,8 +44,4 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
PARALLEL_DIRS = base xml xpath xslt
|
||||
|
||||
ifdef MOZ_XSLT_STANDALONE
|
||||
PARALLEL_DIRS += main
|
||||
endif
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
@ -46,20 +46,12 @@ MODULE = transformiix
|
||||
LIBRARY_NAME = txbase_s
|
||||
LIBXUL_LIBRARY = 1
|
||||
|
||||
|
||||
|
||||
CPPSRCS = txDouble.cpp \
|
||||
txList.cpp \
|
||||
txExpandedNameMap.cpp \
|
||||
txNamespaceMap.cpp \
|
||||
txURIUtils.cpp
|
||||
|
||||
ifdef MOZ_XSLT_STANDALONE
|
||||
CPPSRCS += txSimpleErrorObserver.cpp \
|
||||
txStringUtils.cpp \
|
||||
txAtoms.cpp
|
||||
endif
|
||||
|
||||
# we don't want the shared lib, but we want to force the creation of a
|
||||
# static lib.
|
||||
FORCE_STATIC_LIB = 1
|
||||
|
@ -46,23 +46,11 @@ MODULE = transformiix
|
||||
LIBRARY_NAME = txxml_s
|
||||
LIBXUL_LIBRARY = 1
|
||||
|
||||
|
||||
|
||||
CPPSRCS = \
|
||||
txXMLUtils.cpp \
|
||||
txXMLParser.cpp \
|
||||
$(NULL)
|
||||
|
||||
ifdef MOZ_XSLT_STANDALONE
|
||||
CPPSRCS += \
|
||||
txAttr.cpp \
|
||||
txDocument.cpp \
|
||||
txElement.cpp \
|
||||
txNodeDefinition.cpp \
|
||||
txProcessingInstruction.cpp \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
# we don't want the shared lib, but we want to force the creation of a
|
||||
# static lib.
|
||||
FORCE_STATIC_LIB = 1
|
||||
|
@ -46,8 +46,6 @@ MODULE = transformiix
|
||||
LIBRARY_NAME = txxpath_s
|
||||
LIBXUL_LIBRARY = 1
|
||||
|
||||
|
||||
|
||||
CPPSRCS = \
|
||||
txBooleanExpr.cpp \
|
||||
txBooleanResult.cpp \
|
||||
@ -79,18 +77,14 @@ CPPSRCS = \
|
||||
txUnionNodeTest.cpp \
|
||||
txUnaryExpr.cpp \
|
||||
txVariableRefExpr.cpp \
|
||||
txXPathOptimizer.cpp
|
||||
ifndef MOZ_XSLT_STANDALONE
|
||||
CPPSRCS += nsXPathEvaluator.cpp \
|
||||
txXPathOptimizer.cpp \
|
||||
nsXPathEvaluator.cpp \
|
||||
nsXPathExpression.cpp \
|
||||
nsXPathNSResolver.cpp \
|
||||
nsXPathResult.cpp \
|
||||
txMozillaXPathTreeWalker.cpp \
|
||||
txNodeSetAdaptor.cpp \
|
||||
txXPCOMExtensionFunction.cpp
|
||||
else
|
||||
CPPSRCS += txStandaloneXPathTreeWalker.cpp
|
||||
endif
|
||||
|
||||
# we don't want the shared lib, but we want to force the creation of a
|
||||
# static lib.
|
||||
|
@ -46,8 +46,6 @@ MODULE = transformiix
|
||||
LIBRARY_NAME = txxslt_s
|
||||
LIBXUL_LIBRARY = 1
|
||||
|
||||
|
||||
|
||||
CPPSRCS = \
|
||||
txNodeSorter.cpp \
|
||||
txXPathResultComparator.cpp \
|
||||
@ -74,20 +72,11 @@ CPPSRCS = \
|
||||
txFormatNumberFunctionCall.cpp \
|
||||
txGenerateIdFunctionCall.cpp \
|
||||
txKeyFunctionCall.cpp \
|
||||
txXSLTEnvironmentFunctionCall.cpp
|
||||
|
||||
ifdef MOZ_XSLT_STANDALONE
|
||||
CPPSRCS += txHTMLOutput.cpp \
|
||||
txStandaloneXSLTProcessor.cpp \
|
||||
txStandaloneStylesheetCompiler.cpp \
|
||||
txTextOutput.cpp \
|
||||
txXMLOutput.cpp
|
||||
else
|
||||
CPPSRCS += txMozillaStylesheetCompiler.cpp \
|
||||
txXSLTEnvironmentFunctionCall.cpp \
|
||||
txMozillaStylesheetCompiler.cpp \
|
||||
txMozillaTextOutput.cpp \
|
||||
txMozillaXMLOutput.cpp \
|
||||
txMozillaXSLTProcessor.cpp
|
||||
endif
|
||||
|
||||
# For nsDependentJSString
|
||||
LOCAL_INCLUDES += \
|
||||
@ -113,8 +102,4 @@ INCLUDES += \
|
||||
-I$(srcdir)/../../../base/src \
|
||||
$(NULL)
|
||||
|
||||
ifdef MOZ_XSLT_STANDALONE
|
||||
DEFINES += -DXML_DTD -DXML_UNICODE
|
||||
else
|
||||
DEFINES += -D_IMPL_NS_LAYOUT
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user