diff options
Diffstat (limited to 'libxml2/win32')
23 files changed, 11971 insertions, 0 deletions
diff --git a/libxml2/win32/Makefile.bcb b/libxml2/win32/Makefile.bcb new file mode 100644 index 0000000..7129c61 --- /dev/null +++ b/libxml2/win32/Makefile.bcb @@ -0,0 +1,355 @@ +# Makefile for libxml2, specific for Windows, BCB6 and Borland make. +# +# Take a look at the beginning and modify the variables to suit your +# environment. Having done that, you can do a +# +# make [all] to build the libxml and the accompanying utilities. +# make clean to remove all compiler output files and return to a +# clean state. +# make rebuild to rebuild everything from scratch. This basically does +# a 'nmake clean' and then a 'nmake all'. +# make install to install the library and its header files. +# +# August 2003, Eric Zurcher <Eric.Zurcher@csiro.au> +# based on the MSVC version of +# March 2002, Igor Zlatkovic <igor@zlatkovic.com> +# + +# There should never be a need to modify anything below this line. +# ---------------------------------------------------------------- + +AUTOCONF = .\config.bcb +!include $(AUTOCONF) + +!if !$d(BCB) +BCB = $(MAKEDIR)\.. +!endif +.autodepend + +# Names of various input and output components. +XML_NAME = xml2 +XML_BASENAME = lib$(XML_NAME) +XML_SO = $(XML_BASENAME).dll +XML_IMP = $(XML_BASENAME).lib +XML_DEF = $(XML_BASENAME).def +XML_A = $(XML_BASENAME)_a.lib +DUMMY = dir.exists + +# Place where we let the compiler put its intermediate trash. +BINDIR = bin.bcb +XML_INTDIR = int.bcb +XML_INTDIR_A = int.a.bcb +UTILS_INTDIR = int.utils.bcb + +# The preprocessor and its options. +CPP = cpp32.exe -P- -DWIN32 +CPPFLAGS = -I"$(XML_SRCDIR)\include" -DNOLIBTOOL +!if "$(WITH_THREADS)" != "no" +CPPFLAGS = $(CPPFLAGS) -D_REENTRANT -D__MT__ +!endif + +# The compiler and its options. +CC = bcc32.exe +CFLAGS = -q -DWIN32 -D_NO_VCL -D_WINDOWS -D_MBCS -DEILSEQ=2 -DNOLIBTOOL -w- +CFLAGS = $(CFLAGS) -I"$(XML_SRCDIR)" -I"$(XML_SRCDIR)\include" -I"$(INCPREFIX)" -I"$(INCLUDE)" +!if "$(WITH_THREADS)" != "no" +CFLAGS = $(CFLAGS) -D_REENTRANT -tWM +!endif +!if "$(DYNRUNTIME)" == "1" +CFLAGS = $(CFLAGS) -tWR +!endif +!if "$(WITH_THREADS)" == "yes" || "$(WITH_THREADS)" == "ctls" +CFLAGS = $(CFLAGS) -DHAVE_WIN32_THREADS -DHAVE_COMPILER_TLS +!else if "$(WITH_THREADS)" == "native" +CFLAGS = $(CFLAGS) -DHAVE_WIN32_THREADS +!else if "$(WITH_THREADS)" == "posix" +CFLAGS = $(CFLAGS) -DHAVE_PTHREAD_H +!endif +!if "$(WITH_ZLIB)" == "1" +CFLAGS = $(CFLAGS) -DHAVE_ZLIB_H +!endif +!if "$(WITH_LZMA)" == "1" +CFLAGS = $(CFLAGS) -DHAVE_LZMA_H +!endif + +# The linker and its options. +LD = ilink32.exe +LDFLAGS = -q -U$(LIBXML_MAJOR_VERSION).$(LIBXML_MINOR_VERSION) +LDFLAGS = $(LDFLAGS) -L"$(BINDIR);$(LIBPREFIX);$(LIB);$(BCB)\lib;$(BCB)\lib\PSdk" +LIBS = import32.lib +!if "$(WITH_THREADS)" != "no" && "$(DYNRUNTIME)" == "1" +LIBS = $(LIBS) cw32mti.lib +!elif "$(WITH_THREADS)" != "no" +LIBS = $(LIBS) cw32mt.lib +!elif "$(DYNRUNTIME)" == "1" +LIBS = $(LIBS) cw32i.lib +!else +LIBS = $(LIBS) cw32.lib +!endif +!if "$(WITH_FTP)" == "1" || "$(WITH_HTTP)" == "1" +LIBS = $(LIBS) wsock32.lib ws2_32.lib +!endif +!if "$(WITH_ICONV)" == "1" +LIBS = $(LIBS) iconvomf.lib +!endif +!if "$(WITH_ZLIB)" == "1" +LIBS = $(LIBS) zlibomf.lib +!endif +!if "$(WITH_LZMA)" == "1" +LIBS = $(LIBS) liblzma.lib +!endif +!if "$(WITH_THREADS)" == "posix" +LIBS = $(LIBS) pthreadVC.lib +!endif +!if "$(WITH_MODULES)" == "1" +LIBS = $(LIBS) kernel32.lib +!endif + +# The archiver and its options. +AR = tlib.exe +ARFLAGS = /P64 /0 + +# Optimisation and debug symbols. +!if "$(DEBUG)" == "1" +CFLAGS = $(CFLAGS) -D_DEBUG -Od -v +LDFLAGS = $(LDFLAGS) -v +!else +CFLAGS = $(CFLAGS) -DNDEBUG -O2 +LDFLAGS = $(LDFLAGS) +!endif + +# Libxml object files. +XML_OBJS = $(XML_INTDIR)\buf.obj\ + $(XML_INTDIR)\c14n.obj\ + $(XML_INTDIR)\catalog.obj\ + $(XML_INTDIR)\chvalid.obj\ + $(XML_INTDIR)\debugXML.obj\ + $(XML_INTDIR)\dict.obj\ + $(XML_INTDIR)\DOCBparser.obj\ + $(XML_INTDIR)\encoding.obj\ + $(XML_INTDIR)\entities.obj\ + $(XML_INTDIR)\error.obj\ + $(XML_INTDIR)\globals.obj\ + $(XML_INTDIR)\hash.obj\ + $(XML_INTDIR)\HTMLparser.obj\ + $(XML_INTDIR)\HTMLtree.obj\ + $(XML_INTDIR)\legacy.obj\ + $(XML_INTDIR)\list.obj\ + $(XML_INTDIR)\nanoftp.obj\ + $(XML_INTDIR)\nanohttp.obj\ + $(XML_INTDIR)\parser.obj\ + $(XML_INTDIR)\parserInternals.obj\ + $(XML_INTDIR)\pattern.obj\ + $(XML_INTDIR)\relaxng.obj\ + $(XML_INTDIR)\SAX.obj\ + $(XML_INTDIR)\SAX2.obj\ + $(XML_INTDIR)\schematron.obj\ + $(XML_INTDIR)\threads.obj\ + $(XML_INTDIR)\tree.obj\ + $(XML_INTDIR)\uri.obj\ + $(XML_INTDIR)\valid.obj\ + $(XML_INTDIR)\xinclude.obj\ + $(XML_INTDIR)\xlink.obj\ + $(XML_INTDIR)\xmlIO.obj\ + $(XML_INTDIR)\xmlmemory.obj\ + $(XML_INTDIR)\xmlreader.obj\ + $(XML_INTDIR)\xmlregexp.obj\ + $(XML_INTDIR)\xmlmodule.obj\ + $(XML_INTDIR)\xmlsave.obj\ + $(XML_INTDIR)\xmlschemas.obj\ + $(XML_INTDIR)\xmlschemastypes.obj\ + $(XML_INTDIR)\xmlunicode.obj\ + $(XML_INTDIR)\xmlwriter.obj\ + $(XML_INTDIR)\xpath.obj\ + $(XML_INTDIR)\xpointer.obj\ + $(XML_INTDIR)\xmlstring.obj + +# Static libxml object files. +XML_OBJS_A = $(XML_INTDIR_A)\buf.obj\ + $(XML_INTDIR_A)\c14n.obj\ + $(XML_INTDIR_A)\catalog.obj\ + $(XML_INTDIR_A)\chvalid.obj\ + $(XML_INTDIR_A)\debugXML.obj\ + $(XML_INTDIR_A)\dict.obj\ + $(XML_INTDIR_A)\DOCBparser.obj\ + $(XML_INTDIR_A)\encoding.obj\ + $(XML_INTDIR_A)\entities.obj\ + $(XML_INTDIR_A)\error.obj\ + $(XML_INTDIR_A)\globals.obj\ + $(XML_INTDIR_A)\hash.obj\ + $(XML_INTDIR_A)\HTMLparser.obj\ + $(XML_INTDIR_A)\HTMLtree.obj\ + $(XML_INTDIR_A)\legacy.obj\ + $(XML_INTDIR_A)\list.obj\ + $(XML_INTDIR_A)\nanoftp.obj\ + $(XML_INTDIR_A)\nanohttp.obj\ + $(XML_INTDIR_A)\parser.obj\ + $(XML_INTDIR_A)\parserInternals.obj\ + $(XML_INTDIR_A)\pattern.obj\ + $(XML_INTDIR_A)\relaxng.obj\ + $(XML_INTDIR_A)\SAX.obj\ + $(XML_INTDIR_A)\SAX2.obj\ + $(XML_INTDIR_A)\schematron.obj\ + $(XML_INTDIR_A)\threads.obj\ + $(XML_INTDIR_A)\tree.obj\ + $(XML_INTDIR_A)\uri.obj\ + $(XML_INTDIR_A)\valid.obj\ + $(XML_INTDIR_A)\xinclude.obj\ + $(XML_INTDIR_A)\xlink.obj\ + $(XML_INTDIR_A)\xmlIO.obj\ + $(XML_INTDIR_A)\xmlmemory.obj\ + $(XML_INTDIR_A)\xmlreader.obj\ + $(XML_INTDIR_A)\xmlregexp.obj\ + $(XML_INTDIR_A)\xmlmodule.obj\ + $(XML_INTDIR_A)\xmlsave.obj\ + $(XML_INTDIR_A)\xmlschemas.obj\ + $(XML_INTDIR_A)\xmlschemastypes.obj\ + $(XML_INTDIR_A)\xmlunicode.obj\ + $(XML_INTDIR_A)\xmlwriter.obj\ + $(XML_INTDIR_A)\xpath.obj\ + $(XML_INTDIR_A)\xpointer.obj\ + $(XML_INTDIR_A)\xmlstring.obj + +# Xmllint and friends executables. +UTILS = $(BINDIR)\xmllint.exe\ + $(BINDIR)\xmlcatalog.exe\ + $(BINDIR)\testAutomata.exe\ + $(BINDIR)\testC14N.exe\ + $(BINDIR)\testDocbook.exe\ + $(BINDIR)\testHTML.exe\ + $(BINDIR)\testReader.exe\ + $(BINDIR)\testRelax.exe\ + $(BINDIR)\testRegexp.exe\ + $(BINDIR)\testModule.exe\ + $(BINDIR)\testSAX.exe\ + $(BINDIR)\testSchemas.exe\ + $(BINDIR)\testURI.exe\ + $(BINDIR)\testXPath.exe\ + $(BINDIR)\runtest.exe\ + $(BINDIR)\runsuite.exe\ + $(BINDIR)\testapi.exe\ + $(BINDIR)\testlimits.exe + + +!if "$(WITH_THREADS)" == "yes" || "$(WITH_THREADS)" == "ctls" || "$(WITH_THREADS)" == "native" +UTILS = $(UTILS) $(BINDIR)\testThreadsWin32.exe +!else if "$(WITH_THREADS)" == "posix" +UTILS = $(UTILS) $(BINDIR)\testThreads.exe +!endif + + +all : libxml libxmla utils + +libxml : $(BINDIR)\$(XML_SO) + +libxmla : $(BINDIR)\$(XML_A) + +utils : $(UTILS) + +clean : + if exist $(XML_INTDIR) rmdir /S /Q $(XML_INTDIR) + if exist $(XML_INTDIR_A) rmdir /S /Q $(XML_INTDIR_A) + if exist $(UTILS_INTDIR) rmdir /S /Q $(UTILS_INTDIR) + if exist $(BINDIR) rmdir /S /Q $(BINDIR) + +distclean : clean + if exist config.* del config.* + if exist Makefile del Makefile + +rebuild : clean all + +install-libs : all + if not exist "$(INCPREFIX)\libxml2" mkdir "$(INCPREFIX)\libxml2" + if not exist "$(INCPREFIX)\libxml2\libxml" mkdir "$(INCPREFIX)\libxml2\libxml" + if not exist "$(BINPREFIX)" mkdir "$(BINPREFIX)" + if not exist "$(LIBPREFIX)" mkdir "$(LIBPREFIX)" + copy $(XML_SRCDIR)\include\libxml\*.h "$(INCPREFIX)\libxml2\libxml" + copy $(BINDIR)\$(XML_SO) "$(SOPREFIX)" + copy $(BINDIR)\$(XML_A) "$(LIBPREFIX)" + copy $(BINDIR)\$(XML_IMP) "$(LIBPREFIX)" + copy $(BINDIR)\*.exe "$(BINPREFIX)" + +install : install-libs + copy $(BINDIR)\*.exe "$(BINPREFIX)" + +install-dist : install-libs + copy $(BINDIR)\xml*.exe "$(BINPREFIX)" + +# This is a target for me, to make a binary distribution. Not for the public use, +# keep your hands off :-) +BDVERSION = $(LIBXML_MAJOR_VERSION).$(LIBXML_MINOR_VERSION).$(LIBXML_MICRO_VERSION) +BDPREFIX = $(XML_BASENAME)-$(BDVERSION).win32 +bindist : all + $(MAKE) /nologo PREFIX=$(BDPREFIX) SOPREFIX=$(BDPREFIX)\bin install-dist + cscript //NoLogo configure.js genreadme $(XML_BASENAME) $(BDVERSION) $(BDPREFIX)\readme.txt + + +# Makes the output directory. +$(BINDIR)\$(DUMMY) : + if not exist $(BINDIR) mkdir $(BINDIR) + touch $(BINDIR)\$(DUMMY) + +# Makes the libxml intermediate directory. +$(XML_INTDIR)\$(DUMMY) : + if not exist $(XML_INTDIR) mkdir $(XML_INTDIR) + touch $(XML_INTDIR)\$(DUMMY) + +# Makes the static libxml intermediate directory. +$(XML_INTDIR_A)\$(DUMMY) : + if not exist $(XML_INTDIR_A) mkdir $(XML_INTDIR_A) + touch $(XML_INTDIR_A)\$(DUMMY) + +# An implicit rule for libxml compilation. +{$(XML_SRCDIR)}.c{$(XML_INTDIR)}.obj: + $(CC) $(CFLAGS) -n$(XML_INTDIR) -c $< + +# An implicit rule for static libxml compilation. +{$(XML_SRCDIR)}.c{$(XML_INTDIR_A)}.obj: + $(CC) $(CFLAGS) -DLIBXML_STATIC -n$(XML_INTDIR_A)\ -c $< + +# Compiles libxml source. Uses the implicit rule for commands. +$(XML_OBJS) : $(XML_INTDIR)\$(DUMMY) + +# Compiles static libxml source. Uses the implicit rule for commands. +$(XML_OBJS_A) : $(XML_INTDIR_A)\$(DUMMY) + +#def4bcb.exe : def4bcb.c + +# Creates the export definition file (DEF) for libxml. +#$(XML_INTDIR)\$(XML_DEF) : $(XML_INTDIR)\$(DUMMY) $(XML_DEF).src def4bcb.exe +# $(CPP) $(CPPFLAGS) -o $(XML_INTDIR)\$(XML_DEF).tmp $(XML_DEF).src +# def4bcb -msnames < $(XML_INTDIR)\$(XML_DEF).tmp > $(XML_INTDIR)\$(XML_DEF) + +# Creates the libxml shared object. +$(BINDIR)\$(XML_SO) : $(BINDIR)\$(DUMMY) $(XML_OBJS) + $(LD) $(LDFLAGS) -Tpd -Gi c0d32.obj $(XML_OBJS),$(BINDIR)\$(XML_SO),,$(LIBS) + +#$(BINDIR)\$(XML_SO) : $(BINDIR)\$(DUMMY) $(XML_OBJS) $(XML_INTDIR)\$(XML_DEF) +# $(LD) $(LDFLAGS) -Tpd -Gi c0d32.obj $(XML_OBJS),$(BINDIR)\$(XML_SO),,$(LIBS),$(XML_INTDIR)\$(XML_DEF) + +# Creates the libxml archive. +$(BINDIR)\$(XML_A) : $(BINDIR)\$(DUMMY) $(XML_OBJS_A) + $(AR) $(BINDIR)\$(XML_A) $(ARFLAGS) /u $(XML_OBJS_A) + +# Makes the utils intermediate directory. +$(UTILS_INTDIR)\$(DUMMY) : + if not exist $(UTILS_INTDIR) mkdir $(UTILS_INTDIR) + touch $(UTILS_INTDIR)\$(DUMMY) + +# An implicit rule for xmllint and friends. +!if "$(STATIC)" == "1" +{$(UTILS_SRCDIR)}.c{$(BINDIR)}.exe: + $(CC) -DLIBXML_STATIC -w -tWC $(CFLAGS) -o$(UTILS_INTDIR)\$&.obj -c $< + $(LD) $(LDFLAGS) c0x32.obj $(UTILS_INTDIR)\$&.obj,$@,,$(LIBS) $(XML_A) +!else +{$(UTILS_SRCDIR)}.c{$(BINDIR)}.exe: + $(CC) $(CFLAGS) -tWC -o$(UTILS_INTDIR)\$&.obj -c $< + $(LD) $(LDFLAGS) c0x32.obj $(UTILS_INTDIR)\$&.obj $(XML_IMP),$@,,$(LIBS) +!endif + +# Builds xmllint and friends. Uses the implicit rule for commands. +$(UTILS) : $(UTILS_INTDIR)\$(DUMMY) $(BINDIR)\$(DUMMY) $(BINDIR)\$(XML_SO) $(BINDIR)\$(XML_A) + +# Source dependences should be autogenerated somehow here, but how to +# do it? I have no clue. + diff --git a/libxml2/win32/Makefile.mingw b/libxml2/win32/Makefile.mingw new file mode 100644 index 0000000..1889376 --- /dev/null +++ b/libxml2/win32/Makefile.mingw @@ -0,0 +1,354 @@ +# Makefile for libxml2, specific for Windows, GCC (mingw) and GNU make. +# +# Take a look at the beginning and modify the variables to suit your +# environment. Having done that, you can do a +# +# nmake [all] to build the libxml and the accompanying utilities. +# nmake clean to remove all compiler output files and return to a +# clean state. +# nmake rebuild to rebuild everything from scratch. This basically does +# a 'nmake clean' and then a 'nmake all'. +# nmake install to install the library and its header files. +# +# November 2002, Igor Zlatkovic <igor@zlatkovic.com> + +# There should never be a need to modify anything below this line. +# ---------------------------------------------------------------- + +AUTOCONF = .\config.mingw +include $(AUTOCONF) + +# Names of various input and output components. +XML_NAME = xml2 +XML_BASENAME = lib$(XML_NAME) +XML_SO = $(XML_BASENAME).dll +XML_IMP = $(XML_BASENAME).lib +XML_A = $(XML_BASENAME).a + +# Place where we let the compiler put its output. +BINDIR = bin.mingw +XML_INTDIR = int.mingw +XML_INTDIR_A = int.a.mingw +UTILS_INTDIR = int.utils.mingw + +# The preprocessor and its options. +CPP = gcc.exe -E +CPPFLAGS += -I$(XML_SRCDIR)/include -DNOLIBTOOL +ifeq ($(WITH_THREADS),1) +CPPFLAGS += -D_REENTRANT +endif + +# The compiler and its options. +CC = gcc.exe +CFLAGS += -DWIN32 -D_WINDOWS -D_MBCS -DNOLIBTOOL +CFLAGS += -I$(XML_SRCDIR) -I$(XML_SRCDIR)/include -I$(INCPREFIX) $(INCLUDE) +ifneq ($(WITH_THREADS),no) +CFLAGS += -D_REENTRANT +endif +ifeq ($(WITH_THREADS),yes) +CFLAGS += -DHAVE_WIN32_THREADS -DHAVE_COMPILER_TLS +endif +ifeq ($(WITH_THREADS),ctls) +CFLAGS += -DHAVE_WIN32_THREADS -DHAVE_COMPILER_TLS +endif +ifeq ($(WITH_THREADS),native) +CFLAGS += -DHAVE_WIN32_THREADS +endif +ifeq ($(WITH_THREADS),posix) +CFLAGS += -DHAVE_PTHREAD_H +endif +ifeq ($(WITH_ZLIB),1) +CFLAGS += -DHAVE_ZLIB_H +endif +ifeq ($(WITH_LZMA),1) +CFLAGS += -DHAVE_LZMA_H +endif + +# The linker and its options. +LD = gcc.exe +LDFLAGS += -Wl,--major-image-version,$(LIBXML_MAJOR_VERSION) +LDFLAGS += -Wl,--minor-image-version,$(LIBXML_MINOR_VERSION) +LDFLAGS += -Wl,-L,$(BINDIR) -Wl,-L,$(LIBPREFIX) +LIBS = +ifeq ($(WITH_FTP),1) +CFLAGS += -D_WINSOCKAPI_ +LIBS += -lwsock32 -lws2_32 +endif +ifeq ($(WITH_HTTP),1) +CFLAGS += -D_WINSOCKAPI_ +LIBS += -lwsock32 -lws2_32 +endif +ifeq ($(WITH_ICONV),1) +LIBS += -liconv +endif +ifeq ($(WITH_ZLIB),1) +# Could be named differently +# LIBS += -lzdll +LIBS += -lz +endif +ifeq ($(WITH_LZMA),1) +LIBS += -llzma +endif +ifeq ($(WITH_THREADS),posix) +LIBS += -lpthreadGC +endif +ifeq ($(WITH_MODULES),1) +LIBS += -lkernel32 +endif + +LIBS += $(LIB) + +# The archiver and its options. +AR = ar.exe +ARFLAGS = -r + +# Optimisation and debug symbols. +ifeq ($(DEBUG),1) +CFLAGS += -D_DEBUG -g +LDFLAGS += +else +CFLAGS += -DNDEBUG -O2 +LDFLAGS += +endif + + +# Libxml object files. +XML_OBJS = $(XML_INTDIR)/buf.o\ + $(XML_INTDIR)/c14n.o\ + $(XML_INTDIR)/catalog.o\ + $(XML_INTDIR)/chvalid.o\ + $(XML_INTDIR)/debugXML.o\ + $(XML_INTDIR)/dict.o\ + $(XML_INTDIR)/DOCBparser.o\ + $(XML_INTDIR)/encoding.o\ + $(XML_INTDIR)/entities.o\ + $(XML_INTDIR)/error.o\ + $(XML_INTDIR)/globals.o\ + $(XML_INTDIR)/hash.o\ + $(XML_INTDIR)/HTMLparser.o\ + $(XML_INTDIR)/HTMLtree.o\ + $(XML_INTDIR)/legacy.o\ + $(XML_INTDIR)/list.o\ + $(XML_INTDIR)/nanoftp.o\ + $(XML_INTDIR)/nanohttp.o\ + $(XML_INTDIR)/parser.o\ + $(XML_INTDIR)/parserInternals.o\ + $(XML_INTDIR)/pattern.o\ + $(XML_INTDIR)/relaxng.o\ + $(XML_INTDIR)/SAX.o\ + $(XML_INTDIR)/SAX2.o\ + $(XML_INTDIR)/schematron.o\ + $(XML_INTDIR)/threads.o\ + $(XML_INTDIR)/tree.o\ + $(XML_INTDIR)/uri.o\ + $(XML_INTDIR)/valid.o\ + $(XML_INTDIR)/xinclude.o\ + $(XML_INTDIR)/xlink.o\ + $(XML_INTDIR)/xmlIO.o\ + $(XML_INTDIR)/xmlmemory.o\ + $(XML_INTDIR)/xmlreader.o\ + $(XML_INTDIR)/xmlregexp.o\ + $(XML_INTDIR)/xmlmodule.o\ + $(XML_INTDIR)/xmlsave.o\ + $(XML_INTDIR)/xmlschemas.o\ + $(XML_INTDIR)/xmlschemastypes.o\ + $(XML_INTDIR)/xmlunicode.o\ + $(XML_INTDIR)/xmlwriter.o\ + $(XML_INTDIR)/xpath.o\ + $(XML_INTDIR)/xpointer.o\ + $(XML_INTDIR)/xmlstring.o + +XML_SRCS = $(subst .o,.c,$(subst $(XML_INTDIR)/,$(XML_SRCDIR)/,$(XML_OBJS))) + +# Static libxml object files. +XML_OBJS_A = $(XML_INTDIR_A)/buf.o\ + $(XML_INTDIR_A)/c14n.o\ + $(XML_INTDIR_A)/catalog.o\ + $(XML_INTDIR_A)/chvalid.o\ + $(XML_INTDIR_A)/debugXML.o\ + $(XML_INTDIR_A)/dict.o\ + $(XML_INTDIR_A)/DOCBparser.o\ + $(XML_INTDIR_A)/encoding.o\ + $(XML_INTDIR_A)/entities.o\ + $(XML_INTDIR_A)/error.o\ + $(XML_INTDIR_A)/globals.o\ + $(XML_INTDIR_A)/hash.o\ + $(XML_INTDIR_A)/HTMLparser.o\ + $(XML_INTDIR_A)/HTMLtree.o\ + $(XML_INTDIR_A)/legacy.o\ + $(XML_INTDIR_A)/list.o\ + $(XML_INTDIR_A)/nanoftp.o\ + $(XML_INTDIR_A)/nanohttp.o\ + $(XML_INTDIR_A)/parser.o\ + $(XML_INTDIR_A)/parserInternals.o\ + $(XML_INTDIR_A)/pattern.o\ + $(XML_INTDIR_A)/relaxng.o\ + $(XML_INTDIR_A)/SAX.o\ + $(XML_INTDIR_A)/SAX2.o\ + $(XML_INTDIR_A)/schematron.o\ + $(XML_INTDIR_A)/threads.o\ + $(XML_INTDIR_A)/tree.o\ + $(XML_INTDIR_A)/uri.o\ + $(XML_INTDIR_A)/valid.o\ + $(XML_INTDIR_A)/xinclude.o\ + $(XML_INTDIR_A)/xlink.o\ + $(XML_INTDIR_A)/xmlIO.o\ + $(XML_INTDIR_A)/xmlmemory.o\ + $(XML_INTDIR_A)/xmlreader.o\ + $(XML_INTDIR_A)/xmlregexp.o\ + $(XML_INTDIR_A)/xmlmodule.o\ + $(XML_INTDIR_A)/xmlsave.o\ + $(XML_INTDIR_A)/xmlschemas.o\ + $(XML_INTDIR_A)/xmlschemastypes.o\ + $(XML_INTDIR_A)/xmlunicode.o\ + $(XML_INTDIR_A)/xmlwriter.o\ + $(XML_INTDIR_A)/xpath.o\ + $(XML_INTDIR_A)/xpointer.o\ + $(XML_INTDIR_A)/xmlstring.o + +XML_SRCS_A = $(subst .o,.c,$(subst $(XML_INTDIR_A)/,$(XML_SRCDIR)/,$(XML_OBJS_A))) + +# Xmllint and friends executables. +UTILS = $(BINDIR)/xmllint.exe\ + $(BINDIR)/xmlcatalog.exe\ + $(BINDIR)/testAutomata.exe\ + $(BINDIR)/testC14N.exe\ + $(BINDIR)/testDocbook.exe\ + $(BINDIR)/testHTML.exe\ + $(BINDIR)/testReader.exe\ + $(BINDIR)/testRegexp.exe\ + $(BINDIR)/testModule.exe\ + $(BINDIR)/testRelax.exe\ + $(BINDIR)/testSAX.exe\ + $(BINDIR)/testSchemas.exe\ + $(BINDIR)/testURI.exe\ + $(BINDIR)/testXPath.exe\ + $(BINDIR)/runtest.exe\ + $(BINDIR)/runsuite.exe\ + $(BINDIR)/testapi.exe\ + $(BINDIR)/testlimits.exe + +ifeq ($(WITH_THREADS),yes) +UTILS += $(BINDIR)/testThreadsWin32.exe +endif +ifeq ($(WITH_THREADS),ctls) +UTILS += $(BINDIR)/testThreadsWin32.exe +endif +ifeq ($(WITH_THREADS),native) +UTILS += $(BINDIR)/testThreadsWin32.exe +endif +ifeq ($(WITH_THREADS),posix) +UTILS += $(BINDIR)/testThreads.exe +endif + +all : dep libxml libxmla utils + +libxml : $(BINDIR)/$(XML_SO) + +libxmla : $(BINDIR)/$(XML_A) + +utils : $(UTILS) + +clean : + cmd.exe /C "if exist $(XML_INTDIR) rmdir /S /Q $(XML_INTDIR)" + cmd.exe /C "if exist $(XML_INTDIR_A) rmdir /S /Q $(XML_INTDIR_A)" + cmd.exe /C "if exist $(UTILS_INTDIR) rmdir /S /Q $(UTILS_INTDIR)" + cmd.exe /C "if exist $(BINDIR) rmdir /S /Q $(BINDIR)" + cmd.exe /C "if exist depends.mingw del depends.mingw" + +distclean : clean + cmd.exe /C "if exist config.* del config.*" + cmd.exe /C "if exist Makefile del Makefile" + +rebuild : clean all + +install-libs : all + cmd.exe /C "if not exist $(INCPREFIX)\libxml2 mkdir $(INCPREFIX)\libxml2" + cmd.exe /C "if not exist $(INCPREFIX)\libxml2\libxml mkdir $(INCPREFIX)\libxml2\libxml" + cmd.exe /C "if not exist $(BINPREFIX) mkdir $(BINPREFIX)" + cmd.exe /C "if not exist $(LIBPREFIX) mkdir $(LIBPREFIX)" + cmd.exe /C "copy $(XML_SRCDIR)\include\libxml\*.h $(INCPREFIX)\libxml2\libxml" + cmd.exe /C "copy $(BINDIR)\$(XML_SO) $(SOPREFIX)" + cmd.exe /C "copy $(BINDIR)\$(XML_A) $(LIBPREFIX)" + cmd.exe /C "copy $(BINDIR)\$(XML_IMP) $(LIBPREFIX)" + cmd.exe /C "copy $(BINDIR)\xml*.exe $(BINPREFIX)" + +install : install-libs + cmd.exe /C "copy $(BINDIR)\*.exe $(BINPREFIX)" + +install-dist : install-libs + cmd.exe /C "copy $(BINDIR)\xml*.exe $(BINPREFIX)" + +# This is a target for me, to make a binary distribution. Not for the public use, +# keep your hands off :-) +BDVERSION = $(LIBXML_MAJOR_VERSION).$(LIBXML_MINOR_VERSION).$(LIBXML_MICRO_VERSION) +BDPREFIX = $(XML_BASENAME)-$(BDVERSION).win32 +bindist : all + $(MAKE) PREFIX=$(BDPREFIX) SOPREFIX=$(BDPREFIX)/bin install-dist + cscript //NoLogo configure.js genreadme $(XML_BASENAME) $(BDVERSION) $(BDPREFIX)\readme.txt + + +# Creates the dependency file +dep : + $(CC) $(CFLAGS) -M $(XML_SRCS) > depends.mingw + + +# Makes the output directory. +$(BINDIR) : + cmd.exe /C if not exist $(BINDIR) mkdir $(BINDIR) + + +# Makes the libxml intermediate directory. +$(XML_INTDIR) : + cmd.exe /C if not exist $(XML_INTDIR) mkdir $(XML_INTDIR) + +# Makes the static libxml intermediate directory. +$(XML_INTDIR_A) : + cmd.exe /C if not exist $(XML_INTDIR_A) mkdir $(XML_INTDIR_A) + +# An implicit rule for libxml compilation. +$(XML_INTDIR)/%.o : $(XML_SRCDIR)/%.c + $(CC) $(CFLAGS) -o $@ -c $< + +# An implicit rule for static libxml compilation. +$(XML_INTDIR_A)/%.o : $(XML_SRCDIR)/%.c + $(CC) $(CFLAGS) -DLIBXML_STATIC -o $@ -c $< + + +# Compiles libxml source. Uses the implicit rule for commands. +$(XML_OBJS) : $(XML_INTDIR) + +# Compiles static libxml source. Uses the implicit rule for commands. +$(XML_OBJS_A) : $(XML_INTDIR_A) + +# Creates the libxml shared object. +XMLSO_LDFLAGS = $(LDFLAGS) -shared -Wl,--dll -Wl,--out-implib,$(BINDIR)/$(XML_IMP) +$(BINDIR)/$(XML_SO) : $(BINDIR) $(XML_OBJS) + $(LD) $(XMLSO_LDFLAGS) -o $(BINDIR)/$(XML_SO) $(XML_OBJS) $(LIBS) + +# Creates the libxml archive. +$(BINDIR)/$(XML_A) : $(BINDIR) $(XML_OBJS_A) + $(AR) $(ARFLAGS) $(BINDIR)\$(XML_A) $(XML_OBJS_A) + + +# Makes the utils intermediate directory. +$(UTILS_INTDIR) : + cmd.exe /C if not exist $(UTILS_INTDIR) mkdir $(UTILS_INTDIR) + +# An implicit rule for xmllint and friends. +ifeq ($(STATIC),1) +$(BINDIR)/%.exe : $(UTILS_SRCDIR)/%.c + $(CC) -DLIBXML_STATIC $(CFLAGS) -o $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) -c $< + $(LD) $(LDFLAGS) -o $@ $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) -l$(XML_BASENAME) $(LIBS) +else +$(BINDIR)/%.exe : $(UTILS_SRCDIR)/%.c + $(CC) $(CFLAGS) -o $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) -c $< + $(LD) $(LDFLAGS) -o $@ $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) -l$(XML_BASENAME) $(LIBS) +endif + +# Builds xmllint and friends. Uses the implicit rule for commands. +$(UTILS) : $(UTILS_INTDIR) $(BINDIR) libxml libxmla + +# Source dependencies +#-include depends.mingw + diff --git a/libxml2/win32/Makefile.msvc b/libxml2/win32/Makefile.msvc new file mode 100644 index 0000000..d16c1a2 --- /dev/null +++ b/libxml2/win32/Makefile.msvc @@ -0,0 +1,489 @@ +# Makefile for libxml2, specific for Windows, MSVC and NMAKE. +# +# Take a look at the beginning and modify the variables to suit your +# environment. Having done that, you can do a +# +# nmake [all] to build the libxml and the accompanying utilities. +# nmake clean to remove all compiler output files and return to a +# clean state. +# nmake rebuild to rebuild everything from scratch. This basically does +# a 'nmake clean' and then a 'nmake all'. +# nmake install to install the library and its header files. +# +# March 2002, Igor Zlatkovic <igor@zlatkovic.com> + +# There should never be a need to modify anything below this line. +# ---------------------------------------------------------------- + +AUTOCONF = .\config.msvc +!include $(AUTOCONF) + +# Names of various input and output components. +XML_NAME = xml2 +XML_BASENAME = lib$(XML_NAME) +XML_SO = $(XML_BASENAME).dll +XML_IMP = $(XML_BASENAME).lib +XML_DEF = $(XML_BASENAME).def +XML_A = $(XML_BASENAME)_a.lib +XML_A_DLL = $(XML_BASENAME)_a_dll.lib + +# Place where we let the compiler put its output. +BINDIR = bin.msvc +XML_INTDIR = int.msvc +XML_INTDIR_A = int.a.msvc +XML_INTDIR_A_DLL = int.a.dll.msvc +UTILS_INTDIR = int.utils.msvc + +# The preprocessor and its options. +CPP = cl.exe /EP +CPPFLAGS = /nologo /I$(XML_SRCDIR)\include /D "NOLIBTOOL" +!if "$(WITH_THREADS)" != "no" +CPPFLAGS = $(CPPFLAGS) /D "_REENTRANT" +!endif + +# The compiler and its options. +CC = cl.exe +CFLAGS = /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "NOLIBTOOL" /W1 $(CRUNTIME) +CFLAGS = $(CFLAGS) /I$(XML_SRCDIR) /I$(XML_SRCDIR)\include /I$(INCPREFIX) +!if "$(WITH_THREADS)" != "no" +CFLAGS = $(CFLAGS) /D "_REENTRANT" +!endif +!if "$(WITH_THREADS)" == "yes" || "$(WITH_THREADS)" == "ctls" +CFLAGS = $(CFLAGS) /D "HAVE_WIN32_THREADS" /D "HAVE_COMPILER_TLS" +!else if "$(WITH_THREADS)" == "native" +CFLAGS = $(CFLAGS) /D "HAVE_WIN32_THREADS" +!else if "$(WITH_THREADS)" == "posix" +CFLAGS = $(CFLAGS) /D "HAVE_PTHREAD_H" +!endif +!if "$(WITH_ZLIB)" == "1" +CFLAGS = $(CFLAGS) /D "HAVE_ZLIB_H" +!endif +!if "$(WITH_LZMA)" == "1" +CFLAGS = $(CFLAGS) /D "HAVE_LZMA_H" +!endif +CFLAGS = $(CFLAGS) /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE + +# The linker and its options. +LD = link.exe +LDFLAGS = /nologo /VERSION:$(LIBXML_MAJOR_VERSION).$(LIBXML_MINOR_VERSION) +LDFLAGS = $(LDFLAGS) /LIBPATH:$(BINDIR) /LIBPATH:$(LIBPREFIX) +LIBS = +!if "$(WITH_FTP)" == "1" || "$(WITH_HTTP)" == "1" +LIBS = $(LIBS) wsock32.lib ws2_32.lib +!endif +!if "$(WITH_ICONV)" == "1" +LIBS = $(LIBS) iconv.lib +!endif +!if "$(WITH_ICU)" == "1" +LIBS = $(LIBS) icu.lib +!endif +!if "$(WITH_ZLIB)" == "1" +# could be named differently zdll or zlib +# LIBS = $(LIBS) zdll.lib +LIBS = $(LIBS) zlib.lib +!endif +!if "$(WITH_LZMA)" == "1" +LIBS = $(LIBS) liblzma.lib +!endif +!if "$(WITH_THREADS)" == "posix" +LIBS = $(LIBS) pthreadVC.lib +!endif +!if "$(WITH_MODULES)" == "1" +LIBS = $(LIBS) kernel32.lib +!endif + +# The archiver and its options. +AR = lib.exe +ARFLAGS = /nologo + +# Optimisation and debug symbols. +!if "$(DEBUG)" == "1" +CFLAGS = $(CFLAGS) /D "_DEBUG" /Od /Z7 +LDFLAGS = $(LDFLAGS) /DEBUG +!else +CFLAGS = $(CFLAGS) /D "NDEBUG" /O2 +# commented out as this break VC10 c.f. 634846 +# LDFLAGS = $(LDFLAGS) /OPT:NOWIN98 +LDFLAGS = $(LDFLAGS) +!endif + +# Libxml object files. +XML_OBJS = $(XML_INTDIR)\buf.obj\ + $(XML_INTDIR)\c14n.obj\ + $(XML_INTDIR)\catalog.obj\ + $(XML_INTDIR)\chvalid.obj\ + $(XML_INTDIR)\debugXML.obj\ + $(XML_INTDIR)\dict.obj\ + $(XML_INTDIR)\DOCBparser.obj\ + $(XML_INTDIR)\encoding.obj\ + $(XML_INTDIR)\entities.obj\ + $(XML_INTDIR)\error.obj\ + $(XML_INTDIR)\globals.obj\ + $(XML_INTDIR)\hash.obj\ + $(XML_INTDIR)\HTMLparser.obj\ + $(XML_INTDIR)\HTMLtree.obj\ + $(XML_INTDIR)\legacy.obj\ + $(XML_INTDIR)\list.obj\ + $(XML_INTDIR)\nanoftp.obj\ + $(XML_INTDIR)\nanohttp.obj\ + $(XML_INTDIR)\parser.obj\ + $(XML_INTDIR)\parserInternals.obj\ + $(XML_INTDIR)\pattern.obj\ + $(XML_INTDIR)\relaxng.obj\ + $(XML_INTDIR)\SAX2.obj\ + $(XML_INTDIR)\SAX.obj\ + $(XML_INTDIR)\schematron.obj\ + $(XML_INTDIR)\threads.obj\ + $(XML_INTDIR)\tree.obj\ + $(XML_INTDIR)\uri.obj\ + $(XML_INTDIR)\valid.obj\ + $(XML_INTDIR)\xinclude.obj\ + $(XML_INTDIR)\xlink.obj\ + $(XML_INTDIR)\xmlIO.obj\ + $(XML_INTDIR)\xmlmemory.obj\ + $(XML_INTDIR)\xmlreader.obj\ + $(XML_INTDIR)\xmlregexp.obj\ + $(XML_INTDIR)\xmlmodule.obj\ + $(XML_INTDIR)\xmlsave.obj\ + $(XML_INTDIR)\xmlschemas.obj\ + $(XML_INTDIR)\xmlschemastypes.obj\ + $(XML_INTDIR)\xmlunicode.obj\ + $(XML_INTDIR)\xmlwriter.obj\ + $(XML_INTDIR)\xpath.obj\ + $(XML_INTDIR)\xpointer.obj\ + $(XML_INTDIR)\xmlstring.obj + +# Static libxml object files. +XML_OBJS_A = $(XML_INTDIR_A)\buf.obj\ + $(XML_INTDIR_A)\c14n.obj\ + $(XML_INTDIR_A)\catalog.obj\ + $(XML_INTDIR_A)\chvalid.obj\ + $(XML_INTDIR_A)\debugXML.obj\ + $(XML_INTDIR_A)\dict.obj\ + $(XML_INTDIR_A)\DOCBparser.obj\ + $(XML_INTDIR_A)\encoding.obj\ + $(XML_INTDIR_A)\entities.obj\ + $(XML_INTDIR_A)\error.obj\ + $(XML_INTDIR_A)\globals.obj\ + $(XML_INTDIR_A)\hash.obj\ + $(XML_INTDIR_A)\HTMLparser.obj\ + $(XML_INTDIR_A)\HTMLtree.obj\ + $(XML_INTDIR_A)\legacy.obj\ + $(XML_INTDIR_A)\list.obj\ + $(XML_INTDIR_A)\nanoftp.obj\ + $(XML_INTDIR_A)\nanohttp.obj\ + $(XML_INTDIR_A)\parser.obj\ + $(XML_INTDIR_A)\parserInternals.obj\ + $(XML_INTDIR_A)\pattern.obj\ + $(XML_INTDIR_A)\relaxng.obj\ + $(XML_INTDIR_A)\SAX2.obj\ + $(XML_INTDIR_A)\SAX.obj\ + $(XML_INTDIR_A)\schematron.obj\ + $(XML_INTDIR_A)\threads.obj\ + $(XML_INTDIR_A)\tree.obj\ + $(XML_INTDIR_A)\uri.obj\ + $(XML_INTDIR_A)\valid.obj\ + $(XML_INTDIR_A)\xinclude.obj\ + $(XML_INTDIR_A)\xlink.obj\ + $(XML_INTDIR_A)\xmlIO.obj\ + $(XML_INTDIR_A)\xmlmemory.obj\ + $(XML_INTDIR_A)\xmlreader.obj\ + $(XML_INTDIR_A)\xmlregexp.obj\ + $(XML_INTDIR_A)\xmlmodule.obj\ + $(XML_INTDIR_A)\xmlsave.obj\ + $(XML_INTDIR_A)\xmlschemas.obj\ + $(XML_INTDIR_A)\xmlschemastypes.obj\ + $(XML_INTDIR_A)\xmlunicode.obj\ + $(XML_INTDIR_A)\xmlwriter.obj\ + $(XML_INTDIR_A)\xpath.obj\ + $(XML_INTDIR_A)\xpointer.obj\ + $(XML_INTDIR_A)\xmlstring.obj + +# Static libxml object files. +XML_OBJS_A_DLL = $(XML_INTDIR_A_DLL)\buf.obj\ + $(XML_INTDIR_A_DLL)\c14n.obj\ + $(XML_INTDIR_A_DLL)\catalog.obj\ + $(XML_INTDIR_A_DLL)\chvalid.obj\ + $(XML_INTDIR_A_DLL)\debugXML.obj\ + $(XML_INTDIR_A_DLL)\dict.obj\ + $(XML_INTDIR_A_DLL)\DOCBparser.obj\ + $(XML_INTDIR_A_DLL)\encoding.obj\ + $(XML_INTDIR_A_DLL)\entities.obj\ + $(XML_INTDIR_A_DLL)\error.obj\ + $(XML_INTDIR_A_DLL)\globals.obj\ + $(XML_INTDIR_A_DLL)\hash.obj\ + $(XML_INTDIR_A_DLL)\HTMLparser.obj\ + $(XML_INTDIR_A_DLL)\HTMLtree.obj\ + $(XML_INTDIR_A_DLL)\legacy.obj\ + $(XML_INTDIR_A_DLL)\list.obj\ + $(XML_INTDIR_A_DLL)\nanoftp.obj\ + $(XML_INTDIR_A_DLL)\nanohttp.obj\ + $(XML_INTDIR_A_DLL)\parser.obj\ + $(XML_INTDIR_A_DLL)\parserInternals.obj\ + $(XML_INTDIR_A_DLL)\pattern.obj\ + $(XML_INTDIR_A_DLL)\relaxng.obj\ + $(XML_INTDIR_A_DLL)\SAX2.obj\ + $(XML_INTDIR_A_DLL)\SAX.obj\ + $(XML_INTDIR_A_DLL)\schematron.obj\ + $(XML_INTDIR_A_DLL)\threads.obj\ + $(XML_INTDIR_A_DLL)\tree.obj\ + $(XML_INTDIR_A_DLL)\uri.obj\ + $(XML_INTDIR_A_DLL)\valid.obj\ + $(XML_INTDIR_A_DLL)\xinclude.obj\ + $(XML_INTDIR_A_DLL)\xlink.obj\ + $(XML_INTDIR_A_DLL)\xmlIO.obj\ + $(XML_INTDIR_A_DLL)\xmlmemory.obj\ + $(XML_INTDIR_A_DLL)\xmlreader.obj\ + $(XML_INTDIR_A_DLL)\xmlregexp.obj\ + $(XML_INTDIR_A_DLL)\xmlmodule.obj\ + $(XML_INTDIR_A_DLL)\xmlsave.obj\ + $(XML_INTDIR_A_DLL)\xmlschemas.obj\ + $(XML_INTDIR_A_DLL)\xmlschemastypes.obj\ + $(XML_INTDIR_A_DLL)\xmlunicode.obj\ + $(XML_INTDIR_A_DLL)\xmlwriter.obj\ + $(XML_INTDIR_A_DLL)\xpath.obj\ + $(XML_INTDIR_A_DLL)\xpointer.obj\ + $(XML_INTDIR_A_DLL)\xmlstring.obj + +# Xmllint and friends executables. +UTILS = $(BINDIR)\xmllint.exe\ + $(BINDIR)\xmlcatalog.exe\ + $(BINDIR)\testAutomata.exe\ + $(BINDIR)\testC14N.exe\ + $(BINDIR)\testDocbook.exe\ + $(BINDIR)\testHTML.exe\ + $(BINDIR)\testReader.exe\ + $(BINDIR)\testRelax.exe\ + $(BINDIR)\testRegexp.exe\ + $(BINDIR)\testModule.exe\ + $(BINDIR)\testSAX.exe\ + $(BINDIR)\testSchemas.exe\ + $(BINDIR)\testURI.exe\ + $(BINDIR)\testXPath.exe\ + $(BINDIR)\runtest.exe\ + $(BINDIR)\runsuite.exe\ + $(BINDIR)\testapi.exe\ + $(BINDIR)\testlimits.exe\ + $(BINDIR)\testrecurse.exe + +!if "$(WITH_THREADS)" == "yes" || "$(WITH_THREADS)" == "ctls" || "$(WITH_THREADS)" == "native" +UTILS = $(UTILS) $(BINDIR)\testThreadsWin32.exe +!else if "$(WITH_THREADS)" == "posix" +UTILS = $(UTILS) $(BINDIR)\testThreads.exe +!endif + +!if "$(VCMANIFEST)" == "1" +_VC_MANIFEST_EMBED_EXE= if exist $@.manifest mt.exe -nologo -manifest $@.manifest -outputresource:$@;1 +_VC_MANIFEST_EMBED_DLL= if exist $@.manifest mt.exe -nologo -manifest $@.manifest -outputresource:$@;2 +!else +_VC_MANIFEST_EMBED_EXE= +_VC_MANIFEST_EMBED_DLL= +!endif + +all : libxml libxmla libxmladll utils + +libxml : $(BINDIR)\$(XML_SO) + +libxmla : $(BINDIR)\$(XML_A) + +libxmladll : $(BINDIR)\$(XML_A_DLL) + +utils : $(UTILS) + +clean : + if exist $(XML_INTDIR) rmdir /S /Q $(XML_INTDIR) + if exist $(XML_INTDIR_A) rmdir /S /Q $(XML_INTDIR_A) + if exist $(XML_INTDIR_A_DLL) rmdir /S /Q $(XML_INTDIR_A_DLL) + if exist $(UTILS_INTDIR) rmdir /S /Q $(UTILS_INTDIR) + if exist $(BINDIR) rmdir /S /Q $(BINDIR) + +distclean : clean + if exist config.* del config.* + if exist Makefile del Makefile + +rebuild : clean all + +install-libs : all + if not exist $(INCPREFIX)\libxml2 mkdir $(INCPREFIX)\libxml2 + if not exist $(INCPREFIX)\libxml2\libxml mkdir $(INCPREFIX)\libxml2\libxml + if not exist $(BINPREFIX) mkdir $(BINPREFIX) + if not exist $(LIBPREFIX) mkdir $(LIBPREFIX) + if not exist $(SOPREFIX) mkdir $(SOPREFIX) + copy $(XML_SRCDIR)\include\libxml\*.h $(INCPREFIX)\libxml2\libxml + copy $(BINDIR)\$(XML_SO) $(SOPREFIX) + copy $(BINDIR)\$(XML_A) $(LIBPREFIX) + copy $(BINDIR)\$(XML_A_DLL) $(LIBPREFIX) + copy $(BINDIR)\$(XML_IMP) $(LIBPREFIX) + +install : install-libs + copy $(BINDIR)\*.exe $(BINPREFIX) + -copy $(BINDIR)\*.pdb $(BINPREFIX) + +install-dist : install-libs + copy $(BINDIR)\xml*.exe $(BINPREFIX) + -copy $(BINDIR)\xml*.pdb $(BINPREFIX) + +# This is a target for me, to make a binary distribution. Not for the public use, +# keep your hands off :-) +BDVERSION = $(LIBXML_MAJOR_VERSION).$(LIBXML_MINOR_VERSION).$(LIBXML_MICRO_VERSION) +BDPREFIX = $(XML_BASENAME)-$(BDVERSION).win32 +bindist : all + $(MAKE) /nologo PREFIX=$(BDPREFIX) SOPREFIX=$(BDPREFIX)\bin install-dist + cscript //NoLogo configure.js genreadme $(XML_BASENAME) $(BDVERSION) $(BDPREFIX)\readme.txt + + +# Makes the output directory. +$(BINDIR) : + if not exist $(BINDIR) mkdir $(BINDIR) + + +# Makes the libxml intermediate directory. +$(XML_INTDIR) : + if not exist $(XML_INTDIR) mkdir $(XML_INTDIR) + +# Makes the static libxml intermediate directory. +$(XML_INTDIR_A) : + if not exist $(XML_INTDIR_A) mkdir $(XML_INTDIR_A) + +# Makes the static for dll libxml intermediate directory. +$(XML_INTDIR_A_DLL) : + if not exist $(XML_INTDIR_A_DLL) mkdir $(XML_INTDIR_A_DLL) + +# An implicit rule for libxml compilation. +{$(XML_SRCDIR)}.c{$(XML_INTDIR)}.obj:: + $(CC) $(CFLAGS) /Fo$(XML_INTDIR)\ /c $< + +# An implicit rule for static libxml compilation. +{$(XML_SRCDIR)}.c{$(XML_INTDIR_A)}.obj:: + $(CC) $(CFLAGS) /D "LIBXML_STATIC" /Fo$(XML_INTDIR_A)\ /c $< + +# An implicit rule for static for dll libxml compilation. +{$(XML_SRCDIR)}.c{$(XML_INTDIR_A_DLL)}.obj:: + $(CC) $(CFLAGS) /D "LIBXML_STATIC" /D "LIBXML_STATIC_FOR_DLL" /Fo$(XML_INTDIR_A_DLL)\ /c $< + +# Compiles libxml source. Uses the implicit rule for commands. +$(XML_OBJS) : $(XML_INTDIR) + +# Compiles static libxml source. Uses the implicit rule for commands. +$(XML_OBJS_A) : $(XML_INTDIR_A) + +# Compiles static for dll libxml source. Uses the implicit rule for commands. +$(XML_OBJS_A_DLL) : $(XML_INTDIR_A_DLL) + +# Creates the export definition file (DEF) for libxml. +$(XML_INTDIR)\$(XML_DEF) : $(XML_INTDIR) $(XML_DEF).src + $(CPP) $(CPPFLAGS) $(XML_DEF).src > $(XML_INTDIR)\$(XML_DEF) + +# Creates the libxml shared object. +$(BINDIR)\$(XML_SO) : $(BINDIR) $(XML_OBJS) $(XML_INTDIR)\$(XML_DEF) + $(LD) $(LDFLAGS) /DLL \ + /IMPLIB:$(BINDIR)\$(XML_IMP) /OUT:$(BINDIR)\$(XML_SO) $(XML_OBJS) $(LIBS) + @$(_VC_MANIFEST_EMBED_DLL) + +#$(BINDIR)\$(XML_SO) : $(BINDIR) $(XML_OBJS) $(XML_INTDIR)\$(XML_DEF) +# $(LD) $(LDFLAGS) /DLL /DEF:$(XML_INTDIR)\$(XML_DEF) \ +# /IMPLIB:$(BINDIR)\$(XML_IMP) /OUT:$(BINDIR)\$(XML_SO) $(XML_OBJS) $(LIBS) + +# Creates the libxml archive. +$(BINDIR)\$(XML_A) : $(BINDIR) $(XML_OBJS_A) + $(AR) $(ARFLAGS) /OUT:$(BINDIR)\$(XML_A) $(XML_OBJS_A) + +# Creates the libxml static for dll archive. +$(BINDIR)\$(XML_A_DLL) : $(BINDIR) $(XML_OBJS_A_DLL) + $(AR) $(ARFLAGS) /OUT:$(BINDIR)\$(XML_A_DLL) $(XML_OBJS_A_DLL) + +# Makes the utils intermediate directory. +$(UTILS_INTDIR) : + if not exist $(UTILS_INTDIR) mkdir $(UTILS_INTDIR) + +# An implicit rule for xmllint and friends. +!if "$(STATIC)" == "1" +{$(UTILS_SRCDIR)}.c{$(BINDIR)}.exe: + $(CC) /D "LIBXML_STATIC" $(CFLAGS) /Fo$(UTILS_INTDIR)\ /c $< + $(LD) $(LDFLAGS) /OUT:$@ $(XML_A) $(LIBS) $(UTILS_INTDIR)\$(<B).obj + @$(_VC_MANIFEST_EMBED_EXE) +!else +{$(UTILS_SRCDIR)}.c{$(BINDIR)}.exe: + $(CC) $(CFLAGS) /Fo$(UTILS_INTDIR)\ /c $< + $(LD) $(LDFLAGS) /OUT:$@ $(XML_IMP) $(LIBS) $(UTILS_INTDIR)\$(<B).obj + @$(_VC_MANIFEST_EMBED_EXE) +!endif + +# Builds xmllint and friends. Uses the implicit rule for commands. +$(UTILS) : $(UTILS_INTDIR) $(BINDIR) libxml libxmla libxmladll + +# Source dependences should be autogenerated somehow here, but how to +# do it? I have no clue. + +# TESTS + +tests : checktests XPathtests + +checktests : $(UTILS) + cd .. && win32\$(BINDIR)\runtest.exe + cd .. && win32\$(BINDIR)\testrecurse.exe + cd .. && win32\$(BINDIR)\testapi.exe + cd .. && win32\$(BINDIR)\testchar.exe + cd .. && win32\$(BINDIR)\testdict.exe + cd .. && win32\$(BINDIR)\runxmlconf.exe + +XPathtests : $(BINDIR)\testXPath.exe + @echo. 2> .memdump + @echo ## XPath regression tests + @-$(BINDIR)\testXPath.exe | find /C "support not compiled in" 1>nul + @if %ERRORLEVEL% NEQ 0 @( \ + echo Skipping debug not compiled in\ + @exit 0 \ + ) + @for %%I in ($(XML_SRCDIR)\test\XPath\expr\*.*) do @( \ + @IF NOT EXIST $(XML_SRCDIR)\result\XPath\expr\%%~nxI ( \ + @echo New test %%~nxI &&\ + @echo %%~nxI &&\ + $(BINDIR)\testXPath.exe -f --expr %%I > $(XML_SRCDIR)/result/XPath/expr/%%~nxI &&\ + findstr /C:"MEMORY ALLOCATED : 0" \ + ) ELSE ( \ + $(BINDIR)\testXPath.exe -f --expr %%I 2>&1 > result.%%~nxI &&\ + fc $(XML_SRCDIR)\result\XPath\expr\%%~nxI result.%%~nxI >nul &\ + iF ERRORLEVEL 1 exit 1 & \ + findstr "MEMORY ALLOCATED" .memdump | findstr /C:"MEMORY ALLOCATED : 0" >nul &&\ + del result.%%~nxI \ + ) \ + ) + @for %%I in ($(XML_SRCDIR)\test\XPath\docs\*.*) do @( \ + for %%J in ($(XML_SRCDIR)\test\XPath\tests\%%~nxI*.*) do @( \ + if not exist $(XML_SRCDIR)\result\XPath\tests\%%~nxJ ( \ + $(BINDIR)\testXPath.exe -f -i %%I %%J > $(XML_SRCDIR)\result\XPath\tests\%%~nxJ &&\ + findstr /C:"MEMORY ALLOCATED" .memdump | findstr /C:"MEMORY ALLOCATED : 0" > nul \ + ) ELSE ( \ + $(BINDIR)\testXPAth.exe -f -i %%I %%J 2>&1 > result.%%~nxJ &&\ + findstr /C:"MEMORY ALLOCATED" .memdump | findstr /C:"MEMORY ALLOCATED : 0">null &&\ + fc $(XML_SRCDIR)\result\XPath\tests\%%~nxJ result.%%~nxJ >null & \ + IF ERRORLEVEL 1 (echo Error: %%I %%J & exit 1) & \ + del result.%%~nxJ \ + )\ + )\ + ) + +XMLtests : $(BINDIR)\xmllint.exe + @echo. 2> .memdump + @echo ## XML regression tests + -@for %%I in ($(XML_SRCDIR)\test\*) do @( \ + if not exist $(XML_SRCDIR)\result\%%~nxI ( \ + echo New test file %%~nxI &\ + $(BINDIR)\xmllint.exe %%I > $(XML_SRCDIR)\result\%%~nxI && \ + findstr /C:"MEMORY ALLOCATED" .memdump | findstr /C:"MEMORY ALLOCATED : 0" > null \ + ) ELSE ( \ + $(BINDIR)\xmllint.exe %%I 2>&1 > result.%%~nxI && \ + findstr /C:"MEMORY ALLOC" .memdump | findstr /C:"MEMORY ALLOCATED : 0" > null && \ + fc $(XML_SRCDIR)\result\%%~nxI result.%%~nxI > null && \ + $(BINDIR)\xmllint.exe result.%%~nxI 2>&1 > result2.%%~nxI | findstr /V /C:"failed to load external entity" && \ + fc result.%%~nxI result2.%%~nxI & \ + del result.%%~nxI result2.%%~nxI\ + ) \ + ) + + + + + + diff --git a/libxml2/win32/Readme.txt b/libxml2/win32/Readme.txt new file mode 100644 index 0000000..6b3eddd --- /dev/null +++ b/libxml2/win32/Readme.txt @@ -0,0 +1,226 @@ + + Windows port + ============ + +This directory contains the files required to build this software on the +native Windows platform. This is not a place to look for help if you are +using a POSIX emulator, such as Cygwin. Check the Unix instructions for +that. + + + +CONTENTS +======== + +1. General + 1.1 Building From the Command-Line + 1.2 Configuring The Source + 1.3 Compiling + 1.4 Installing + +2. Compiler Specifics + 2.1 Microsoft Visual C/C++ + 2.1 GNU C/C++, Mingw Edition + 2.2 Borland C++ Builder + 2.2.1 Building with iconv support + 2.2.2 Compatability problems with MSVC (and probably CYGWIN) + 2.2.3 Other caveats + + + + +1. General +========== + + +1.1 Building From The Command-Line +---------------------------------- + +This is the easiest, preferred and currently supported method. It can +be that a subdirectory of the directory where this file resides +contains project files for some IDE. If you want to use that, please +refer to the readme file within that subdirectory. + +In order to build from the command-line you need to make sure that +your compiler works from the command line. This is not always the +case, often the required environment variables are missing. If you are +not sure, test if this works first. If it doesn't, you will first have +to configure your compiler suite to run from the command-line - please +refer to your compiler's documentation regarding that. + +The first thing you want to do is configure the source. You can have +the configuration script do this automatically for you. The +configuration script is written in JScript, a Microsoft's +implementation of the ECMA scripting language. Almost every Windows +machine can execute this through the Windows Scripting Host. If your +system lacks the ability to execute JScript for some reason, you must +perform the configuration manually and you are on your own with that. + +The second step is compiling the source and, optionally, installing it +to the location of your choosing. + + +1.2 Configuring The Source +-------------------------- + +The configuration script accepts numerous options. Some of these +affect features which will be available in the compiled software, +others affect the way the software is built and installed. To see a +full list of options supported by the configuration script, run + + cscript configure.js help + +from the win32 subdirectory. The configuration script will present you +the options it accepts and give a biref explanation of these. In every +case you will have two sets of options. The first set is specific to +the software you are building and the second one is specific to the +Windows port. + +Once you have decided which options suit you, run the script with that +options. Here is an example: + + cscript configure.js compiler=msvc prefix=c:\opt + include=c:\opt\include lib=c:\opt\lib debug=yes + +The previous example will configure the process to use the Microsoft's +compiler, install the library in c:\opt, use c:\opt\include and +c:\opt\lib as additional search paths for the compiler and the linker +and build executables with debug symbols. + +Note: Please do not use path names which contain spaces. This will +fail. Allowing this would require me to put almost everything in the +Makefile in quotas and that looks quite ugly with my +syntax-highlighting engine. If you absolutely must use spaces in paths +send me an email and tell me why. If there are enough of you out there +who need this, or if a single one has a very good reason, I will +modify the Makefile to allow spaces in paths. + + +1.3 Compiling +------------- + +After the configuration stage has been completed, you want to build +the software. You will have to use the make tool which comes with +your compiler. If you, for example, configured the source to build +with Microsoft's MSVC compiler, you would use the NMAKE utility. If +you configured it to build with GNU C compiler, mingw edition, you +would use the GNU make. Assuming you use MSVC, type + + nmake /f Makefile.msvc + +and if you use MinGW, you would type + + make -f Makefile.mingw + +and if you use Borland's compiler, you would type + + bmake -f Makefile.bcb + +in the win32 subdirectory. When the building completes, you will find +the executable files in win32\bin.* directory, where * stands for the +name of the compiler you have used. + + +1.4 Installing +-------------- + +You can install the software into the directory you specified to the +configure script during the configure stage by typing (with MSVC in +this example) + + nmake /f Makefile.msvc install + +That would be it, enjoy. + + + + + +2. Compiler Specifics +===================== + + +2.1 Microsoft Visual C/C++ +-------------------------- + +If you use the compiler which comes with Visual Studio .NET, note that +it will link to its own C-runtime named msvcr70.dll or msvcr71.dll. This +file is not available on any machine which doesn't have Visual Studio +.NET installed. + + +2.2 GNU C/C++, Mingw edition +---------------------------- + +When specifying paths to configure.js, please use slashes instead of +backslashes for directory separation. Sometimes Mingw needs this. If +this is the case, and you specify backslashes, then the compiler will +complain about not finding necessary header files. + + +2.2 Borland C++ Builder +----------------------- + +To compile libxml2 with the BCB6 compiler and associated tools, just follow +the basic instructions found in this file file. Be sure to specify +the "compiler=bcb" option when running the configure script. To compile the +library and test programs, just type + + make -fMakefile.bcb + +That should be all that's required. But there are a few other things to note: + +2.2.1 Building with iconv support + +If you configure libxml2 to include iconv support, you will obviously need to +obtain the iconv library and include files. To get them, just follow the links +at http://www.gnu.org/software/libiconv/ - there are pre-compiled Win32 +versions available, but note that these where built with MSVC. Hence the +supplied import library is in COFF format rather than OMF format. You can +convert this library by using Borland's COFF2OMF utility, or use IMPLIB to +build a new import library from the DLL. Alternatively, it is possible to +obtain the iconv source, and build the DLL using the Borland compiler. + +There is a minor problem with the header files for iconv - they expect a +macro named "EILSEQ" in errno.h, but this is not defined in the Borland +headers, and its absence can cause problems. To circumvent this problem, I +define EILSEQ=2 in Makefile.bcb. The value "2" is the value for ENOFILE (file +not found). This should not have any disastrous side effects beyond possibly +displaying a misleading error message in certain situations. + +2.2.2 Compatability problems with MSVC (and probably CYGWIN) + +A libxml2 DLL generated by BCB is callable from MSVC programs, but there is a +minor problem with the names of the symbols exported from the library. The +Borland compiler, by default, prepends an underscore character to global +identifiers (functions and global variables) when generating object files. +Hence the function "xmlAddChild" is added to the DLL with the name +"_xmlAddChild". The MSVC compiler does not have this behaviour, and looks for +the unadorned name. I currently circumvent this problem by writing a .def file +which causes BOTH the adorned and unadorned names to be exported from the DLL. +This behaviour may not be supported in the future. + +An even worse problem is that of generating an import library for the DLL. The +Borland-generated DLL is in OMF format. MSVC expects libraries in COFF format, +but they don't provide a "OMF2COFF" utility, or even the equivalent of +Borland's IMPLIB utility. But it is possible to create an import lib from the +.def file, using the command: + LIB /DEF:libxml2.def + +If you don't have the .def file, it's possible to create one manually. Use +DUMPBIN /EXPORTS /OUT:libxml2.tmp libxml2.dll to get a list of the exported +names, and edit this into .def file format. + +A similar problem is likely with Cygwin. + +2.2.3 Other caveats + +We have tested this only with BCB6, Professional Edition, and BCB 5.5 free +command-line tools. + + + +Authors: Igor Zlatkovic <igor@zlatkovic.com> + Eric Zurcher <Eric.Zurcher@csiro.au> + + diff --git a/libxml2/win32/VC10/README.vc10 b/libxml2/win32/VC10/README.vc10 new file mode 100644 index 0000000..4805bdc --- /dev/null +++ b/libxml2/win32/VC10/README.vc10 @@ -0,0 +1,27 @@ +
+README file for VC10 project files for libxml2
+----------------------------------------------
+
+to clarify: This is not the readme file for the whole libxml2 project.
+Rather, it's a readme for the VC10 project files, attached to the libxml2 proejct.
+
+Quick Start
+-----------
+
+1) To use, load the libxml2.sln solution file into visual studio
+2) check and correct paths for dependent "iconv" project which most certaily
+are wrong on your environment.
+3) Compile all projects
+
+
+Background Info
+---------------
+
+Running of "configure.sh" won't make sense since VS doesn't support
+this kind of build system and the environment is pretty much known already
+if you're using Visual Studio. Instead, a preconfigured "config.h" file
+is provided in the "win32\VC10" directory and referenced by the project
+files already.
+
+The compile process is not completely warning-free: Some warnings will
+appear during compile which can be ignored.
diff --git a/libxml2/win32/VC10/RuleSet1.ruleset b/libxml2/win32/VC10/RuleSet1.ruleset new file mode 100644 index 0000000..9985a6c --- /dev/null +++ b/libxml2/win32/VC10/RuleSet1.ruleset @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8"?>
+<RuleSet Name="New Rule Set" Description=" " ToolsVersion="10.0">
+</RuleSet>
\ No newline at end of file diff --git a/libxml2/win32/VC10/config.h b/libxml2/win32/VC10/config.h new file mode 100644 index 0000000..891b57e --- /dev/null +++ b/libxml2/win32/VC10/config.h @@ -0,0 +1,127 @@ +#ifndef __LIBXML_WIN32_CONFIG__ +#define __LIBXML_WIN32_CONFIG__ + +#define HAVE_CTYPE_H +#define HAVE_STDARG_H +#define HAVE_MALLOC_H +#define HAVE_ERRNO_H +#define HAVE_STDINT_H + +#if defined(_WIN32_WCE) +#undef HAVE_ERRNO_H +#include <windows.h> +#include "wincecompat.h" +#else +#define HAVE_SYS_STAT_H +#define HAVE__STAT +#define HAVE_STAT +#define HAVE_STDLIB_H +#define HAVE_TIME_H +#define HAVE_FCNTL_H +#include <io.h> +#include <direct.h> +#endif + +#include <libxml/xmlversion.h> + +#ifndef ICONV_CONST +#define ICONV_CONST const +#endif + +#ifdef NEED_SOCKETS +#include <wsockcompat.h> +#endif + +/* + * Windows platforms may define except + */ +#undef except + +#define HAVE_ISINF +#define HAVE_ISNAN +#include <math.h> +#if defined(_MSC_VER) || defined(__BORLANDC__) +/* MS C-runtime has functions which can be used in order to determine if + a given floating-point variable contains NaN, (+-)INF. These are + preferred, because floating-point technology is considered propriatary + by MS and we can assume that their functions know more about their + oddities than we do. */ +#include <float.h> +/* Bjorn Reese figured a quite nice construct for isinf() using the _fpclass + function. */ +#ifndef isinf +#define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 \ + : ((_fpclass(d) == _FPCLASS_NINF) ? -1 : 0)) +#endif +/* _isnan(x) returns nonzero if (x == NaN) and zero otherwise. */ +#ifndef isnan +#define isnan(d) (_isnan(d)) +#endif +#else /* _MSC_VER */ +#ifndef isinf +static int isinf (double d) { + int expon = 0; + double val = frexp (d, &expon); + if (expon == 1025) { + if (val == 0.5) { + return 1; + } else if (val == -0.5) { + return -1; + } else { + return 0; + } + } else { + return 0; + } +} +#endif +#ifndef isnan +static int isnan (double d) { + int expon = 0; + double val = frexp (d, &expon); + if (expon == 1025) { + if (val == 0.5) { + return 0; + } else if (val == -0.5) { + return 0; + } else { + return 1; + } + } else { + return 0; + } +} +#endif +#endif /* _MSC_VER */ + +#if defined(_MSC_VER) +#define mkdir(p,m) _mkdir(p) +#if _MSC_VER < 1900 // Cannot define this in VS 2015 and above! +#define snprintf _snprintf +#endif +#if _MSC_VER < 1500 +#define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a) +#endif +#elif defined(__MINGW32__) +#define mkdir(p,m) _mkdir(p) +#endif + +/* Threading API to use should be specified here for compatibility reasons. + This is however best specified on the compiler's command-line. */ +#if defined(LIBXML_THREAD_ENABLED) +#if !defined(HAVE_PTHREAD_H) && !defined(HAVE_WIN32_THREADS) && !defined(_WIN32_WCE) +#define HAVE_WIN32_THREADS +#endif +#endif + +/* Some third-party libraries far from our control assume the following + is defined, which it is not if we don't include windows.h. */ +#if !defined(FALSE) +#define FALSE 0 +#endif +#if !defined(TRUE) +#define TRUE (!(FALSE)) +#endif + +#endif /* __LIBXML_WIN32_CONFIG__ */ + diff --git a/libxml2/win32/VC10/libxml2-focus.vcxproj b/libxml2/win32/VC10/libxml2-focus.vcxproj new file mode 100644 index 0000000..914ce25 --- /dev/null +++ b/libxml2/win32/VC10/libxml2-focus.vcxproj @@ -0,0 +1,184 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup Label="ProjectConfigurations">
+ <ProjectConfiguration Include="Debug DLL|Win32">
+ <Configuration>Debug DLL</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Debug|Win32">
+ <Configuration>Debug</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release DLL|Win32">
+ <Configuration>Release DLL</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|Win32">
+ <Configuration>Release</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ </ItemGroup>
+ <PropertyGroup Label="Globals">
+ <ProjectGuid>{7EA50C94-26BD-4893-B773-625CD3D3DEA6}</ProjectGuid>
+ <RootNamespace>libxml2</RootNamespace>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
+ <ConfigurationType>StaticLibrary</ConfigurationType>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|Win32'" Label="Configuration">
+ <ConfigurationType>StaticLibrary</ConfigurationType>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+ <ConfigurationType>StaticLibrary</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <WholeProgramOptimization>true</WholeProgramOptimization>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release DLL|Win32'">
+ <ConfigurationType>StaticLibrary</ConfigurationType>
+ <CharacterSet>Unicode</CharacterSet>
+ <WholeProgramOptimization>true</WholeProgramOptimization>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <ImportGroup Label="ExtensionSettings">
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ <Import Project="..\..\..\focus-lib-debug.props" />
+ </ImportGroup>
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|Win32'" Label="PropertySheets">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ <Import Project="..\..\..\focus-lib-debug-dll.props" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ <Import Project="..\..\..\focus-lib-release.props" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release DLL|Win32'">
+ <Import Project="..\..\..\focus-lib-release-dll.props" />
+ </ImportGroup>
+ <PropertyGroup Label="UserMacros" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <OutDir>$(ProjectDir)..\..\lib\</OutDir>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|Win32'">
+ <OutDir>$(ProjectDir)..\..\lib\</OutDir>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|Win32'" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <OutDir>$(ProjectDir)..\..\lib\</OutDir>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|Win32'">
+ <OutDir>$(ProjectDir)..\..\lib\</OutDir>
+ </PropertyGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <Optimization>Disabled</Optimization>
+ <AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)..\..\include;$(ProjectDir)..\..\..\libiconv-1.14\include</AdditionalIncludeDirectories>
+ <DisableSpecificWarnings>4018; 4996</DisableSpecificWarnings>
+ <AdditionalOptions>/MP %(AdditionalOptions)</AdditionalOptions>
+ <MinimalRebuild>false</MinimalRebuild>
+ </ClCompile>
+ <Link>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <Optimization>Disabled</Optimization>
+ <AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)..\..\include;$(ProjectDir)..\..\..\libiconv-1.14\include</AdditionalIncludeDirectories>
+ <DisableSpecificWarnings>4018; 4996</DisableSpecificWarnings>
+ <AdditionalOptions>/MP %(AdditionalOptions)</AdditionalOptions>
+ <MinimalRebuild>false</MinimalRebuild>
+ </ClCompile>
+ <Link>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <Optimization>MaxSpeed</Optimization>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ <AdditionalOptions>/MP %(AdditionalOptions)</AdditionalOptions>
+ <AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)..\..\include;$(ProjectDir)..\..\..\libiconv-1.14\include</AdditionalIncludeDirectories>
+ <DisableSpecificWarnings>4018; 4996</DisableSpecificWarnings>
+ </ClCompile>
+ <Link>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|Win32'">
+ <ClCompile>
+ <AdditionalOptions>/MP %(AdditionalOptions)</AdditionalOptions>
+ <AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)..\..\include;$(ProjectDir)..\..\..\libiconv-1.14\include</AdditionalIncludeDirectories>
+ <DisableSpecificWarnings>4018; 4996</DisableSpecificWarnings>
+ </ClCompile>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <ClCompile Include="..\..\c14n.c" />
+ <ClCompile Include="..\..\catalog.c" />
+ <ClCompile Include="..\..\chvalid.c" />
+ <ClCompile Include="..\..\debugXML.c" />
+ <ClCompile Include="..\..\dict.c" />
+ <ClCompile Include="..\..\DOCBparser.c" />
+ <ClCompile Include="..\..\encoding.c" />
+ <ClCompile Include="..\..\entities.c" />
+ <ClCompile Include="..\..\error.c" />
+ <ClCompile Include="..\..\globals.c" />
+ <ClCompile Include="..\..\hash.c" />
+ <ClCompile Include="..\..\HTMLparser.c" />
+ <ClCompile Include="..\..\HTMLtree.c" />
+ <ClCompile Include="..\..\legacy.c" />
+ <ClCompile Include="..\..\list.c" />
+ <ClCompile Include="..\..\nanoftp.c" />
+ <ClCompile Include="..\..\nanohttp.c" />
+ <ClCompile Include="..\..\parser.c" />
+ <ClCompile Include="..\..\parserInternals.c" />
+ <ClCompile Include="..\..\pattern.c" />
+ <ClCompile Include="..\..\relaxng.c" />
+ <ClCompile Include="..\..\SAX.c" />
+ <ClCompile Include="..\..\SAX2.c" />
+ <ClCompile Include="..\..\schematron.c" />
+ <ClCompile Include="..\..\threads.c" />
+ <ClCompile Include="..\..\tree.c" />
+ <ClCompile Include="..\..\uri.c" />
+ <ClCompile Include="..\..\valid.c" />
+ <ClCompile Include="..\..\xinclude.c" />
+ <ClCompile Include="..\..\xlink.c" />
+ <ClCompile Include="..\..\xmlcatalog.c" />
+ <ClCompile Include="..\..\xmlIO.c" />
+ <ClCompile Include="..\..\xmlmemory.c" />
+ <ClCompile Include="..\..\xmlmodule.c" />
+ <ClCompile Include="..\..\xmlreader.c" />
+ <ClCompile Include="..\..\xmlregexp.c" />
+ <ClCompile Include="..\..\xmlsave.c" />
+ <ClCompile Include="..\..\xmlschemas.c" />
+ <ClCompile Include="..\..\xmlschemastypes.c" />
+ <ClCompile Include="..\..\xmlstring.c" />
+ <ClCompile Include="..\..\xmlunicode.c" />
+ <ClCompile Include="..\..\xmlwriter.c" />
+ <ClCompile Include="..\..\xpath.c" />
+ <ClCompile Include="..\..\xpointer.c" />
+ </ItemGroup>
+ <ItemGroup>
+ <ClInclude Include="..\..\acconfig.h" />
+ <ClInclude Include="..\..\elfgcchack.h" />
+ <ClInclude Include="..\..\libxml.h" />
+ <ClInclude Include="config.h" />
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <ImportGroup Label="ExtensionTargets">
+ </ImportGroup>
+</Project>
\ No newline at end of file diff --git a/libxml2/win32/VC10/libxml2.sln b/libxml2/win32/VC10/libxml2.sln new file mode 100644 index 0000000..8485751 --- /dev/null +++ b/libxml2/win32/VC10/libxml2.sln @@ -0,0 +1,49 @@ +
+Microsoft Visual Studio Solution File, Format Version 11.00
+# Visual Studio 2010
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libxml2", "libxml2.vcxproj", "{1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "runsuite", "runsuite.vcxproj", "{D841B4F7-C277-49CB-B379-8B1801C8EE35}"
+ ProjectSection(ProjectDependencies) = postProject
+ {BEC03130-A64C-48F8-863C-52DA83CFB3AE} = {BEC03130-A64C-48F8-863C-52DA83CFB3AE}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "iconv", "..\..\..\libiconv-1.14.vc10\windows\VC10\iconv.vcxproj", "{BEC03130-A64C-48F8-863C-52DA83CFB3AE}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug DLL|Win32 = Debug DLL|Win32
+ Debug|Win32 = Debug|Win32
+ Release DLL|Win32 = Release DLL|Win32
+ Release|Win32 = Release|Win32
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug DLL|Win32.ActiveCfg = Debug|Win32
+ {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug DLL|Win32.Build.0 = Debug|Win32
+ {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Debug|Win32.Build.0 = Debug|Win32
+ {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release DLL|Win32.ActiveCfg = Release|Win32
+ {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release DLL|Win32.Build.0 = Release|Win32
+ {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|Win32.ActiveCfg = Release|Win32
+ {1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}.Release|Win32.Build.0 = Release|Win32
+ {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Debug DLL|Win32.ActiveCfg = Debug|Win32
+ {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Debug DLL|Win32.Build.0 = Debug|Win32
+ {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Debug|Win32.Build.0 = Debug|Win32
+ {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Release DLL|Win32.ActiveCfg = Release|Win32
+ {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Release DLL|Win32.Build.0 = Release|Win32
+ {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Release|Win32.ActiveCfg = Release|Win32
+ {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Release|Win32.Build.0 = Release|Win32
+ {BEC03130-A64C-48F8-863C-52DA83CFB3AE}.Debug DLL|Win32.ActiveCfg = Debug DLL|Win32
+ {BEC03130-A64C-48F8-863C-52DA83CFB3AE}.Debug DLL|Win32.Build.0 = Debug DLL|Win32
+ {BEC03130-A64C-48F8-863C-52DA83CFB3AE}.Debug|Win32.ActiveCfg = Debug|Win32
+ {BEC03130-A64C-48F8-863C-52DA83CFB3AE}.Debug|Win32.Build.0 = Debug|Win32
+ {BEC03130-A64C-48F8-863C-52DA83CFB3AE}.Release DLL|Win32.ActiveCfg = Release DLL|Win32
+ {BEC03130-A64C-48F8-863C-52DA83CFB3AE}.Release DLL|Win32.Build.0 = Release DLL|Win32
+ {BEC03130-A64C-48F8-863C-52DA83CFB3AE}.Release|Win32.ActiveCfg = Release|Win32
+ {BEC03130-A64C-48F8-863C-52DA83CFB3AE}.Release|Win32.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/libxml2/win32/VC10/libxml2.vcxproj b/libxml2/win32/VC10/libxml2.vcxproj new file mode 100644 index 0000000..0588fa6 --- /dev/null +++ b/libxml2/win32/VC10/libxml2.vcxproj @@ -0,0 +1,137 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup Label="ProjectConfigurations">
+ <ProjectConfiguration Include="Debug|Win32">
+ <Configuration>Debug</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|Win32">
+ <Configuration>Release</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ </ItemGroup>
+ <PropertyGroup Label="Globals">
+ <ProjectGuid>{1D6039F6-5078-416F-A3AF-A36EFC7E6A1C}</ProjectGuid>
+ <RootNamespace>libxml2</RootNamespace>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
+ <ConfigurationType>StaticLibrary</ConfigurationType>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <WholeProgramOptimization>true</WholeProgramOptimization>
+ <CharacterSet>MultiByte</CharacterSet>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <ImportGroup Label="ExtensionSettings">
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <PropertyGroup Label="UserMacros" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <OutDir>$(ProjectDir)..\..\lib\</OutDir>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <IntDir>build\$(ProjectName)$(Configuration)\</IntDir>
+ </PropertyGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <Optimization>Disabled</Optimization>
+ <AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)..\..\include;$(ProjectDir)..\..\..\libiconv-1.14.vc10\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <DisableSpecificWarnings>4996</DisableSpecificWarnings>
+ <MinimalRebuild>false</MinimalRebuild>
+ <MultiProcessorCompilation>true</MultiProcessorCompilation>
+ </ClCompile>
+ <Link>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <Optimization>MaxSpeed</Optimization>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ </ClCompile>
+ <Link>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <ClCompile Include="..\..\buf.c" />
+ <ClCompile Include="..\..\c14n.c" />
+ <ClCompile Include="..\..\catalog.c" />
+ <ClCompile Include="..\..\chvalid.c" />
+ <ClCompile Include="..\..\debugXML.c" />
+ <ClCompile Include="..\..\dict.c" />
+ <ClCompile Include="..\..\DOCBparser.c" />
+ <ClCompile Include="..\..\encoding.c" />
+ <ClCompile Include="..\..\entities.c" />
+ <ClCompile Include="..\..\error.c" />
+ <ClCompile Include="..\..\globals.c" />
+ <ClCompile Include="..\..\hash.c" />
+ <ClCompile Include="..\..\HTMLparser.c" />
+ <ClCompile Include="..\..\HTMLtree.c" />
+ <ClCompile Include="..\..\legacy.c" />
+ <ClCompile Include="..\..\list.c" />
+ <ClCompile Include="..\..\nanoftp.c" />
+ <ClCompile Include="..\..\nanohttp.c" />
+ <ClCompile Include="..\..\parser.c" />
+ <ClCompile Include="..\..\parserInternals.c" />
+ <ClCompile Include="..\..\pattern.c" />
+ <ClCompile Include="..\..\relaxng.c" />
+ <ClCompile Include="..\..\SAX.c" />
+ <ClCompile Include="..\..\SAX2.c" />
+ <ClCompile Include="..\..\schematron.c" />
+ <ClCompile Include="..\..\threads.c" />
+ <ClCompile Include="..\..\tree.c" />
+ <ClCompile Include="..\..\uri.c" />
+ <ClCompile Include="..\..\valid.c" />
+ <ClCompile Include="..\..\xinclude.c" />
+ <ClCompile Include="..\..\xlink.c" />
+ <ClCompile Include="..\..\xmlcatalog.c" />
+ <ClCompile Include="..\..\xmlIO.c" />
+ <ClCompile Include="..\..\xmlmemory.c" />
+ <ClCompile Include="..\..\xmlmodule.c" />
+ <ClCompile Include="..\..\xmlreader.c" />
+ <ClCompile Include="..\..\xmlregexp.c" />
+ <ClCompile Include="..\..\xmlsave.c" />
+ <ClCompile Include="..\..\xmlschemas.c" />
+ <ClCompile Include="..\..\xmlschemastypes.c" />
+ <ClCompile Include="..\..\xmlstring.c" />
+ <ClCompile Include="..\..\xmlunicode.c" />
+ <ClCompile Include="..\..\xmlwriter.c" />
+ <ClCompile Include="..\..\xpath.c" />
+ <ClCompile Include="..\..\xpointer.c" />
+ </ItemGroup>
+ <ItemGroup>
+ <ClInclude Include="..\..\acconfig.h" />
+ <ClInclude Include="..\..\elfgcchack.h" />
+ <ClInclude Include="..\..\libxml.h" />
+ <ClInclude Include="config.h" />
+ </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\..\libiconv-1.14.vc10\windows\VC10\iconv.vcxproj">
+ <Project>{bec03130-a64c-48f8-863c-52da83cfb3ae}</Project>
+ <Private>true</Private>
+ <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
+ <CopyLocalSatelliteAssemblies>false</CopyLocalSatelliteAssemblies>
+ <LinkLibraryDependencies>true</LinkLibraryDependencies>
+ <UseLibraryDependencyInputs>false</UseLibraryDependencyInputs>
+ </ProjectReference>
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <ImportGroup Label="ExtensionTargets">
+ </ImportGroup>
+</Project>
\ No newline at end of file diff --git a/libxml2/win32/VC10/libxml2.vcxproj.filters b/libxml2/win32/VC10/libxml2.vcxproj.filters new file mode 100644 index 0000000..e8e7af3 --- /dev/null +++ b/libxml2/win32/VC10/libxml2.vcxproj.filters @@ -0,0 +1,171 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup>
+ <Filter Include="Source Files">
+ <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
+ <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
+ </Filter>
+ <Filter Include="Header Files">
+ <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
+ <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
+ </Filter>
+ <Filter Include="Resource Files">
+ <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
+ <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
+ </Filter>
+ <Filter Include="Header Files\windows">
+ <UniqueIdentifier>{22791c14-7c07-4222-ad58-8c18d3fb10ba}</UniqueIdentifier>
+ </Filter>
+ <Filter Include="Header Files\windows\VC10">
+ <UniqueIdentifier>{bfddc99f-05d4-4f06-98d1-346b1be73d6f}</UniqueIdentifier>
+ </Filter>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="..\..\c14n.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\catalog.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\chvalid.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\debugXML.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\dict.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\DOCBparser.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\encoding.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\entities.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\error.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\globals.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\hash.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\legacy.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\list.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\parser.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\parserInternals.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\pattern.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\relaxng.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\SAX.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\SAX2.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\schematron.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\threads.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\tree.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\uri.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\valid.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xinclude.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xlink.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xmlcatalog.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xmlIO.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xmlmemory.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xmlmodule.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xmlreader.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xmlregexp.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xmlsave.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xmlschemas.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xmlschemastypes.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xmlstring.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xmlunicode.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xmlwriter.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xpath.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\xpointer.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\nanohttp.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\nanoftp.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\HTMLparser.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\HTMLtree.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ </ItemGroup>
+ <ItemGroup>
+ <ClInclude Include="config.h">
+ <Filter>Header Files\windows\VC10</Filter>
+ </ClInclude>
+ <ClInclude Include="..\..\acconfig.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
+ <ClInclude Include="..\..\elfgcchack.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
+ <ClInclude Include="..\..\libxml.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
+ </ItemGroup>
+</Project>
\ No newline at end of file diff --git a/libxml2/win32/VC10/runsuite.vcxproj b/libxml2/win32/VC10/runsuite.vcxproj new file mode 100644 index 0000000..83cc991 --- /dev/null +++ b/libxml2/win32/VC10/runsuite.vcxproj @@ -0,0 +1,85 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup Label="ProjectConfigurations">
+ <ProjectConfiguration Include="Debug|Win32">
+ <Configuration>Debug</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|Win32">
+ <Configuration>Release</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ </ItemGroup>
+ <PropertyGroup Label="Globals">
+ <ProjectGuid>{D841B4F7-C277-49CB-B379-8B1801C8EE35}</ProjectGuid>
+ <RootNamespace>runsuite</RootNamespace>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <WholeProgramOptimization>true</WholeProgramOptimization>
+ <CharacterSet>MultiByte</CharacterSet>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <ImportGroup Label="ExtensionSettings">
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <PropertyGroup Label="UserMacros" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <OutDir>$(ProjectDir)..\..\lib\</OutDir>
+ <IntDir>build\$(ProjectName)$(Configuration)\</IntDir>
+ </PropertyGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <Optimization>Disabled</Optimization>
+ <AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)..\..\include;$(ProjectDir)..\..\..\libiconv-1.14.vc10\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <DisableSpecificWarnings>4996</DisableSpecificWarnings>
+ <PreprocessorDefinitions>_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <AdditionalOptions>/MP %(AdditionalOptions)</AdditionalOptions>
+ <MinimalRebuild>false</MinimalRebuild>
+ </ClCompile>
+ <Link>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ <AdditionalDependencies>Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <Optimization>MaxSpeed</Optimization>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ </ClCompile>
+ <Link>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <ClCompile Include="..\..\runsuite.c" />
+ </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\..\libiconv-1.14.vc10\windows\VC10\iconv.vcxproj">
+ <Project>{bec03130-a64c-48f8-863c-52da83cfb3ae}</Project>
+ </ProjectReference>
+ <ProjectReference Include="libxml2.vcxproj">
+ <Project>{1d6039f6-5078-416f-a3af-a36efc7e6a1c}</Project>
+ </ProjectReference>
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <ImportGroup Label="ExtensionTargets">
+ </ImportGroup>
+</Project>
\ No newline at end of file diff --git a/libxml2/win32/VC10/runsuite.vcxproj.filters b/libxml2/win32/VC10/runsuite.vcxproj.filters new file mode 100644 index 0000000..d7dce00 --- /dev/null +++ b/libxml2/win32/VC10/runsuite.vcxproj.filters @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup>
+ <Filter Include="Source Files">
+ <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
+ <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
+ </Filter>
+ <Filter Include="Header Files">
+ <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
+ <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
+ </Filter>
+ <Filter Include="Resource Files">
+ <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
+ <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
+ </Filter>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="..\..\runsuite.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ </ItemGroup>
+</Project>
\ No newline at end of file diff --git a/libxml2/win32/configure.js b/libxml2/win32/configure.js new file mode 100644 index 0000000..92b9ba0 --- /dev/null +++ b/libxml2/win32/configure.js @@ -0,0 +1,708 @@ +/* Configure script for libxml, specific for Windows with Scripting Host. + * + * This script will configure the libxml build process and create necessary files. + * Run it with an 'help', or an invalid option and it will tell you what options + * it accepts. + * + * March 2002, Igor Zlatkovic <igor@zlatkovic.com> + */ + +/* The source directory, relative to the one where this file resides. */ +var srcDirXml = ".."; +var srcDirUtils = ".."; +/* Base name of what we are building. */ +var baseName = "libxml2"; +/* Configure file which contains the version and the output file where + we can store our build configuration. */ +var configFile = srcDirXml + "\\configure.ac"; +var versionFile = ".\\config.msvc"; +/* Input and output files regarding the libxml features. */ +var optsFileIn = srcDirXml + "\\include\\libxml\\xmlversion.h.in"; +var optsFile = srcDirXml + "\\include\\libxml\\xmlversion.h"; +/* Version strings for the binary distribution. Will be filled later + in the code. */ +var verMajor; +var verMinor; +var verMicro; +var verMicroSuffix; +var verCvs; +var useCvsVer = true; +/* Libxml features. */ +var withTrio = false; +var withThreads = "native"; +var withFtp = true; +var withHttp = true; +var withHtml = true; +var withC14n = true; +var withCatalog = true; +var withDocb = true; +var withXpath = true; +var withXptr = true; +var withXinclude = true; +var withIconv = true; +var withIcu = false; +var withIso8859x = false; +var withZlib = false; +var withLzma = false; +var withDebug = true; +var withMemDebug = false; +var withRunDebug = false; +var withSchemas = true; +var withSchematron = true; +var withRegExps = true; +var withModules = true; +var withTree = true; +var withReader = true; +var withWriter = true; +var withWalker = true; +var withPattern = true; +var withPush = true; +var withValid = true; +var withSax1 = true; +var withLegacy = true; +var withOutput = true; +var withPython = false; +/* Win32 build options. */ +var dirSep = "\\"; +var compiler = "msvc"; +var cruntime = "/MD"; +var dynruntime = true; +var vcmanifest = false; +var buildDebug = 0; +var buildStatic = 0; +var buildPrefix = "."; +var buildBinPrefix = ""; +var buildIncPrefix = ""; +var buildLibPrefix = ""; +var buildSoPrefix = ""; +var buildInclude = "."; +var buildLib = "."; +/* Local stuff */ +var error = 0; + +/* Helper function, transforms the option variable into the 'Enabled' + or 'Disabled' string. */ +function boolToStr(opt) +{ + if (opt == false) + return "no"; + else if (opt == true) + return "yes"; + error = 1; + return "*** undefined ***"; +} + +/* Helper function, transforms the argument string into a boolean + value. */ +function strToBool(opt) +{ + if (opt == 0 || opt == "no") + return false; + else if (opt == 1 || opt == "yes") + return true; + error = 1; + return false; +} + +/* Displays the details about how to use this script. */ +function usage() +{ + var txt; + txt = "Usage:\n"; + txt += " cscript " + WScript.ScriptName + " <options>\n"; + txt += " cscript " + WScript.ScriptName + " help\n\n"; + txt += "Options can be specified in the form <option>=<value>, where the value is\n"; + txt += "either 'yes' or 'no', if not stated otherwise.\n\n"; + txt += "\nXML processor options, default value given in parentheses:\n\n"; + txt += " trio: Enable TRIO string manipulator (" + (withTrio? "yes" : "no") + ")\n"; + txt += " threads: Enable thread safety [no|ctls|native|posix] (" + (withThreads) + ") \n"; + txt += " ftp: Enable FTP client (" + (withFtp? "yes" : "no") + ")\n"; + txt += " http: Enable HTTP client (" + (withHttp? "yes" : "no") + ")\n"; + txt += " html: Enable HTML processor (" + (withHtml? "yes" : "no") + ")\n"; + txt += " c14n: Enable C14N support (" + (withC14n? "yes" : "no") + ")\n"; + txt += " catalog: Enable catalog support (" + (withCatalog? "yes" : "no") + ")\n"; + txt += " docb: Enable DocBook support (" + (withDocb? "yes" : "no") + ")\n"; + txt += " xpath: Enable XPath support (" + (withXpath? "yes" : "no") + ")\n"; + txt += " xptr: Enable XPointer support (" + (withXptr? "yes" : "no") + ")\n"; + txt += " xinclude: Enable XInclude support (" + (withXinclude? "yes" : "no") + ")\n"; + txt += " iconv: Enable iconv support (" + (withIconv? "yes" : "no") + ")\n"; + txt += " icu: Enable icu support (" + (withIcu? "yes" : "no") + ")\n"; + txt += " iso8859x: Enable ISO8859X support (" + (withIso8859x? "yes" : "no") + ")\n"; + txt += " zlib: Enable zlib support (" + (withZlib? "yes" : "no") + ")\n"; + txt += " lzma: Enable lzma support (" + (withLzma? "yes" : "no") + ")\n"; + txt += " xml_debug: Enable XML debbugging module (" + (withDebug? "yes" : "no") + ")\n"; + txt += " mem_debug: Enable memory debugger (" + (withMemDebug? "yes" : "no") + ")\n"; + txt += " run_debug: Enable memory debugger (" + (withRunDebug? "yes" : "no") + ")\n"; + txt += " regexps: Enable regular expressions (" + (withRegExps? "yes" : "no") + ")\n"; + txt += " modules: Enable module support (" + (withModules? "yes" : "no") + ")\n"; + txt += " tree: Enable tree api (" + (withTree? "yes" : "no") + ")\n"; + txt += " reader: Enable xmlReader api (" + (withReader? "yes" : "no") + ")\n"; + txt += " writer: Enable xmlWriter api (" + (withWriter? "yes" : "no") + ")\n"; + txt += " walker: Enable xmlDocWalker api (" + (withWalker? "yes" : "no") + ")\n"; + txt += " pattern: Enable xmlPattern api (" + (withPattern? "yes" : "no") + ")\n"; + txt += " push: Enable push api (" + (withPush? "yes" : "no") + ")\n"; + txt += " valid: Enable DTD validation support (" + (withValid? "yes" : "no") + ")\n"; + txt += " sax1: Enable SAX1 api (" + (withSax1? "yes" : "no") + ")\n"; + txt += " legacy: Enable Deprecated api's (" + (withLegacy? "yes" : "no") + ")\n"; + txt += " output: Enable serialization support (" + (withOutput? "yes" : "no") + ")\n"; + txt += " schemas: Enable XML Schema support (" + (withSchemas? "yes" : "no") + ")\n"; + txt += " schematron: Enable Schematron support (" + (withSchematron? "yes" : "no") + ")\n"; + txt += " python: Build Python bindings (" + (withPython? "yes" : "no") + ")\n"; + txt += "\nWin32 build options, default value given in parentheses:\n\n"; + txt += " compiler: Compiler to be used [msvc|mingw|bcb] (" + compiler + ")\n"; + txt += " cruntime: C-runtime compiler option (only msvc) (" + cruntime + ")\n"; + txt += " dynruntime: Use the dynamic RTL (only bcb) (" + dynruntime + ")\n"; + txt += " vcmanifest: Embed VC manifest (only msvc) (" + (vcmanifest? "yes" : "no") + ")\n"; + txt += " debug: Build unoptimised debug executables (" + (buildDebug? "yes" : "no") + ")\n"; + txt += " static: Link xmllint statically to libxml2 (" + (buildStatic? "yes" : "no") + ")\n"; + txt += " Note: automatically enabled if cruntime is not /MD or /MDd\n"; + txt += " prefix: Base directory for the installation (" + buildPrefix + ")\n"; + txt += " bindir: Directory where xmllint and friends should be installed\n"; + txt += " (" + buildBinPrefix + ")\n"; + txt += " incdir: Directory where headers should be installed\n"; + txt += " (" + buildIncPrefix + ")\n"; + txt += " libdir: Directory where static and import libraries should be\n"; + txt += " installed (" + buildLibPrefix + ")\n"; + txt += " sodir: Directory where shared libraries should be installed\n"; + txt += " (" + buildSoPrefix + ")\n"; + txt += " include: Additional search path for the compiler, particularily\n"; + txt += " where iconv headers can be found (" + buildInclude + ")\n"; + txt += " lib: Additional search path for the linker, particularily\n"; + txt += " where iconv library can be found (" + buildLib + ")\n"; + WScript.Echo(txt); +} + +/* Discovers the version we are working with by reading the apropriate + configuration file. Despite its name, this also writes the configuration + file included by our makefile. */ +function discoverVersion() +{ + var fso, cf, vf, ln, s, iDot, iSlash; + fso = new ActiveXObject("Scripting.FileSystemObject"); + verCvs = ""; + if (useCvsVer && fso.FileExists("..\\CVS\\Entries")) { + cf = fso.OpenTextFile("..\\CVS\\Entries", 1); + while (cf.AtEndOfStream != true) { + ln = cf.ReadLine(); + s = new String(ln); + if (s.search(/^\/ChangeLog\//) != -1) { + iDot = s.indexOf("."); + iSlash = s.indexOf("/", iDot); + verCvs = "CVS" + s.substring(iDot + 1, iSlash); + break; + } + } + cf.Close(); + } + cf = fso.OpenTextFile(configFile, 1); + if (compiler == "msvc") + versionFile = ".\\config.msvc"; + else if (compiler == "mingw") + versionFile = ".\\config.mingw"; + else if (compiler == "bcb") + versionFile = ".\\config.bcb"; + vf = fso.CreateTextFile(versionFile, true); + vf.WriteLine("# " + versionFile); + vf.WriteLine("# This file is generated automatically by " + WScript.ScriptName + "."); + vf.WriteBlankLines(1); + while (cf.AtEndOfStream != true) { + ln = cf.ReadLine(); + s = new String(ln); + if (s.search(/^LIBXML_MAJOR_VERSION=/) != -1) { + vf.WriteLine(s); + verMajor = s.substring(s.indexOf("=") + 1, s.length) + } else if(s.search(/^LIBXML_MINOR_VERSION=/) != -1) { + vf.WriteLine(s); + verMinor = s.substring(s.indexOf("=") + 1, s.length) + } else if(s.search(/^LIBXML_MICRO_VERSION=/) != -1) { + vf.WriteLine(s); + verMicro = s.substring(s.indexOf("=") + 1, s.length) + } else if(s.search(/^LIBXML_MICRO_VERSION_SUFFIX=/) != -1) { + vf.WriteLine(s); + verMicroSuffix = s.substring(s.indexOf("=") + 1, s.length) + } + } + cf.Close(); + vf.WriteLine("XML_SRCDIR=" + srcDirXml); + vf.WriteLine("UTILS_SRCDIR=" + srcDirUtils); + vf.WriteLine("WITH_TRIO=" + (withTrio? "1" : "0")); + vf.WriteLine("WITH_THREADS=" + withThreads); + vf.WriteLine("WITH_FTP=" + (withFtp? "1" : "0")); + vf.WriteLine("WITH_HTTP=" + (withHttp? "1" : "0")); + vf.WriteLine("WITH_HTML=" + (withHtml? "1" : "0")); + vf.WriteLine("WITH_C14N=" + (withC14n? "1" : "0")); + vf.WriteLine("WITH_CATALOG=" + (withCatalog? "1" : "0")); + vf.WriteLine("WITH_DOCB=" + (withDocb? "1" : "0")); + vf.WriteLine("WITH_XPATH=" + (withXpath? "1" : "0")); + vf.WriteLine("WITH_XPTR=" + (withXptr? "1" : "0")); + vf.WriteLine("WITH_XINCLUDE=" + (withXinclude? "1" : "0")); + vf.WriteLine("WITH_ICONV=" + (withIconv? "1" : "0")); + vf.WriteLine("WITH_ICU=" + (withIcu? "1" : "0")); + vf.WriteLine("WITH_ISO8859X=" + (withIso8859x? "1" : "0")); + vf.WriteLine("WITH_ZLIB=" + (withZlib? "1" : "0")); + vf.WriteLine("WITH_LZMA=" + (withLzma? "1" : "0")); + vf.WriteLine("WITH_DEBUG=" + (withDebug? "1" : "0")); + vf.WriteLine("WITH_MEM_DEBUG=" + (withMemDebug? "1" : "0")); + vf.WriteLine("WITH_RUN_DEBUG=" + (withRunDebug? "1" : "0")); + vf.WriteLine("WITH_SCHEMAS=" + (withSchemas? "1" : "0")); + vf.WriteLine("WITH_SCHEMATRON=" + (withSchematron? "1" : "0")); + vf.WriteLine("WITH_REGEXPS=" + (withRegExps? "1" : "0")); + vf.WriteLine("WITH_MODULES=" + (withModules? "1" : "0")); + vf.WriteLine("WITH_TREE=" + (withTree? "1" : "0")); + vf.WriteLine("WITH_READER=" + (withReader? "1" : "0")); + vf.WriteLine("WITH_WRITER=" + (withWriter? "1" : "0")); + vf.WriteLine("WITH_WALKER=" + (withWalker? "1" : "0")); + vf.WriteLine("WITH_PATTERN=" + (withPattern? "1" : "0")); + vf.WriteLine("WITH_PUSH=" + (withPush? "1" : "0")); + vf.WriteLine("WITH_VALID=" + (withValid? "1" : "0")); + vf.WriteLine("WITH_SAX1=" + (withSax1? "1" : "0")); + vf.WriteLine("WITH_LEGACY=" + (withLegacy? "1" : "0")); + vf.WriteLine("WITH_OUTPUT=" + (withOutput? "1" : "0")); + vf.WriteLine("WITH_PYTHON=" + (withPython? "1" : "0")); + vf.WriteLine("DEBUG=" + (buildDebug? "1" : "0")); + vf.WriteLine("STATIC=" + (buildStatic? "1" : "0")); + vf.WriteLine("PREFIX=" + buildPrefix); + vf.WriteLine("BINPREFIX=" + buildBinPrefix); + vf.WriteLine("INCPREFIX=" + buildIncPrefix); + vf.WriteLine("LIBPREFIX=" + buildLibPrefix); + vf.WriteLine("SOPREFIX=" + buildSoPrefix); + if (compiler == "msvc") { + vf.WriteLine("INCLUDE=$(INCLUDE);" + buildInclude); + vf.WriteLine("LIB=$(LIB);" + buildLib); + vf.WriteLine("CRUNTIME=" + cruntime); + vf.WriteLine("VCMANIFEST=" + (vcmanifest? "1" : "0")); + } else if (compiler == "mingw") { + vf.WriteLine("INCLUDE+= -I" + buildInclude); + vf.WriteLine("LIB+= -L" + buildLib); + } else if (compiler == "bcb") { + vf.WriteLine("INCLUDE=" + buildInclude); + vf.WriteLine("LIB=" + buildLib); + vf.WriteLine("DYNRUNTIME=" + (dynruntime? "1" : "0")); + } + vf.Close(); +} + +/* Configures libxml. This one will generate xmlversion.h from xmlversion.h.in + taking what the user passed on the command line into account. */ +function configureLibxml() +{ + var fso, ofi, of, ln, s; + fso = new ActiveXObject("Scripting.FileSystemObject"); + ofi = fso.OpenTextFile(optsFileIn, 1); + of = fso.CreateTextFile(optsFile, true); + while (ofi.AtEndOfStream != true) { + ln = ofi.ReadLine(); + s = new String(ln); + if (s.search(/\@VERSION\@/) != -1) { + of.WriteLine(s.replace(/\@VERSION\@/, + verMajor + "." + verMinor + "." + verMicro + verMicroSuffix)); + } else if (s.search(/\@LIBXML_VERSION_NUMBER\@/) != -1) { + of.WriteLine(s.replace(/\@LIBXML_VERSION_NUMBER\@/, + verMajor*10000 + verMinor*100 + verMicro*1)); + } else if (s.search(/\@LIBXML_VERSION_EXTRA\@/) != -1) { + of.WriteLine(s.replace(/\@LIBXML_VERSION_EXTRA\@/, verCvs)); + } else if (s.search(/\@WITH_TRIO\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_TRIO\@/, withTrio? "1" : "0")); + } else if (s.search(/\@WITH_THREADS\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_THREADS\@/, withThreads == "no"? "0" : "1")); + } else if (s.search(/\@WITH_THREAD_ALLOC\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_THREAD_ALLOC\@/, "0")); + } else if (s.search(/\@WITH_FTP\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_FTP\@/, withFtp? "1" : "0")); + } else if (s.search(/\@WITH_HTTP\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_HTTP\@/, withHttp? "1" : "0")); + } else if (s.search(/\@WITH_HTML\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_HTML\@/, withHtml? "1" : "0")); + } else if (s.search(/\@WITH_C14N\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_C14N\@/, withC14n? "1" : "0")); + } else if (s.search(/\@WITH_CATALOG\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_CATALOG\@/, withCatalog? "1" : "0")); + } else if (s.search(/\@WITH_DOCB\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_DOCB\@/, withDocb? "1" : "0")); + } else if (s.search(/\@WITH_XPATH\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_XPATH\@/, withXpath? "1" : "0")); + } else if (s.search(/\@WITH_XPTR\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_XPTR\@/, withXptr? "1" : "0")); + } else if (s.search(/\@WITH_XINCLUDE\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_XINCLUDE\@/, withXinclude? "1" : "0")); + } else if (s.search(/\@WITH_ICONV\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_ICONV\@/, withIconv? "1" : "0")); + } else if (s.search(/\@WITH_ICU\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_ICU\@/, withIcu? "1" : "0")); + } else if (s.search(/\@WITH_ISO8859X\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_ISO8859X\@/, withIso8859x? "1" : "0")); + } else if (s.search(/\@WITH_ZLIB\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_ZLIB\@/, withZlib? "1" : "0")); + } else if (s.search(/\@WITH_LZMA\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_LZMA\@/, withLzma? "1" : "0")); + } else if (s.search(/\@WITH_DEBUG\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_DEBUG\@/, withDebug? "1" : "0")); + } else if (s.search(/\@WITH_MEM_DEBUG\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_MEM_DEBUG\@/, withMemDebug? "1" : "0")); + } else if (s.search(/\@WITH_RUN_DEBUG\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_RUN_DEBUG\@/, withRunDebug? "1" : "0")); + } else if (s.search(/\@WITH_SCHEMAS\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_SCHEMAS\@/, withSchemas? "1" : "0")); + } else if (s.search(/\@WITH_SCHEMATRON\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_SCHEMATRON\@/, withSchematron? "1" : "0")); + } else if (s.search(/\@WITH_REGEXPS\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_REGEXPS\@/, withRegExps? "1" : "0")); + } else if (s.search(/\@WITH_MODULES\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_MODULES\@/, withModules? "1" : "0")); + } else if (s.search(/\@MODULE_EXTENSION\@/) != -1) { + of.WriteLine(s.replace(/\@MODULE_EXTENSION\@/, ".dll")); + } else if (s.search(/\@WITH_TREE\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_TREE\@/, withTree? "1" : "0")); + } else if (s.search(/\@WITH_READER\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_READER\@/, withReader? "1" : "0")); + } else if (s.search(/\@WITH_WRITER\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_WRITER\@/, withWriter? "1" : "0")); + } else if (s.search(/\@WITH_WALKER\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_WALKER\@/, withWalker? "1" : "0")); + } else if (s.search(/\@WITH_PATTERN\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_PATTERN\@/, withPattern? "1" : "0")); + } else if (s.search(/\@WITH_PUSH\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_PUSH\@/, withPush? "1" : "0")); + } else if (s.search(/\@WITH_VALID\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_VALID\@/, withValid? "1" : "0")); + } else if (s.search(/\@WITH_SAX1\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_SAX1\@/, withSax1? "1" : "0")); + } else if (s.search(/\@WITH_LEGACY\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_LEGACY\@/, withLegacy? "1" : "0")); + } else if (s.search(/\@WITH_OUTPUT\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_OUTPUT\@/, withOutput? "1" : "0")); + } else + of.WriteLine(ln); + } + ofi.Close(); + of.Close(); +} +/* Configures Python bindings. Otherwise identical to the above */ +function configureLibxmlPy() +{ + var pyOptsFileIn = srcDirXml + "\\python\\setup.py.in"; + var pyOptsFile = srcDirXml + "\\python\\setup.py"; + var fso, ofi, of, ln, s; + fso = new ActiveXObject("Scripting.FileSystemObject"); + ofi = fso.OpenTextFile(pyOptsFileIn, 1); + of = fso.CreateTextFile(pyOptsFile, true); + while (ofi.AtEndOfStream != true) { + ln = ofi.ReadLine(); + s = new String(ln); + if (s.search(/\@LIBXML_VERSION\@/) != -1) { + of.WriteLine(s.replace(/\@LIBXML_VERSION\@/, + verMajor + "." + verMinor + "." + verMicro)); + } else if (s.search(/\@prefix\@/) != -1) { + of.WriteLine(s.replace(/\@prefix\@/, buildPrefix)); + } else if (s.search(/\@WITH_THREADS\@/) != -1) { + of.WriteLine(s.replace(/\@WITH_THREADS\@/, withThreads == "no"? "0" : "1")); + } else + of.WriteLine(ln); + } + ofi.Close(); + of.Close(); +} + +/* Creates the readme file for the binary distribution of 'bname', for the + version 'ver' in the file 'file'. This one is called from the Makefile when + generating a binary distribution. The parameters are passed by make. */ +function genReadme(bname, ver, file) +{ + var fso, f; + fso = new ActiveXObject("Scripting.FileSystemObject"); + f = fso.CreateTextFile(file, true); + f.WriteLine(" " + bname + " " + ver); + f.WriteLine(" --------------"); + f.WriteBlankLines(1); + f.WriteLine(" This is " + bname + ", version " + ver + ", binary package for the native Win32/IA32"); + f.WriteLine("platform."); + f.WriteBlankLines(1); + f.WriteLine(" The files in this package do not require any special installation"); + f.WriteLine("steps. Extract the contents of the archive whereever you wish and"); + f.WriteLine("make sure that your tools which use " + bname + " can find it."); + f.WriteBlankLines(1); + f.WriteLine(" For example, if you want to run the supplied utilities from the command"); + f.WriteLine("line, you can, if you wish, add the 'bin' subdirectory to the PATH"); + f.WriteLine("environment variable."); + f.WriteLine(" If you want to make programmes in C which use " + bname + ", you'll"); + f.WriteLine("likely know how to use the contents of this package. If you don't, please"); + f.WriteLine("refer to your compiler's documentation."); + f.WriteBlankLines(1); + f.WriteLine(" If there is something you cannot keep for yourself, such as a problem,"); + f.WriteLine("a cheer of joy, a comment or a suggestion, feel free to contact me using"); + f.WriteLine("the address below."); + f.WriteBlankLines(1); + f.WriteLine(" Igor Zlatkovic (igor@zlatkovic.com)"); + f.Close(); +} + + +/* + * main(), + * Execution begins here. + */ + +// Parse the command-line arguments. +for (i = 0; (i < WScript.Arguments.length) && (error == 0); i++) { + var arg, opt; + arg = WScript.Arguments(i); + opt = arg.substring(0, arg.indexOf("=")); + if (opt.length == 0) + opt = arg.substring(0, arg.indexOf(":")); + if (opt.length > 0) { + if (opt == "trio") + withTrio = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "threads") + withThreads = arg.substring(opt.length + 1, arg.length); + else if (opt == "ftp") + withFtp = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "http") + withHttp = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "html") + withHtml = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "c14n") + withC14n = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "catalog") + withCatalog = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "docb") + withDocb = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "xpath") + withXpath = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "xptr") + withXptr = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "xinclude") + withXinclude = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "iconv") + withIconv = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "icu") + withIcu = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "iso8859x") + withIso8859x = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "zlib") + withZlib = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "lzma") + withLzma = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "xml_debug") + withDebug = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "mem_debug") + withMemDebug = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "run_debug") + withRunDebug = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "schemas") + withSchemas = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "schematron") + withSchematron = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "regexps") + withRegExps = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "modules") + withModules = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "tree") + withTree = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "reader") + withReader = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "writer") + withWriter = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "walker") + withWalker = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "pattern") + withPattern = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "push") + withPush = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "valid") + withValid = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "sax1") + withSax1 = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "legacy") + withLegacy = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "output") + withOutput = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "python") + withPython = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "compiler") + compiler = arg.substring(opt.length + 1, arg.length); + else if (opt == "cruntime") + cruntime = arg.substring(opt.length + 1, arg.length); + else if (opt == "dynruntime") + dynruntime = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "vcmanifest") + vcmanifest = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "debug") + buildDebug = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "static") + buildStatic = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "prefix") + buildPrefix = arg.substring(opt.length + 1, arg.length); + else if (opt == "incdir") + buildIncPrefix = arg.substring(opt.length + 1, arg.length); + else if (opt == "bindir") + buildBinPrefix = arg.substring(opt.length + 1, arg.length); + else if (opt == "libdir") + buildLibPrefix = arg.substring(opt.length + 1, arg.length); + else if (opt == "sodir") + buildSoPrefix = arg.substring(opt.length + 1, arg.length); + else if (opt == "incdir") + buildIncPrefix = arg.substring(opt.length + 1, arg.length); + else if (opt == "include") + buildInclude = arg.substring(opt.length + 1, arg.length); + else if (opt == "lib") + buildLib = arg.substring(opt.length + 1, arg.length); + else if (opt == "release") + useCvsVer = false; + else + error = 1; + } else if (i == 0) { + if (arg == "genreadme") { + // This command comes from the Makefile and will not be checked + // for errors, because Makefile will always supply right the parameters. + genReadme(WScript.Arguments(1), WScript.Arguments(2), WScript.Arguments(3)); + WScript.Quit(0); + } else if (arg == "help") { + usage(); + WScript.Quit(0); + } + + } else { + error = 1; + } +} + + +// If we fail here, it is because the user supplied an unrecognised argument. +if (error != 0) { + usage(); + WScript.Quit(error); +} + +// if user choses to link the c-runtime library statically into libxml2 +// with /MT and friends, then we need to enable static linking for xmllint +if (cruntime == "/MT" || cruntime == "/MTd" || + cruntime == "/ML" || cruntime == "/MLd") { + buildStatic = 1; +} + +dirSep = "\\"; +if (buildBinPrefix == "") + buildBinPrefix = "$(PREFIX)" + dirSep + "bin"; +if (buildIncPrefix == "") + buildIncPrefix = "$(PREFIX)" + dirSep + "include"; +if (buildLibPrefix == "") + buildLibPrefix = "$(PREFIX)" + dirSep + "lib"; +if (buildSoPrefix == "") + buildSoPrefix = "$(PREFIX)" + dirSep + "bin"; + +// Discover the version. +discoverVersion(); +if (error != 0) { + WScript.Echo("Version discovery failed, aborting."); + WScript.Quit(error); +} + +var outVerString = baseName + " version: " + verMajor + "." + verMinor + "." + verMicro; +if (verMicroSuffix && verMicroSuffix != "") + outVerString += "-" + verMicroSuffix; +if (verCvs && verCvs != "") + outVerString += "-" + verCvs; +WScript.Echo(outVerString); + +// Configure libxml. +configureLibxml(); +if (error != 0) { + WScript.Echo("Configuration failed, aborting."); + WScript.Quit(error); +} + +if (withPython == true) { + configureLibxmlPy(); + if (error != 0) { + WScript.Echo("Configuration failed, aborting."); + WScript.Quit(error); + } + +} + +// Create the makefile. +var fso = new ActiveXObject("Scripting.FileSystemObject"); +var makefile = ".\\Makefile.msvc"; +if (compiler == "mingw") + makefile = ".\\Makefile.mingw"; +else if (compiler == "bcb") + makefile = ".\\Makefile.bcb"; +var new_makefile = ".\\Makefile"; +var f = fso.FileExists(new_makefile); +if (f) { + var t = fso.GetFile(new_makefile); + t.Attributes =0; +} +fso.CopyFile(makefile, new_makefile, true); +WScript.Echo("Created Makefile."); +// Create the config.h. +var confighsrc = "..\\include\\win32config.h"; +var configh = "..\\config.h"; +var f = fso.FileExists(configh); +if (f) { + var t = fso.GetFile(configh); + t.Attributes =0; +} +fso.CopyFile(confighsrc, configh, true); +WScript.Echo("Created config.h."); + + +// Display the final configuration. +var txtOut = "\nXML processor configuration\n"; +txtOut += "---------------------------\n"; +txtOut += " Trio: " + boolToStr(withTrio) + "\n"; +txtOut += " Thread safety: " + withThreads + "\n"; +txtOut += " FTP client: " + boolToStr(withFtp) + "\n"; +txtOut += " HTTP client: " + boolToStr(withHttp) + "\n"; +txtOut += " HTML processor: " + boolToStr(withHtml) + "\n"; +txtOut += " C14N support: " + boolToStr(withC14n) + "\n"; +txtOut += " Catalog support: " + boolToStr(withCatalog) + "\n"; +txtOut += " DocBook support: " + boolToStr(withDocb) + "\n"; +txtOut += " XPath support: " + boolToStr(withXpath) + "\n"; +txtOut += " XPointer support: " + boolToStr(withXptr) + "\n"; +txtOut += " XInclude support: " + boolToStr(withXinclude) + "\n"; +txtOut += " iconv support: " + boolToStr(withIconv) + "\n"; +txtOut += " icu support: " + boolToStr(withIcu) + "\n"; +txtOut += " iso8859x support: " + boolToStr(withIso8859x) + "\n"; +txtOut += " zlib support: " + boolToStr(withZlib) + "\n"; +txtOut += " lzma support: " + boolToStr(withLzma) + "\n"; +txtOut += " Debugging module: " + boolToStr(withDebug) + "\n"; +txtOut += " Memory debugging: " + boolToStr(withMemDebug) + "\n"; +txtOut += " Runtime debugging: " + boolToStr(withRunDebug) + "\n"; +txtOut += " Regexp support: " + boolToStr(withRegExps) + "\n"; +txtOut += " Module support: " + boolToStr(withModules) + "\n"; +txtOut += " Tree support: " + boolToStr(withTree) + "\n"; +txtOut += " Reader support: " + boolToStr(withReader) + "\n"; +txtOut += " Writer support: " + boolToStr(withWriter) + "\n"; +txtOut += " Walker support: " + boolToStr(withWalker) + "\n"; +txtOut += " Pattern support: " + boolToStr(withPattern) + "\n"; +txtOut += " Push support: " + boolToStr(withPush) + "\n"; +txtOut += "Validation support: " + boolToStr(withValid) + "\n"; +txtOut += " SAX1 support: " + boolToStr(withSax1) + "\n"; +txtOut += " Legacy support: " + boolToStr(withLegacy) + "\n"; +txtOut += " Output support: " + boolToStr(withOutput) + "\n"; +txtOut += "XML Schema support: " + boolToStr(withSchemas) + "\n"; +txtOut += "Schematron support: " + boolToStr(withSchematron) + "\n"; +txtOut += " Python bindings: " + boolToStr(withPython) + "\n"; +txtOut += "\n"; +txtOut += "Win32 build configuration\n"; +txtOut += "-------------------------\n"; +txtOut += " Compiler: " + compiler + "\n"; +if (compiler == "msvc") { + txtOut += " C-Runtime option: " + cruntime + "\n"; + txtOut += " Embed Manifest: " + boolToStr(vcmanifest) + "\n"; +} else if (compiler == "bcb") + txtOut += " Use dynamic RTL: " + dynruntime + "\n"; +txtOut += " Debug symbols: " + boolToStr(buildDebug) + "\n"; +txtOut += " Static xmllint: " + boolToStr(buildStatic) + "\n"; +txtOut += " Install prefix: " + buildPrefix + "\n"; +txtOut += " Put tools in: " + buildBinPrefix + "\n"; +txtOut += " Put headers in: " + buildIncPrefix + "\n"; +txtOut += "Put static libs in: " + buildLibPrefix + "\n"; +txtOut += "Put shared libs in: " + buildSoPrefix + "\n"; +txtOut += " Include path: " + buildInclude + "\n"; +txtOut += " Lib path: " + buildLib + "\n"; +WScript.Echo(txtOut); + +// + diff --git a/libxml2/win32/defgen.xsl b/libxml2/win32/defgen.xsl new file mode 100644 index 0000000..a598ff1 --- /dev/null +++ b/libxml2/win32/defgen.xsl @@ -0,0 +1,288 @@ +<?xml version="1.0"?> +<!-- + win32/defgen.xsl + This stylesheet is used to transform doc/libxml2-api.xml into a pseudo-source, + which can then be preprocessed to get the .DEF file for the Microsoft's linker. + + Use any XSLT processor to produce a file called libxml2.def.src in the win32 + subdirectory, for example, run xsltproc from the win32 subdirectory: + + xsltproc -o libxml2.def.src defgen.xsl ../doc/libxml2-api.xml + + Once that finishes, rest assured, the Makefile will know what to do with the + generated file. + + April 2003, Igor Zlatkovic <igor@zlatkovic.com> +--> +<!DOCTYPE xsl:stylesheet [ <!ENTITY nl '
'> ]> +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> + <xsl:strip-space elements="*"/> + <xsl:output method="text"/> + <xsl:template match="/"> + <xsl:text>#define LIBXML2_COMPILING_MSCCDEF&nl;</xsl:text> + <xsl:text>#include "../include/libxml/xmlversion.h"&nl;</xsl:text> + <xsl:text>LIBRARY libxml2&nl;</xsl:text> + <xsl:text>EXPORTS&nl;</xsl:text> + <xsl:for-each select="/api/symbols/*[self::variable or self::function]"> + <!-- Basic tests --> + <xsl:if test="@file = 'c14n'"> + <xsl:text>#ifdef LIBXML_C14N_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'catalog'"> + <xsl:text>#ifdef LIBXML_CATALOG_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'debugXML'"> + <xsl:text>#ifdef LIBXML_DEBUG_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'DOCBparser'"> + <xsl:text>#ifdef LIBXML_DOCB_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@file = 'HTMLparser') + or (@file = 'HTMLtree')"> + <xsl:text>#ifdef LIBXML_HTML_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'nanohttp'"> + <xsl:text>#ifdef LIBXML_HTTP_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'nanoftp'"> + <xsl:text>#ifdef LIBXML_FTP_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@file = 'relaxng') + or (@file = 'xmlschemas') + or (@file = 'xmlschemastypes')"> + <xsl:text>#ifdef LIBXML_SCHEMAS_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'xinclude'"> + <xsl:text>#ifdef LIBXML_XINCLUDE_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'xlink'"> + <xsl:text>#ifdef LIBXML_XLINK_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'xmlautomata'"> + <xsl:text>#ifdef LIBXML_AUTOMATA_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@file = 'xmlregexp') + or (@file = 'xmlunicode')"> + <xsl:text>#ifdef LIBXML_REGEXP_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@file = 'xpath') + or (@file = 'xpathInternals')"> + <xsl:text>#ifdef LIBXML_XPATH_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'xpointer'"> + <xsl:text>#ifdef LIBXML_XPTR_ENABLED&nl;</xsl:text> + </xsl:if> + <!-- Extended tests --> + <xsl:if test="(@name = 'htmlDefaultSAXHandlerInit') + or (@name = 'htmlInitAutoClose') + or (@name = 'htmlCreateFileParserCtxt') + or (@name = 'inithtmlDefaultSAXHandler') + or (@name = 'xmlIsXHTML') + or (@name = 'xmlIOHTTPOpenW') + or (@name = 'xmlRegisterHTTPPostCallbacks') + or (@name = 'xmlIOHTTPMatch') + or (@name = 'xmlIOHTTPOpen') + or (@name = 'xmlIOHTTPRead') + or (@name = 'xmlIOHTTPClose')"> + <xsl:text>#ifdef LIBXML_HTML_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@name = 'docbDefaultSAXHandlerInit') + or (@name = 'initdocbDefaultSAXHandler')"> + <xsl:text>#ifdef LIBXML_DOCB_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="@name = 'xmlValidBuildContentModel'"> + <xsl:text>#ifdef LIBXML_REGEXP_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@name = 'xmlIOFTPMatch') + or (@name = 'xmlIOFTPOpen') + or (@name = 'xmlIOFTPRead') + or (@name = 'xmlIOFTPClose')"> + <xsl:text>#ifdef LIBXML_FTP_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@name = 'xmlTextReaderRelaxNGValidate') + or (@name = 'xmlTextReaderRelaxNGSetSchema')"> + <xsl:text>#ifdef LIBXML_SCHEMAS_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@name = 'xmlXPathDebugDumpObject') + or (@name = 'xmlXPathDebugDumpCompExpr')"> + <xsl:text>#ifdef LIBXML_DEBUG_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@name = 'xmlMallocLoc') + or (@name = 'xmlMallocAtomicLoc') + or (@name = 'xmlReallocLoc') + or (@name = 'xmlMemStrdupLoc')"> + <xsl:text>#ifdef DEBUG_MEMORY_LOCATION&nl;</xsl:text> + </xsl:if> + <!-- Symbol --> + <xsl:choose> + <xsl:when test="(@name = 'xmlMalloc') + or (@name = 'xmlMallocAtomic') + or (@name = 'xmlRealloc') + or (@name = 'xmlFree') + or (@name = 'xmlMemStrdup')"> + <xsl:text>#ifdef LIBXML_THREAD_ALLOC_ENABLED&nl;</xsl:text> + <xsl:text>__</xsl:text> + <xsl:value-of select="@name"/> + <xsl:text>&nl;</xsl:text> + <xsl:text>#else&nl;</xsl:text> + <xsl:value-of select="@name"/> + <xsl:text> DATA&nl;</xsl:text> + <xsl:text>#endif&nl;</xsl:text> + </xsl:when> + <xsl:when test="(@name = 'docbDefaultSAXHandler') + or (@name = 'htmlDefaultSAXHandler') + or (@name = 'oldXMLWDcompatibility') + or (@name = 'xmlBufferAllocScheme') + or (@name = 'xmlDefaultBufferSize') + or (@name = 'xmlDefaultSAXHandler') + or (@name = 'xmlDefaultSAXLocator') + or (@name = 'xmlDoValidityCheckingDefaultValue') + or (@name = 'xmlGenericError') + or (@name = 'xmlGenericErrorContext') + or (@name = 'xmlGetWarningsDefaultValue') + or (@name = 'xmlIndentTreeOutput') + or (@name = 'xmlTreeIndentString') + or (@name = 'xmlKeepBlanksDefaultValue') + or (@name = 'xmlLineNumbersDefaultValue') + or (@name = 'xmlLoadExtDtdDefaultValue') + or (@name = 'xmlParserDebugEntities') + or (@name = 'xmlParserVersion') + or (@name = 'xmlPedanticParserDefaultValue') + or (@name = 'xmlSaveNoEmptyTags') + or (@name = 'xmlSubstituteEntitiesDefaultValue') + or (@name = 'xmlRegisterNodeDefaultValue') + or (@name = 'xmlDeregisterNodeDefaultValue')"> + <xsl:text>#ifdef LIBXML_THREAD_ENABLED&nl;</xsl:text> + <xsl:if test="@name = 'docbDefaultSAXHandler'"> + <xsl:text>#ifdef LIBXML_DOCB_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="@name = 'htmlDefaultSAXHandler'"> + <xsl:text>#ifdef LIBXML_HTML_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:text>__</xsl:text> + <xsl:value-of select="@name"/> + <xsl:text>&nl;</xsl:text> + <xsl:if test="@name = 'docbDefaultSAXHandler'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="@name = 'htmlDefaultSAXHandler'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:text>#else&nl;</xsl:text> + <xsl:if test="@name = 'docbDefaultSAXHandler'"> + <xsl:text>#ifdef LIBXML_DOCB_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:if test="@name = 'htmlDefaultSAXHandler'"> + <xsl:text>#ifdef LIBXML_HTML_ENABLED&nl;</xsl:text> + </xsl:if> + <xsl:value-of select="@name"/> + <xsl:text> DATA&nl;</xsl:text> + <xsl:if test="@name = 'docbDefaultSAXHandler'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="@name = 'htmlDefaultSAXHandler'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:text>#endif&nl;</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="@name"/> + <xsl:if test="self::variable"> + <xsl:text> DATA</xsl:text> + </xsl:if> + <xsl:text>&nl;</xsl:text> + </xsl:otherwise> + </xsl:choose> + <!-- Basic tests (close) --> + <xsl:if test="@file = 'c14n'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'catalog'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'debugXML'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'DOCBparser'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@file = 'HTMLparser') + or (@file = 'HTMLtree')"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'nanohttp'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'nanoftp'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@file = 'relaxng') + or (@file = 'xmlschemas') + or (@file = 'xmlschemastypes')"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'xinclude'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'xlink'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'xmlautomata'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@file = 'xmlregexp') + or (@file = 'xmlunicode')"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@file = 'xpath') + or (@file = 'xpathInternals')"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="@file = 'xpointer'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <!-- Extended tests (close) --> + <xsl:if test="(@name = 'htmlDefaultSAXHandlerInit') + or (@name = 'htmlInitAutoClose') + or (@name = 'htmlCreateFileParserCtxt') + or (@name = 'inithtmlDefaultSAXHandler') + or (@name = 'xmlIsXHTML') + or (@name = 'xmlIOHTTPOpenW') + or (@name = 'xmlRegisterHTTPPostCallbacks') + or (@name = 'xmlIOHTTPMatch') + or (@name = 'xmlIOHTTPOpen') + or (@name = 'xmlIOHTTPRead') + or (@name = 'xmlIOHTTPClose')"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@name = 'docbDefaultSAXHandlerInit') + or (@name = 'initdocbDefaultSAXHandler')"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="@name = 'xmlValidBuildContentModel'"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@name = 'xmlIOFTPMatch') + or (@name = 'xmlIOFTPOpen') + or (@name = 'xmlIOFTPRead') + or (@name = 'xmlIOFTPClose')"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@name = 'xmlTextReaderRelaxNGValidate') + or (@name = 'xmlTextReaderRelaxNGSetSchema')"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@name = 'xmlXPathDebugDumpObject') + or (@name = 'xmlXPathDebugDumpCompExpr')"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + <xsl:if test="(@name = 'xmlMallocLoc') + or (@name = 'xmlMallocAtomicLoc') + or (@name = 'xmlReallocLoc') + or (@name = 'xmlMemStrdupLoc')"> + <xsl:text>#endif&nl;</xsl:text> + </xsl:if> + </xsl:for-each> + </xsl:template> +</xsl:stylesheet> + diff --git a/libxml2/win32/libxml2.def.src b/libxml2/win32/libxml2.def.src new file mode 100644 index 0000000..1bdbed9 --- /dev/null +++ b/libxml2/win32/libxml2.def.src @@ -0,0 +1,3190 @@ +#define LIBXML2_COMPILING_MSCCDEF +#include "../include/libxml/xmlversion.h" +LIBRARY libxml2 +EXPORTS +#ifdef LIBXML_THREAD_ENABLED +#ifdef LIBXML_DOCB_ENABLED +__docbDefaultSAXHandler +#endif +#else +#ifdef LIBXML_DOCB_ENABLED +docbDefaultSAXHandler DATA +#endif +#endif +#ifdef LIBXML_REGEXP_ENABLED +emptyExp DATA +#endif +#ifdef LIBXML_REGEXP_ENABLED +forbiddenExp DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +#ifdef LIBXML_HTML_ENABLED +__htmlDefaultSAXHandler +#endif +#else +#ifdef LIBXML_HTML_ENABLED +htmlDefaultSAXHandler DATA +#endif +#endif +#ifdef LIBXML_THREAD_ENABLED +__oldXMLWDcompatibility +#else +oldXMLWDcompatibility DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlBufferAllocScheme +#else +xmlBufferAllocScheme DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlDefaultBufferSize +#else +xmlDefaultBufferSize DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlDefaultSAXHandler +#else +xmlDefaultSAXHandler DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlDefaultSAXLocator +#else +xmlDefaultSAXLocator DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlDeregisterNodeDefaultValue +#else +xmlDeregisterNodeDefaultValue DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlDoValidityCheckingDefaultValue +#else +xmlDoValidityCheckingDefaultValue DATA +#endif +#ifdef LIBXML_THREAD_ALLOC_ENABLED +__xmlFree +#else +xmlFree DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlGenericError +#else +xmlGenericError DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlGenericErrorContext +#else +xmlGenericErrorContext DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlGetWarningsDefaultValue +#else +xmlGetWarningsDefaultValue DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlIndentTreeOutput +#else +xmlIndentTreeOutput DATA +#endif +xmlIsBaseCharGroup DATA +xmlIsCharGroup DATA +xmlIsCombiningGroup DATA +xmlIsDigitGroup DATA +xmlIsExtenderGroup DATA +xmlIsIdeographicGroup DATA +xmlIsPubidChar_tab DATA +#ifdef LIBXML_THREAD_ENABLED +__xmlKeepBlanksDefaultValue +#else +xmlKeepBlanksDefaultValue DATA +#endif +xmlLastError DATA +#ifdef LIBXML_THREAD_ENABLED +__xmlLineNumbersDefaultValue +#else +xmlLineNumbersDefaultValue DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlLoadExtDtdDefaultValue +#else +xmlLoadExtDtdDefaultValue DATA +#endif +#ifdef LIBXML_THREAD_ALLOC_ENABLED +__xmlMalloc +#else +xmlMalloc DATA +#endif +#ifdef LIBXML_THREAD_ALLOC_ENABLED +__xmlMallocAtomic +#else +xmlMallocAtomic DATA +#endif +#ifdef LIBXML_THREAD_ALLOC_ENABLED +__xmlMemStrdup +#else +xmlMemStrdup DATA +#endif +xmlOutputBufferCreateFilenameValue DATA +#ifdef LIBXML_THREAD_ENABLED +__xmlParserDebugEntities +#else +xmlParserDebugEntities DATA +#endif +xmlParserInputBufferCreateFilenameValue DATA +xmlParserMaxDepth DATA +#ifdef LIBXML_THREAD_ENABLED +__xmlParserVersion +#else +xmlParserVersion DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlPedanticParserDefaultValue +#else +xmlPedanticParserDefaultValue DATA +#endif +#ifdef LIBXML_THREAD_ALLOC_ENABLED +__xmlRealloc +#else +xmlRealloc DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlRegisterNodeDefaultValue +#else +xmlRegisterNodeDefaultValue DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlSaveNoEmptyTags +#else +xmlSaveNoEmptyTags DATA +#endif +xmlStringComment DATA +xmlStringText DATA +xmlStringTextNoenc DATA +xmlStructuredError DATA +xmlStructuredErrorContext DATA +#ifdef LIBXML_THREAD_ENABLED +__xmlSubstituteEntitiesDefaultValue +#else +xmlSubstituteEntitiesDefaultValue DATA +#endif +#ifdef LIBXML_THREAD_ENABLED +__xmlTreeIndentString +#else +xmlTreeIndentString DATA +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNAN DATA +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNINF DATA +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathPINF DATA +#endif +#ifdef LIBXML_HTML_ENABLED +UTF8ToHtml +#endif +UTF8Toisolat1 +attribute +attributeDecl +cdataBlock +characters +checkNamespace +comment +#ifdef LIBXML_DOCB_ENABLED +docbCreateFileParserCtxt +#endif +#ifdef LIBXML_DOCB_ENABLED +docbCreatePushParserCtxt +#endif +#ifdef LIBXML_DOCB_ENABLED +docbDefaultSAXHandlerInit +#endif +#ifdef LIBXML_DOCB_ENABLED +docbEncodeEntities +#endif +#ifdef LIBXML_DOCB_ENABLED +docbFreeParserCtxt +#endif +#ifdef LIBXML_DOCB_ENABLED +docbParseChunk +#endif +#ifdef LIBXML_DOCB_ENABLED +docbParseDoc +#endif +#ifdef LIBXML_DOCB_ENABLED +docbParseDocument +#endif +#ifdef LIBXML_DOCB_ENABLED +docbParseFile +#endif +#ifdef LIBXML_DOCB_ENABLED +docbSAXParseDoc +#endif +#ifdef LIBXML_DOCB_ENABLED +docbSAXParseFile +#endif +elementDecl +endDocument +endElement +entityDecl +externalSubset +getColumnNumber +getEntity +getLineNumber +getNamespace +getParameterEntity +getPublicId +getSystemId +globalNamespace +hasExternalSubset +hasInternalSubset +#ifdef LIBXML_HTML_ENABLED +htmlAttrAllowed +#endif +#ifdef LIBXML_HTML_ENABLED +htmlAutoCloseTag +#endif +#ifdef LIBXML_HTML_ENABLED +htmlCreateFileParserCtxt +#endif +#ifdef LIBXML_HTML_ENABLED +htmlCreateMemoryParserCtxt +#endif +#ifdef LIBXML_HTML_ENABLED +htmlCreatePushParserCtxt +#endif +#ifdef LIBXML_HTML_ENABLED +htmlCtxtReadDoc +#endif +#ifdef LIBXML_HTML_ENABLED +htmlCtxtReadFd +#endif +#ifdef LIBXML_HTML_ENABLED +htmlCtxtReadFile +#endif +#ifdef LIBXML_HTML_ENABLED +htmlCtxtReadIO +#endif +#ifdef LIBXML_HTML_ENABLED +htmlCtxtReadMemory +#endif +#ifdef LIBXML_HTML_ENABLED +htmlCtxtReset +#endif +#ifdef LIBXML_HTML_ENABLED +htmlCtxtUseOptions +#endif +#ifdef LIBXML_HTML_ENABLED +htmlDefaultSAXHandlerInit +#endif +#ifdef LIBXML_HTML_ENABLED +htmlDocContentDumpFormatOutput +#endif +#ifdef LIBXML_HTML_ENABLED +htmlDocContentDumpOutput +#endif +#ifdef LIBXML_HTML_ENABLED +htmlDocDump +#endif +#ifdef LIBXML_HTML_ENABLED +htmlDocDumpMemory +#endif +#ifdef LIBXML_HTML_ENABLED +htmlDocDumpMemoryFormat +#endif +#ifdef LIBXML_HTML_ENABLED +htmlElementAllowedHere +#endif +#ifdef LIBXML_HTML_ENABLED +htmlElementStatusHere +#endif +#ifdef LIBXML_HTML_ENABLED +htmlEncodeEntities +#endif +#ifdef LIBXML_HTML_ENABLED +htmlEntityLookup +#endif +#ifdef LIBXML_HTML_ENABLED +htmlEntityValueLookup +#endif +#ifdef LIBXML_HTML_ENABLED +htmlFreeParserCtxt +#endif +#ifdef LIBXML_HTML_ENABLED +htmlGetMetaEncoding +#endif +#ifdef LIBXML_HTML_ENABLED +htmlHandleOmittedElem +#endif +#ifdef LIBXML_HTML_ENABLED +htmlInitAutoClose +#endif +#ifdef LIBXML_HTML_ENABLED +htmlIsAutoClosed +#endif +#ifdef LIBXML_HTML_ENABLED +htmlIsBooleanAttr +#endif +#ifdef LIBXML_HTML_ENABLED +htmlIsScriptAttribute +#endif +#ifdef LIBXML_HTML_ENABLED +htmlNewDoc +#endif +#ifdef LIBXML_HTML_ENABLED +htmlNewDocNoDtD +#endif +#ifdef LIBXML_HTML_ENABLED +htmlNewParserCtxt +#endif +#ifdef LIBXML_HTML_ENABLED +htmlNodeDump +#endif +#ifdef LIBXML_HTML_ENABLED +htmlNodeDumpFile +#endif +#ifdef LIBXML_HTML_ENABLED +htmlNodeDumpFileFormat +#endif +#ifdef LIBXML_HTML_ENABLED +htmlNodeDumpFormatOutput +#endif +#ifdef LIBXML_HTML_ENABLED +htmlNodeDumpOutput +#endif +#ifdef LIBXML_HTML_ENABLED +htmlNodeStatus +#endif +#ifdef LIBXML_HTML_ENABLED +htmlParseCharRef +#endif +#ifdef LIBXML_HTML_ENABLED +htmlParseChunk +#endif +#ifdef LIBXML_HTML_ENABLED +htmlParseDoc +#endif +#ifdef LIBXML_HTML_ENABLED +htmlParseDocument +#endif +#ifdef LIBXML_HTML_ENABLED +htmlParseElement +#endif +#ifdef LIBXML_HTML_ENABLED +htmlParseEntityRef +#endif +#ifdef LIBXML_HTML_ENABLED +htmlParseFile +#endif +#ifdef LIBXML_HTML_ENABLED +htmlReadDoc +#endif +#ifdef LIBXML_HTML_ENABLED +htmlReadFd +#endif +#ifdef LIBXML_HTML_ENABLED +htmlReadFile +#endif +#ifdef LIBXML_HTML_ENABLED +htmlReadIO +#endif +#ifdef LIBXML_HTML_ENABLED +htmlReadMemory +#endif +#ifdef LIBXML_HTML_ENABLED +htmlSAXParseDoc +#endif +#ifdef LIBXML_HTML_ENABLED +htmlSAXParseFile +#endif +#ifdef LIBXML_HTML_ENABLED +htmlSaveFile +#endif +#ifdef LIBXML_HTML_ENABLED +htmlSaveFileEnc +#endif +#ifdef LIBXML_HTML_ENABLED +htmlSaveFileFormat +#endif +#ifdef LIBXML_HTML_ENABLED +htmlSetMetaEncoding +#endif +#ifdef LIBXML_HTML_ENABLED +htmlTagLookup +#endif +ignorableWhitespace +initGenericErrorDefaultFunc +#ifdef LIBXML_DOCB_ENABLED +initdocbDefaultSAXHandler +#endif +#ifdef LIBXML_HTML_ENABLED +inithtmlDefaultSAXHandler +#endif +initxmlDefaultSAXHandler +inputPop +inputPush +internalSubset +isStandalone +isolat1ToUTF8 +namePop +namePush +namespaceDecl +nodePop +nodePush +notationDecl +processingInstruction +reference +resolveEntity +setDocumentLocator +setNamespace +startDocument +startElement +unparsedEntityDecl +#ifdef LIBXML_XPATH_ENABLED +valuePop +#endif +#ifdef LIBXML_XPATH_ENABLED +valuePush +#endif +#ifdef LIBXML_XLINK_ENABLED +xlinkGetDefaultDetect +#endif +#ifdef LIBXML_XLINK_ENABLED +xlinkGetDefaultHandler +#endif +#ifdef LIBXML_XLINK_ENABLED +xlinkIsLink +#endif +#ifdef LIBXML_XLINK_ENABLED +xlinkSetDefaultDetect +#endif +#ifdef LIBXML_XLINK_ENABLED +xlinkSetDefaultHandler +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlACatalogAdd +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlACatalogDump +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlACatalogRemove +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlACatalogResolve +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlACatalogResolvePublic +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlACatalogResolveSystem +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlACatalogResolveURI +#endif +xmlAddAttributeDecl +xmlAddChild +xmlAddChildList +xmlAddDocEntity +xmlAddDtdEntity +xmlAddElementDecl +xmlAddEncodingAlias +xmlAddID +xmlAddNextSibling +xmlAddNotationDecl +xmlAddPrevSibling +xmlAddRef +xmlAddSibling +xmlAllocOutputBuffer +xmlAllocParserInputBuffer +xmlAttrSerializeTxtContent +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataCompile +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataGetInitState +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataIsDeterminist +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataNewAllTrans +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataNewCountTrans +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataNewCountTrans2 +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataNewCountedTrans +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataNewCounter +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataNewCounterTrans +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataNewEpsilon +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataNewNegTrans +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataNewOnceTrans +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataNewOnceTrans2 +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataNewState +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataNewTransition +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataNewTransition2 +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlAutomataSetFinalState +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlBoolToText +#endif +xmlBufContent +xmlBufEnd +xmlBufGetNodeContent +xmlBufNodeDump +xmlBufShrink +xmlBufUse +xmlBufferAdd +xmlBufferAddHead +xmlBufferCCat +xmlBufferCat +xmlBufferContent +xmlBufferCreate +xmlBufferCreateSize +xmlBufferCreateStatic +xmlBufferDetach +xmlBufferDump +xmlBufferEmpty +xmlBufferFree +xmlBufferGrow +xmlBufferLength +xmlBufferResize +xmlBufferSetAllocationScheme +xmlBufferShrink +xmlBufferWriteCHAR +xmlBufferWriteChar +xmlBufferWriteQuotedString +xmlBuildQName +xmlBuildRelativeURI +xmlBuildURI +xmlByteConsumed +#ifdef LIBXML_C14N_ENABLED +xmlC14NDocDumpMemory +#endif +#ifdef LIBXML_C14N_ENABLED +xmlC14NDocSave +#endif +#ifdef LIBXML_C14N_ENABLED +xmlC14NDocSaveTo +#endif +#ifdef LIBXML_C14N_ENABLED +xmlC14NExecute +#endif +xmlCanonicPath +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogAdd +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogAddLocal +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogCleanup +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogConvert +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogDump +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogFreeLocal +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogGetDefaults +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogGetPublic +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogGetSystem +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogIsEmpty +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogLocalResolve +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogLocalResolveURI +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogRemove +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogResolve +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogResolvePublic +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogResolveSystem +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogResolveURI +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogSetDebug +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogSetDefaultPrefer +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlCatalogSetDefaults +#endif +xmlCharEncCloseFunc +xmlCharEncFirstLine +xmlCharEncInFunc +xmlCharEncOutFunc +xmlCharInRange +xmlCharStrdup +xmlCharStrndup +xmlCheckFilename +xmlCheckHTTPInput +xmlCheckLanguageID +xmlCheckUTF8 +xmlCheckVersion +xmlChildElementCount +xmlCleanupCharEncodingHandlers +xmlCleanupEncodingAliases +xmlCleanupGlobals +xmlCleanupInputCallbacks +xmlCleanupMemory +xmlCleanupOutputCallbacks +xmlCleanupParser +xmlCleanupPredefinedEntities +xmlCleanupThreads +xmlClearNodeInfoSeq +xmlClearParserCtxt +#ifdef LIBXML_CATALOG_ENABLED +xmlConvertSGMLCatalog +#endif +xmlCopyAttributeTable +xmlCopyChar +xmlCopyCharMultiByte +xmlCopyDoc +xmlCopyDocElementContent +xmlCopyDtd +xmlCopyElementContent +xmlCopyElementTable +xmlCopyEntitiesTable +xmlCopyEnumeration +xmlCopyError +xmlCopyNamespace +xmlCopyNamespaceList +xmlCopyNode +xmlCopyNodeList +xmlCopyNotationTable +xmlCopyProp +xmlCopyPropList +xmlCreateDocParserCtxt +xmlCreateEntitiesTable +xmlCreateEntityParserCtxt +xmlCreateEnumeration +xmlCreateFileParserCtxt +xmlCreateIOParserCtxt +xmlCreateIntSubset +xmlCreateMemoryParserCtxt +xmlCreatePushParserCtxt +xmlCreateURI +xmlCreateURLParserCtxt +xmlCtxtGetLastError +xmlCtxtReadDoc +xmlCtxtReadFd +xmlCtxtReadFile +xmlCtxtReadIO +xmlCtxtReadMemory +xmlCtxtReset +xmlCtxtResetLastError +xmlCtxtResetPush +xmlCtxtUseOptions +xmlCurrentChar +xmlDOMWrapAdoptNode +xmlDOMWrapCloneNode +xmlDOMWrapFreeCtxt +xmlDOMWrapNewCtxt +xmlDOMWrapReconcileNamespaces +xmlDOMWrapRemoveNode +#ifdef LIBXML_DEBUG_ENABLED +xmlDebugCheckDocument +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlDebugDumpAttr +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlDebugDumpAttrList +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlDebugDumpDTD +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlDebugDumpDocument +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlDebugDumpDocumentHead +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlDebugDumpEntities +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlDebugDumpNode +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlDebugDumpNodeList +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlDebugDumpOneNode +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlDebugDumpString +#endif +xmlDecodeEntities +xmlDefaultSAXHandlerInit +xmlDelEncodingAlias +xmlDeregisterNodeDefault +xmlDetectCharEncoding +xmlDictCleanup +xmlDictCreate +xmlDictCreateSub +xmlDictExists +xmlDictFree +xmlDictGetUsage +xmlDictLookup +xmlDictOwns +xmlDictQLookup +xmlDictReference +xmlDictSetLimit +xmlDictSize +xmlDllMain +xmlDocCopyNode +xmlDocCopyNodeList +xmlDocDump +xmlDocDumpFormatMemory +xmlDocDumpFormatMemoryEnc +xmlDocDumpMemory +xmlDocDumpMemoryEnc +xmlDocFormatDump +xmlDocGetRootElement +xmlDocSetRootElement +xmlDumpAttributeDecl +xmlDumpAttributeTable +xmlDumpElementDecl +xmlDumpElementTable +xmlDumpEntitiesTable +xmlDumpEntityDecl +xmlDumpNotationDecl +xmlDumpNotationTable +xmlElemDump +xmlEncodeEntities +xmlEncodeEntitiesReentrant +xmlEncodeSpecialChars +xmlErrMemory +#ifdef LIBXML_REGEXP_ENABLED +xmlExpCtxtNbCons +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpCtxtNbNodes +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpDump +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpExpDerive +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpFree +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpFreeCtxt +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpGetLanguage +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpGetStart +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpIsNillable +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpMaxToken +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpNewAtom +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpNewCtxt +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpNewOr +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpNewRange +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpNewSeq +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpParse +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpRef +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpStringDerive +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlExpSubsume +#endif +xmlFileClose +xmlFileMatch +xmlFileOpen +xmlFileRead +xmlFindCharEncodingHandler +xmlFirstElementChild +xmlFreeAttributeTable +#ifdef LIBXML_AUTOMATA_ENABLED +xmlFreeAutomata +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlFreeCatalog +#endif +xmlFreeDoc +xmlFreeDocElementContent +xmlFreeDtd +xmlFreeElementContent +xmlFreeElementTable +xmlFreeEntitiesTable +xmlFreeEnumeration +xmlFreeIDTable +xmlFreeInputStream +xmlFreeMutex +xmlFreeNode +xmlFreeNodeList +xmlFreeNotationTable +xmlFreeNs +xmlFreeNsList +xmlFreeParserCtxt +xmlFreeParserInputBuffer +xmlFreePattern +xmlFreePatternList +xmlFreeProp +xmlFreePropList +xmlFreeRMutex +xmlFreeRefTable +xmlFreeStreamCtxt +xmlFreeTextReader +xmlFreeTextWriter +xmlFreeURI +xmlFreeValidCtxt +xmlGcMemGet +xmlGcMemSetup +xmlGetBufferAllocationScheme +xmlGetCharEncodingHandler +xmlGetCharEncodingName +xmlGetCompressMode +xmlGetDocCompressMode +xmlGetDocEntity +xmlGetDtdAttrDesc +xmlGetDtdElementDesc +xmlGetDtdEntity +xmlGetDtdNotationDesc +xmlGetDtdQAttrDesc +xmlGetDtdQElementDesc +xmlGetEncodingAlias +xmlGetExternalEntityLoader +xmlGetFeature +xmlGetFeaturesList +xmlGetGlobalState +xmlGetID +xmlGetIntSubset +xmlGetLastChild +xmlGetLastError +xmlGetLineNo +xmlGetNoNsProp +xmlGetNodePath +xmlGetNsList +xmlGetNsProp +xmlGetParameterEntity +xmlGetPredefinedEntity +xmlGetProp +xmlGetRefs +xmlGetThreadId +xmlGetUTF8Char +xmlHandleEntity +xmlHasFeature +xmlHasNsProp +xmlHasProp +xmlHashAddEntry +xmlHashAddEntry2 +xmlHashAddEntry3 +xmlHashCopy +xmlHashCreate +xmlHashCreateDict +xmlHashFree +xmlHashLookup +xmlHashLookup2 +xmlHashLookup3 +xmlHashQLookup +xmlHashQLookup2 +xmlHashQLookup3 +xmlHashRemoveEntry +xmlHashRemoveEntry2 +xmlHashRemoveEntry3 +xmlHashScan +xmlHashScan3 +xmlHashScanFull +xmlHashScanFull3 +xmlHashSize +xmlHashUpdateEntry +xmlHashUpdateEntry2 +xmlHashUpdateEntry3 +#ifdef LIBXML_FTP_ENABLED +xmlIOFTPClose +#endif +#ifdef LIBXML_FTP_ENABLED +xmlIOFTPMatch +#endif +#ifdef LIBXML_FTP_ENABLED +xmlIOFTPOpen +#endif +#ifdef LIBXML_FTP_ENABLED +xmlIOFTPRead +#endif +#ifdef LIBXML_HTML_ENABLED +xmlIOHTTPClose +#endif +#ifdef LIBXML_HTML_ENABLED +xmlIOHTTPMatch +#endif +#ifdef LIBXML_HTML_ENABLED +xmlIOHTTPOpen +#endif +#ifdef LIBXML_HTML_ENABLED +xmlIOHTTPOpenW +#endif +#ifdef LIBXML_HTML_ENABLED +xmlIOHTTPRead +#endif +xmlIOParseDTD +xmlInitCharEncodingHandlers +xmlInitGlobals +xmlInitMemory +xmlInitNodeInfoSeq +xmlInitParser +xmlInitParserCtxt +xmlInitThreads +#ifdef LIBXML_CATALOG_ENABLED +xmlInitializeCatalog +#endif +xmlInitializeDict +xmlInitializeGlobalState +xmlInitializePredefinedEntities +xmlIsBaseChar +xmlIsBlank +xmlIsBlankNode +xmlIsChar +xmlIsCombining +xmlIsDigit +xmlIsExtender +xmlIsID +xmlIsIdeographic +xmlIsLetter +xmlIsMainThread +xmlIsMixedElement +xmlIsPubidChar +xmlIsRef +#ifdef LIBXML_HTML_ENABLED +xmlIsXHTML +#endif +xmlKeepBlanksDefault +xmlLastElementChild +xmlLineNumbersDefault +xmlLinkGetData +xmlListAppend +xmlListClear +xmlListCopy +xmlListCreate +xmlListDelete +xmlListDup +xmlListEmpty +xmlListEnd +xmlListFront +xmlListInsert +xmlListMerge +xmlListPopBack +xmlListPopFront +xmlListPushBack +xmlListPushFront +xmlListRemoveAll +xmlListRemoveFirst +xmlListRemoveLast +xmlListReverse +xmlListReverseSearch +xmlListReverseWalk +xmlListSearch +xmlListSize +xmlListSort +xmlListWalk +#ifdef LIBXML_CATALOG_ENABLED +xmlLoadACatalog +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlLoadCatalog +#endif +#ifdef LIBXML_CATALOG_ENABLED +xmlLoadCatalogs +#endif +xmlLoadExternalEntity +#ifdef LIBXML_CATALOG_ENABLED +xmlLoadSGMLSuperCatalog +#endif +xmlLockLibrary +#ifdef LIBXML_DEBUG_ENABLED +xmlLsCountNode +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlLsOneNode +#endif +#ifdef DEBUG_MEMORY_LOCATION +xmlMallocAtomicLoc +#endif +#ifdef DEBUG_MEMORY_LOCATION +xmlMallocLoc +#endif +xmlMemBlocks +xmlMemDisplay +xmlMemDisplayLast +xmlMemFree +xmlMemGet +xmlMemMalloc +xmlMemRealloc +xmlMemSetup +xmlMemShow +#ifdef DEBUG_MEMORY_LOCATION +xmlMemStrdupLoc +#endif +xmlMemUsed +xmlMemoryDump +xmlMemoryStrdup +xmlModuleClose +xmlModuleFree +xmlModuleOpen +xmlModuleSymbol +xmlMutexLock +xmlMutexUnlock +xmlNamespaceParseNCName +xmlNamespaceParseNSDef +xmlNamespaceParseQName +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPCheckResponse +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPCleanup +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPClose +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPCloseConnection +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPConnect +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPConnectTo +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPCwd +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPDele +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPFreeCtxt +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPGet +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPGetConnection +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPGetResponse +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPGetSocket +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPInit +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPList +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPNewCtxt +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPOpen +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPProxy +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPQuit +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPRead +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPScanProxy +#endif +#ifdef LIBXML_FTP_ENABLED +xmlNanoFTPUpdateURL +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPAuthHeader +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPCleanup +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPClose +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPContentLength +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPEncoding +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPFetch +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPInit +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPMethod +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPMethodRedir +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPMimeType +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPOpen +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPOpenRedir +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPRead +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPRedir +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPReturnCode +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPSave +#endif +#ifdef LIBXML_HTTP_ENABLED +xmlNanoHTTPScanProxy +#endif +#ifdef LIBXML_AUTOMATA_ENABLED +xmlNewAutomata +#endif +xmlNewCDataBlock +#ifdef LIBXML_CATALOG_ENABLED +xmlNewCatalog +#endif +xmlNewCharEncodingHandler +xmlNewCharRef +xmlNewChild +xmlNewComment +xmlNewDoc +xmlNewDocComment +xmlNewDocElementContent +xmlNewDocFragment +xmlNewDocNode +xmlNewDocNodeEatName +xmlNewDocPI +xmlNewDocProp +xmlNewDocRawNode +xmlNewDocText +xmlNewDocTextLen +xmlNewDtd +xmlNewElementContent +xmlNewEntity +xmlNewEntityInputStream +xmlNewGlobalNs +xmlNewIOInputStream +xmlNewInputFromFile +xmlNewInputStream +xmlNewMutex +xmlNewNode +xmlNewNodeEatName +xmlNewNs +xmlNewNsProp +xmlNewNsPropEatName +xmlNewPI +xmlNewParserCtxt +xmlNewProp +xmlNewRMutex +xmlNewReference +xmlNewStringInputStream +xmlNewText +xmlNewTextChild +xmlNewTextLen +xmlNewTextReader +xmlNewTextReaderFilename +xmlNewTextWriter +xmlNewTextWriterDoc +xmlNewTextWriterFilename +xmlNewTextWriterMemory +xmlNewTextWriterPushParser +xmlNewTextWriterTree +xmlNewValidCtxt +xmlNextChar +xmlNextElementSibling +xmlNoNetExternalEntityLoader +xmlNodeAddContent +xmlNodeAddContentLen +xmlNodeBufGetContent +xmlNodeDump +xmlNodeDumpOutput +xmlNodeGetBase +xmlNodeGetContent +xmlNodeGetLang +xmlNodeGetSpacePreserve +xmlNodeIsText +xmlNodeListGetRawString +xmlNodeListGetString +xmlNodeSetBase +xmlNodeSetContent +xmlNodeSetContentLen +xmlNodeSetLang +xmlNodeSetName +xmlNodeSetSpacePreserve +xmlNormalizeURIPath +xmlNormalizeWindowsPath +xmlOutputBufferClose +xmlOutputBufferCreateBuffer +xmlOutputBufferCreateFd +xmlOutputBufferCreateFile +xmlOutputBufferCreateFilename +xmlOutputBufferCreateFilenameDefault +xmlOutputBufferCreateIO +xmlOutputBufferFlush +xmlOutputBufferGetContent +xmlOutputBufferGetSize +xmlOutputBufferWrite +xmlOutputBufferWriteEscape +xmlOutputBufferWriteString +xmlParseAttValue +xmlParseAttribute +xmlParseAttributeListDecl +xmlParseAttributeType +xmlParseBalancedChunkMemory +xmlParseBalancedChunkMemoryRecover +xmlParseCDSect +#ifdef LIBXML_CATALOG_ENABLED +xmlParseCatalogFile +#endif +xmlParseCharData +xmlParseCharEncoding +xmlParseCharRef +xmlParseChunk +xmlParseComment +xmlParseContent +xmlParseCtxtExternalEntity +xmlParseDTD +xmlParseDefaultDecl +xmlParseDoc +xmlParseDocTypeDecl +xmlParseDocument +xmlParseElement +xmlParseElementChildrenContentDecl +xmlParseElementContentDecl +xmlParseElementDecl +xmlParseElementMixedContentDecl +xmlParseEncName +xmlParseEncodingDecl +xmlParseEndTag +xmlParseEntity +xmlParseEntityDecl +xmlParseEntityRef +xmlParseEntityValue +xmlParseEnumeratedType +xmlParseEnumerationType +xmlParseExtParsedEnt +xmlParseExternalEntity +xmlParseExternalID +xmlParseExternalSubset +xmlParseFile +xmlParseInNodeContext +xmlParseMarkupDecl +xmlParseMemory +xmlParseMisc +xmlParseName +xmlParseNamespace +xmlParseNmtoken +xmlParseNotationDecl +xmlParseNotationType +xmlParsePEReference +xmlParsePI +xmlParsePITarget +xmlParsePubidLiteral +xmlParseQuotedString +xmlParseReference +xmlParseSDDecl +xmlParseStartTag +xmlParseSystemLiteral +xmlParseTextDecl +xmlParseURI +xmlParseURIRaw +xmlParseURIReference +xmlParseVersionInfo +xmlParseVersionNum +xmlParseXMLDecl +xmlParserAddNodeInfo +xmlParserError +xmlParserFindNodeInfo +xmlParserFindNodeInfoIndex +xmlParserGetDirectory +xmlParserHandlePEReference +xmlParserHandleReference +xmlParserInputBufferCreateFd +xmlParserInputBufferCreateFile +xmlParserInputBufferCreateFilename +xmlParserInputBufferCreateFilenameDefault +xmlParserInputBufferCreateIO +xmlParserInputBufferCreateMem +xmlParserInputBufferCreateStatic +xmlParserInputBufferGrow +xmlParserInputBufferPush +xmlParserInputBufferRead +xmlParserInputGrow +xmlParserInputRead +xmlParserInputShrink +xmlParserPrintFileContext +xmlParserPrintFileInfo +xmlParserValidityError +xmlParserValidityWarning +xmlParserWarning +xmlPathToURI +xmlPatternFromRoot +xmlPatternGetStreamCtxt +xmlPatternMatch +xmlPatternMaxDepth +xmlPatternMinDepth +xmlPatternStreamable +xmlPatterncompile +xmlPedanticParserDefault +xmlPopInput +xmlPopInputCallbacks +xmlPreviousElementSibling +xmlPrintURI +xmlPushInput +xmlRMutexLock +xmlRMutexUnlock +xmlReadDoc +xmlReadFd +xmlReadFile +xmlReadIO +xmlReadMemory +xmlReaderForDoc +xmlReaderForFd +xmlReaderForFile +xmlReaderForIO +xmlReaderForMemory +xmlReaderNewDoc +xmlReaderNewFd +xmlReaderNewFile +xmlReaderNewIO +xmlReaderNewMemory +xmlReaderNewWalker +xmlReaderWalker +#ifdef DEBUG_MEMORY_LOCATION +xmlReallocLoc +#endif +xmlReconciliateNs +xmlRecoverDoc +xmlRecoverFile +xmlRecoverMemory +#ifdef LIBXML_REGEXP_ENABLED +xmlRegExecErrInfo +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlRegExecNextValues +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlRegExecPushString +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlRegExecPushString2 +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlRegFreeExecCtxt +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlRegFreeRegexp +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlRegNewExecCtxt +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlRegexpCompile +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlRegexpExec +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlRegexpIsDeterminist +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlRegexpPrint +#endif +xmlRegisterCharEncodingHandler +xmlRegisterDefaultInputCallbacks +xmlRegisterDefaultOutputCallbacks +#ifdef LIBXML_HTML_ENABLED +xmlRegisterHTTPPostCallbacks +#endif +xmlRegisterInputCallbacks +xmlRegisterNodeDefault +xmlRegisterOutputCallbacks +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGCleanupTypes +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGDump +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGDumpTree +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGFree +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGFreeParserCtxt +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGFreeValidCtxt +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGGetParserErrors +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGGetValidErrors +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGInitTypes +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGNewDocParserCtxt +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGNewMemParserCtxt +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGNewParserCtxt +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGNewValidCtxt +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGParse +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGSetParserErrors +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGSetParserStructuredErrors +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGSetValidErrors +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGSetValidStructuredErrors +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGValidateDoc +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGValidateFullElement +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGValidatePopElement +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGValidatePushCData +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxNGValidatePushElement +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlRelaxParserSetFlag +#endif +xmlRemoveID +xmlRemoveProp +xmlRemoveRef +xmlReplaceNode +xmlResetError +xmlResetLastError +xmlSAX2AttributeDecl +xmlSAX2CDataBlock +xmlSAX2Characters +xmlSAX2Comment +xmlSAX2ElementDecl +xmlSAX2EndDocument +xmlSAX2EndElement +xmlSAX2EndElementNs +xmlSAX2EntityDecl +xmlSAX2ExternalSubset +xmlSAX2GetColumnNumber +xmlSAX2GetEntity +xmlSAX2GetLineNumber +xmlSAX2GetParameterEntity +xmlSAX2GetPublicId +xmlSAX2GetSystemId +xmlSAX2HasExternalSubset +xmlSAX2HasInternalSubset +xmlSAX2IgnorableWhitespace +xmlSAX2InitDefaultSAXHandler +xmlSAX2InitDocbDefaultSAXHandler +xmlSAX2InitHtmlDefaultSAXHandler +xmlSAX2InternalSubset +xmlSAX2IsStandalone +xmlSAX2NotationDecl +xmlSAX2ProcessingInstruction +xmlSAX2Reference +xmlSAX2ResolveEntity +xmlSAX2SetDocumentLocator +xmlSAX2StartDocument +xmlSAX2StartElement +xmlSAX2StartElementNs +xmlSAX2UnparsedEntityDecl +xmlSAXDefaultVersion +xmlSAXParseDTD +xmlSAXParseDoc +xmlSAXParseEntity +xmlSAXParseFile +xmlSAXParseFileWithData +xmlSAXParseMemory +xmlSAXParseMemoryWithData +xmlSAXUserParseFile +xmlSAXUserParseMemory +xmlSAXVersion +xmlSaveClose +xmlSaveDoc +xmlSaveFile +xmlSaveFileEnc +xmlSaveFileTo +xmlSaveFlush +xmlSaveFormatFile +xmlSaveFormatFileEnc +xmlSaveFormatFileTo +xmlSaveSetAttrEscape +xmlSaveSetEscape +xmlSaveToBuffer +xmlSaveToFd +xmlSaveToFilename +xmlSaveToIO +xmlSaveTree +xmlSaveUri +xmlScanName +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaCheckFacet +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaCleanupTypes +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaCollapseString +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaCompareValues +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaCompareValuesWhtsp +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaCopyValue +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaDump +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaFree +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaFreeFacet +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaFreeParserCtxt +#endif +xmlSchemaFreeType +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaFreeValidCtxt +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaFreeValue +#endif +xmlSchemaFreeWildcard +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaGetBuiltInListSimpleTypeItemType +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaGetBuiltInType +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaGetCanonValue +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaGetCanonValueWhtsp +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaGetFacetValueAsULong +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaGetParserErrors +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaGetPredefinedType +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaGetValType +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaGetValidErrors +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaInitTypes +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaIsBuiltInTypeFacet +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaIsValid +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaNewDocParserCtxt +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaNewFacet +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaNewMemParserCtxt +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaNewNOTATIONValue +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaNewParserCtxt +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaNewQNameValue +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaNewStringValue +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaNewValidCtxt +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaParse +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaSAXPlug +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaSAXUnplug +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaSetParserErrors +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaSetParserStructuredErrors +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaSetValidErrors +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaSetValidOptions +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaSetValidStructuredErrors +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValPredefTypeNode +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValPredefTypeNodeNoNorm +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValidCtxtGetOptions +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValidCtxtGetParserCtxt +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValidateDoc +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValidateFacet +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValidateFacetWhtsp +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValidateFile +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValidateLengthFacet +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValidateLengthFacetWhtsp +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValidateListSimpleTypeFacet +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValidateOneElement +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValidatePredefinedType +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValidateSetFilename +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValidateSetLocator +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValidateStream +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValueAppend +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValueGetAsBoolean +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValueGetAsString +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaValueGetNext +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlSchemaWhiteSpaceReplace +#endif +xmlSchematronFree +xmlSchematronFreeParserCtxt +xmlSchematronFreeValidCtxt +xmlSchematronNewDocParserCtxt +xmlSchematronNewMemParserCtxt +xmlSchematronNewParserCtxt +xmlSchematronNewValidCtxt +xmlSchematronParse +xmlSchematronSetValidStructuredErrors +xmlSchematronValidateDoc +xmlSearchNs +xmlSearchNsByHref +xmlSetBufferAllocationScheme +xmlSetCompressMode +xmlSetDocCompressMode +xmlSetEntityReferenceFunc +xmlSetExternalEntityLoader +xmlSetFeature +xmlSetGenericErrorFunc +xmlSetListDoc +xmlSetNs +xmlSetNsProp +xmlSetProp +xmlSetStructuredErrorFunc +xmlSetTreeDoc +xmlSetupParserForBuffer +#ifdef LIBXML_DEBUG_ENABLED +xmlShell +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlShellBase +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlShellCat +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlShellDir +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlShellDu +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlShellList +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlShellLoad +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlShellPrintNode +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlShellPrintXPathError +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlShellPrintXPathResult +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlShellPwd +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlShellSave +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlShellValidate +#endif +#ifdef LIBXML_DEBUG_ENABLED +xmlShellWrite +#endif +xmlSkipBlankChars +xmlSnprintfElementContent +xmlSplitQName +xmlSplitQName2 +xmlSplitQName3 +xmlSprintfElementContent +xmlStopParser +xmlStrEqual +xmlStrPrintf +xmlStrQEqual +xmlStrVPrintf +xmlStrcasecmp +xmlStrcasestr +xmlStrcat +xmlStrchr +xmlStrcmp +xmlStrdup +xmlStreamPop +xmlStreamPush +xmlStreamPushAttr +xmlStreamPushNode +xmlStreamWantsAnyNode +xmlStringCurrentChar +xmlStringDecodeEntities +xmlStringGetNodeList +xmlStringLenDecodeEntities +xmlStringLenGetNodeList +xmlStrlen +xmlStrncasecmp +xmlStrncat +xmlStrncatNew +xmlStrncmp +xmlStrndup +xmlStrstr +xmlStrsub +xmlSubstituteEntitiesDefault +xmlSwitchEncoding +xmlSwitchInputEncoding +xmlSwitchToEncoding +xmlTextConcat +xmlTextMerge +xmlTextReaderAttributeCount +xmlTextReaderBaseUri +xmlTextReaderByteConsumed +xmlTextReaderClose +xmlTextReaderConstBaseUri +xmlTextReaderConstEncoding +xmlTextReaderConstLocalName +xmlTextReaderConstName +xmlTextReaderConstNamespaceUri +xmlTextReaderConstPrefix +xmlTextReaderConstString +xmlTextReaderConstValue +xmlTextReaderConstXmlLang +xmlTextReaderConstXmlVersion +xmlTextReaderCurrentDoc +xmlTextReaderCurrentNode +xmlTextReaderDepth +xmlTextReaderExpand +xmlTextReaderGetAttribute +xmlTextReaderGetAttributeNo +xmlTextReaderGetAttributeNs +xmlTextReaderGetErrorHandler +xmlTextReaderGetParserColumnNumber +xmlTextReaderGetParserLineNumber +xmlTextReaderGetParserProp +xmlTextReaderGetRemainder +xmlTextReaderHasAttributes +xmlTextReaderHasValue +xmlTextReaderIsDefault +xmlTextReaderIsEmptyElement +xmlTextReaderIsNamespaceDecl +xmlTextReaderIsValid +xmlTextReaderLocalName +xmlTextReaderLocatorBaseURI +xmlTextReaderLocatorLineNumber +xmlTextReaderLookupNamespace +xmlTextReaderMoveToAttribute +xmlTextReaderMoveToAttributeNo +xmlTextReaderMoveToAttributeNs +xmlTextReaderMoveToElement +xmlTextReaderMoveToFirstAttribute +xmlTextReaderMoveToNextAttribute +xmlTextReaderName +xmlTextReaderNamespaceUri +xmlTextReaderNext +xmlTextReaderNextSibling +xmlTextReaderNodeType +xmlTextReaderNormalization +xmlTextReaderPrefix +xmlTextReaderPreserve +xmlTextReaderPreservePattern +xmlTextReaderQuoteChar +xmlTextReaderRead +xmlTextReaderReadAttributeValue +xmlTextReaderReadInnerXml +xmlTextReaderReadOuterXml +xmlTextReaderReadState +xmlTextReaderReadString +#ifdef LIBXML_SCHEMAS_ENABLED +xmlTextReaderRelaxNGSetSchema +#endif +#ifdef LIBXML_SCHEMAS_ENABLED +xmlTextReaderRelaxNGValidate +#endif +xmlTextReaderRelaxNGValidateCtxt +xmlTextReaderSchemaValidate +xmlTextReaderSchemaValidateCtxt +xmlTextReaderSetErrorHandler +xmlTextReaderSetParserProp +xmlTextReaderSetSchema +xmlTextReaderSetStructuredErrorHandler +xmlTextReaderSetup +xmlTextReaderStandalone +xmlTextReaderValue +xmlTextReaderXmlLang +xmlTextWriterEndAttribute +xmlTextWriterEndCDATA +xmlTextWriterEndComment +xmlTextWriterEndDTD +xmlTextWriterEndDTDAttlist +xmlTextWriterEndDTDElement +xmlTextWriterEndDTDEntity +xmlTextWriterEndDocument +xmlTextWriterEndElement +xmlTextWriterEndPI +xmlTextWriterFlush +xmlTextWriterFullEndElement +xmlTextWriterSetIndent +xmlTextWriterSetIndentString +xmlTextWriterSetQuoteChar +xmlTextWriterStartAttribute +xmlTextWriterStartAttributeNS +xmlTextWriterStartCDATA +xmlTextWriterStartComment +xmlTextWriterStartDTD +xmlTextWriterStartDTDAttlist +xmlTextWriterStartDTDElement +xmlTextWriterStartDTDEntity +xmlTextWriterStartDocument +xmlTextWriterStartElement +xmlTextWriterStartElementNS +xmlTextWriterStartPI +xmlTextWriterWriteAttribute +xmlTextWriterWriteAttributeNS +xmlTextWriterWriteBase64 +xmlTextWriterWriteBinHex +xmlTextWriterWriteCDATA +xmlTextWriterWriteComment +xmlTextWriterWriteDTD +xmlTextWriterWriteDTDAttlist +xmlTextWriterWriteDTDElement +xmlTextWriterWriteDTDEntity +xmlTextWriterWriteDTDExternalEntity +xmlTextWriterWriteDTDExternalEntityContents +xmlTextWriterWriteDTDInternalEntity +xmlTextWriterWriteDTDNotation +xmlTextWriterWriteElement +xmlTextWriterWriteElementNS +xmlTextWriterWriteFormatAttribute +xmlTextWriterWriteFormatAttributeNS +xmlTextWriterWriteFormatCDATA +xmlTextWriterWriteFormatComment +xmlTextWriterWriteFormatDTD +xmlTextWriterWriteFormatDTDAttlist +xmlTextWriterWriteFormatDTDElement +xmlTextWriterWriteFormatDTDInternalEntity +xmlTextWriterWriteFormatElement +xmlTextWriterWriteFormatElementNS +xmlTextWriterWriteFormatPI +xmlTextWriterWriteFormatRaw +xmlTextWriterWriteFormatString +xmlTextWriterWritePI +xmlTextWriterWriteRaw +xmlTextWriterWriteRawLen +xmlTextWriterWriteString +xmlTextWriterWriteVFormatAttribute +xmlTextWriterWriteVFormatAttributeNS +xmlTextWriterWriteVFormatCDATA +xmlTextWriterWriteVFormatComment +xmlTextWriterWriteVFormatDTD +xmlTextWriterWriteVFormatDTDAttlist +xmlTextWriterWriteVFormatDTDElement +xmlTextWriterWriteVFormatDTDInternalEntity +xmlTextWriterWriteVFormatElement +xmlTextWriterWriteVFormatElementNS +xmlTextWriterWriteVFormatPI +xmlTextWriterWriteVFormatRaw +xmlTextWriterWriteVFormatString +xmlThrDefBufferAllocScheme +xmlThrDefDefaultBufferSize +xmlThrDefDeregisterNodeDefault +xmlThrDefDoValidityCheckingDefaultValue +xmlThrDefGetWarningsDefaultValue +xmlThrDefIndentTreeOutput +xmlThrDefKeepBlanksDefaultValue +xmlThrDefLineNumbersDefaultValue +xmlThrDefLoadExtDtdDefaultValue +xmlThrDefOutputBufferCreateFilenameDefault +xmlThrDefParserDebugEntities +xmlThrDefParserInputBufferCreateFilenameDefault +xmlThrDefPedanticParserDefaultValue +xmlThrDefRegisterNodeDefault +xmlThrDefSaveNoEmptyTags +xmlThrDefSetGenericErrorFunc +xmlThrDefSetStructuredErrorFunc +xmlThrDefSubstituteEntitiesDefaultValue +xmlThrDefTreeIndentString +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsAegeanNumbers +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsAlphabeticPresentationForms +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsArabic +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsArabicPresentationFormsA +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsArabicPresentationFormsB +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsArmenian +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsArrows +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsBasicLatin +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsBengali +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsBlock +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsBlockElements +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsBopomofo +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsBopomofoExtended +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsBoxDrawing +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsBraillePatterns +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsBuhid +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsByzantineMusicalSymbols +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCJKCompatibility +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCJKCompatibilityForms +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCJKCompatibilityIdeographs +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCJKCompatibilityIdeographsSupplement +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCJKRadicalsSupplement +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCJKSymbolsandPunctuation +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCJKUnifiedIdeographs +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCJKUnifiedIdeographsExtensionA +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCJKUnifiedIdeographsExtensionB +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCat +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatC +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatCc +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatCf +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatCo +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatCs +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatL +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatLl +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatLm +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatLo +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatLt +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatLu +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatM +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatMc +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatMe +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatMn +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatN +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatNd +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatNl +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatNo +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatP +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatPc +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatPd +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatPe +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatPf +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatPi +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatPo +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatPs +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatS +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatSc +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatSk +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatSm +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatSo +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatZ +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatZl +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatZp +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCatZs +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCherokee +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCombiningDiacriticalMarks +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCombiningDiacriticalMarksforSymbols +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCombiningHalfMarks +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCombiningMarksforSymbols +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsControlPictures +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCurrencySymbols +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCypriotSyllabary +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCyrillic +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsCyrillicSupplement +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsDeseret +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsDevanagari +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsDingbats +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsEnclosedAlphanumerics +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsEnclosedCJKLettersandMonths +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsEthiopic +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsGeneralPunctuation +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsGeometricShapes +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsGeorgian +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsGothic +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsGreek +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsGreekExtended +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsGreekandCoptic +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsGujarati +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsGurmukhi +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsHalfwidthandFullwidthForms +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsHangulCompatibilityJamo +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsHangulJamo +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsHangulSyllables +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsHanunoo +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsHebrew +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsHighPrivateUseSurrogates +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsHighSurrogates +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsHiragana +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsIPAExtensions +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsIdeographicDescriptionCharacters +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsKanbun +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsKangxiRadicals +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsKannada +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsKatakana +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsKatakanaPhoneticExtensions +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsKhmer +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsKhmerSymbols +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsLao +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsLatin1Supplement +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsLatinExtendedA +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsLatinExtendedAdditional +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsLatinExtendedB +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsLetterlikeSymbols +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsLimbu +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsLinearBIdeograms +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsLinearBSyllabary +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsLowSurrogates +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsMalayalam +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsMathematicalAlphanumericSymbols +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsMathematicalOperators +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsMiscellaneousMathematicalSymbolsA +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsMiscellaneousMathematicalSymbolsB +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsMiscellaneousSymbols +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsMiscellaneousSymbolsandArrows +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsMiscellaneousTechnical +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsMongolian +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsMusicalSymbols +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsMyanmar +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsNumberForms +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsOgham +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsOldItalic +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsOpticalCharacterRecognition +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsOriya +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsOsmanya +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsPhoneticExtensions +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsPrivateUse +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsPrivateUseArea +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsRunic +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsShavian +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsSinhala +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsSmallFormVariants +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsSpacingModifierLetters +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsSpecials +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsSuperscriptsandSubscripts +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsSupplementalArrowsA +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsSupplementalArrowsB +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsSupplementalMathematicalOperators +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsSupplementaryPrivateUseAreaA +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsSupplementaryPrivateUseAreaB +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsSyriac +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsTagalog +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsTagbanwa +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsTags +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsTaiLe +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsTaiXuanJingSymbols +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsTamil +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsTelugu +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsThaana +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsThai +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsTibetan +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsUgaritic +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsUnifiedCanadianAboriginalSyllabics +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsVariationSelectors +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsVariationSelectorsSupplement +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsYiRadicals +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsYiSyllables +#endif +#ifdef LIBXML_REGEXP_ENABLED +xmlUCSIsYijingHexagramSymbols +#endif +xmlURIEscape +xmlURIEscapeStr +xmlURIUnescapeString +xmlUTF8Charcmp +xmlUTF8Size +xmlUTF8Strlen +xmlUTF8Strloc +xmlUTF8Strndup +xmlUTF8Strpos +xmlUTF8Strsize +xmlUTF8Strsub +xmlUnlinkNode +xmlUnlockLibrary +xmlUnsetNsProp +xmlUnsetProp +#ifdef LIBXML_REGEXP_ENABLED +xmlValidBuildContentModel +#endif +xmlValidCtxtNormalizeAttributeValue +xmlValidGetPotentialChildren +xmlValidGetValidElements +xmlValidNormalizeAttributeValue +xmlValidateAttributeDecl +xmlValidateAttributeValue +xmlValidateDocument +xmlValidateDocumentFinal +xmlValidateDtd +xmlValidateDtdFinal +xmlValidateElement +xmlValidateElementDecl +xmlValidateNCName +xmlValidateNMToken +xmlValidateName +xmlValidateNameValue +xmlValidateNamesValue +xmlValidateNmtokenValue +xmlValidateNmtokensValue +xmlValidateNotationDecl +xmlValidateNotationUse +xmlValidateOneAttribute +xmlValidateOneElement +xmlValidateOneNamespace +xmlValidatePopElement +xmlValidatePushCData +xmlValidatePushElement +xmlValidateQName +xmlValidateRoot +#ifdef LIBXML_XINCLUDE_ENABLED +xmlXIncludeFreeContext +#endif +#ifdef LIBXML_XINCLUDE_ENABLED +xmlXIncludeNewContext +#endif +#ifdef LIBXML_XINCLUDE_ENABLED +xmlXIncludeProcess +#endif +#ifdef LIBXML_XINCLUDE_ENABLED +xmlXIncludeProcessFlags +#endif +#ifdef LIBXML_XINCLUDE_ENABLED +xmlXIncludeProcessFlagsData +#endif +#ifdef LIBXML_XINCLUDE_ENABLED +xmlXIncludeProcessNode +#endif +#ifdef LIBXML_XINCLUDE_ENABLED +xmlXIncludeProcessTree +#endif +#ifdef LIBXML_XINCLUDE_ENABLED +xmlXIncludeProcessTreeFlags +#endif +#ifdef LIBXML_XINCLUDE_ENABLED +xmlXIncludeProcessTreeFlagsData +#endif +#ifdef LIBXML_XINCLUDE_ENABLED +xmlXIncludeSetFlags +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathAddValues +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathBooleanFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCastBooleanToNumber +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCastBooleanToString +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCastNodeSetToBoolean +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCastNodeSetToNumber +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCastNodeSetToString +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCastNodeToNumber +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCastNodeToString +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCastNumberToBoolean +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCastNumberToString +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCastStringToBoolean +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCastStringToNumber +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCastToBoolean +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCastToNumber +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCastToString +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCeilingFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCmpNodes +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCompareValues +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCompile +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCompiledEval +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCompiledEvalToBoolean +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathConcatFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathContainsFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathContextSetCache +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathConvertBoolean +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathConvertNumber +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathConvertString +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCountFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathCtxtCompile +#endif +#ifdef LIBXML_XPATH_ENABLED +#ifdef LIBXML_DEBUG_ENABLED +xmlXPathDebugDumpCompExpr +#endif +#endif +#ifdef LIBXML_XPATH_ENABLED +#ifdef LIBXML_DEBUG_ENABLED +xmlXPathDebugDumpObject +#endif +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathDifference +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathDistinct +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathDistinctSorted +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathDivValues +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathEqualValues +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathErr +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathEval +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathEvalExpr +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathEvalExpression +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathEvalPredicate +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathEvaluatePredicateResult +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathFalseFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathFloorFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathFreeCompExpr +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathFreeContext +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathFreeNodeSet +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathFreeNodeSetList +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathFreeObject +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathFreeParserContext +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathFunctionLookup +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathFunctionLookupNS +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathHasSameNodes +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathIdFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathInit +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathIntersection +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathIsInf +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathIsNaN +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathIsNodeType +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathLangFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathLastFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathLeading +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathLeadingSorted +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathLocalNameFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathModValues +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathMultValues +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNamespaceURIFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNewBoolean +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNewCString +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNewContext +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNewFloat +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNewNodeSet +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNewNodeSetList +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNewParserContext +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNewString +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNewValueTree +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNextAncestor +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNextAncestorOrSelf +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNextAttribute +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNextChild +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNextDescendant +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNextDescendantOrSelf +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNextFollowing +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNextFollowingSibling +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNextNamespace +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNextParent +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNextPreceding +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNextPrecedingSibling +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNextSelf +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeEval +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeLeading +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeLeadingSorted +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeSetAdd +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeSetAddNs +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeSetAddUnique +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeSetContains +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeSetCreate +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeSetDel +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeSetFreeNs +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeSetMerge +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeSetRemove +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeSetSort +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeTrailing +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNodeTrailingSorted +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNormalizeFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNotEqualValues +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNotFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNsLookup +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathNumberFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathObjectCopy +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathOrderDocElems +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathParseNCName +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathParseName +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathPopBoolean +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathPopExternal +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathPopNodeSet +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathPopNumber +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathPopString +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathPositionFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathRegisterAllFunctions +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathRegisterFunc +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathRegisterFuncLookup +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathRegisterFuncNS +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathRegisterNs +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathRegisterVariable +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathRegisterVariableLookup +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathRegisterVariableNS +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathRegisteredFuncsCleanup +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathRegisteredNsCleanup +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathRegisteredVariablesCleanup +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathRoot +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathRoundFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathSetContextNode +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathStartsWithFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathStringEvalNumber +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathStringFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathStringLengthFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathSubValues +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathSubstringAfterFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathSubstringBeforeFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathSubstringFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathSumFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathTrailing +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathTrailingSorted +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathTranslateFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathTrueFunction +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathValueFlipSign +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathVariableLookup +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathVariableLookupNS +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathWrapCString +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathWrapExternal +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathWrapNodeSet +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPathWrapString +#endif +#ifdef LIBXML_XPATH_ENABLED +xmlXPatherror +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrBuildNodeList +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrEval +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrEvalRangePredicate +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrFreeLocationSet +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrLocationSetAdd +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrLocationSetCreate +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrLocationSetDel +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrLocationSetMerge +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrLocationSetRemove +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrNewCollapsedRange +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrNewContext +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrNewLocationSetNodeSet +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrNewLocationSetNodes +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrNewRange +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrNewRangeNodeObject +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrNewRangeNodePoint +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrNewRangeNodes +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrNewRangePointNode +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrNewRangePoints +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrRangeToFunction +#endif +#ifdef LIBXML_XPTR_ENABLED +xmlXPtrWrapLocationSet +#endif diff --git a/libxml2/win32/wince/libxml2.vcb b/libxml2/win32/wince/libxml2.vcb new file mode 100644 index 0000000..954d053 --- /dev/null +++ b/libxml2/win32/wince/libxml2.vcb @@ -0,0 +1 @@ +Microsoft C/C++ program database 2.00 diff --git a/libxml2/win32/wince/libxml2.vcl b/libxml2/win32/wince/libxml2.vcl new file mode 100644 index 0000000..627ecb6 --- /dev/null +++ b/libxml2/win32/wince/libxml2.vcl @@ -0,0 +1,122 @@ +<html> +<body> +<pre> +<h1>Build Log</h1> +<h3> +--------------------Configuration: libxml2 - Win32 (WCE x86em) Debug-------------------- +</h3> +<h3>Command Lines</h3> +Creating temporary file "C:\DOCUME~1\fjvg\CONFIG~1\Temp\RSP12E.tmp" with contents +[ +/nologo /W3 /Zi /Od /I "..\..\..\include" /I "..\..\include" /I "c:\ppc\libxml\XML\win32\wince" /D "DEBUG" /D _WIN32_WCE=300 /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "WIN32_PLATFORM_PSPC" /D "i486" /D UNDER_CE=300 /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /Fp"X86EMDbg/libxml2.pch" /YX /Fo"X86EMDbg/" /Fd"X86EMDbg/" /Gz /c +"C:\ppc\libxml\XML\DOCBparser.c" +"C:\ppc\libxml\XML\encoding.c" +"C:\ppc\libxml\XML\entities.c" +"C:\ppc\libxml\XML\error.c" +"C:\ppc\libxml\XML\globals.c" +"C:\ppc\libxml\XML\hash.c" +"C:\ppc\libxml\XML\list.c" +"C:\ppc\libxml\XML\parser.c" +"C:\ppc\libxml\XML\parserInternals.c" +"C:\ppc\libxml\XML\SAX.c" +"C:\ppc\libxml\XML\threads.c" +"C:\ppc\libxml\XML\tree.c" +"C:\ppc\libxml\XML\uri.c" +"C:\ppc\libxml\XML\valid.c" +"C:\ppc\libxml\XML\win32\wince\wincecompat.c" +"C:\ppc\libxml\XML\xlink.c" +"C:\ppc\libxml\XML\xmlIO.c" +"C:\ppc\libxml\XML\xmlmemory.c" +"C:\ppc\libxml\XML\c14n.c" +"C:\ppc\libxml\XML\catalog.c" +"C:\ppc\libxml\XML\debugXML.c" +"C:\ppc\libxml\XML\HTMLparser.c" +"C:\ppc\libxml\XML\HTMLtree.c" +"C:\ppc\libxml\XML\nanoftp.c" +"C:\ppc\libxml\XML\nanohttp.c" +"C:\ppc\libxml\XML\xinclude.c" +"C:\ppc\libxml\XML\xpath.c" +"C:\ppc\libxml\XML\xpointer.c" +] +Creating command line "cl.exe @C:\DOCUME~1\fjvg\CONFIG~1\Temp\RSP12E.tmp" +Creating temporary file "C:\DOCUME~1\fjvg\CONFIG~1\Temp\RSP12F.tmp" with contents +[ +corelibc.lib winsock.lib commctrl.lib coredll.lib /nologo /stack:0x10000,0x1000 /dll /incremental:yes /pdb:"X86EMDbg/libxml2.pdb" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:libc.lib /nodefaultlib:libcd.lib /nodefaultlib:libcmt.lib /nodefaultlib:libcmtd.lib /nodefaultlib:msvcrt.lib /nodefaultlib:msvcrtd.lib /nodefaultlib:oldnames.lib /def:".\libxml2.def" /out:"X86EMDbg/libxml2.dll" /implib:"X86EMDbg/libxml2.lib" /windowsce:emulation /MACHINE:IX86 +.\X86EMDbg\DOCBparser.obj +.\X86EMDbg\encoding.obj +.\X86EMDbg\entities.obj +.\X86EMDbg\error.obj +.\X86EMDbg\globals.obj +.\X86EMDbg\hash.obj +.\X86EMDbg\list.obj +.\X86EMDbg\parser.obj +.\X86EMDbg\parserInternals.obj +.\X86EMDbg\SAX.obj +.\X86EMDbg\threads.obj +.\X86EMDbg\tree.obj +.\X86EMDbg\uri.obj +.\X86EMDbg\valid.obj +.\X86EMDbg\wincecompat.obj +.\X86EMDbg\xlink.obj +.\X86EMDbg\xmlIO.obj +.\X86EMDbg\xmlmemory.obj +.\X86EMDbg\c14n.obj +.\X86EMDbg\catalog.obj +.\X86EMDbg\debugXML.obj +.\X86EMDbg\HTMLparser.obj +.\X86EMDbg\HTMLtree.obj +.\X86EMDbg\nanoftp.obj +.\X86EMDbg\nanohttp.obj +.\X86EMDbg\xinclude.obj +.\X86EMDbg\xpath.obj +.\X86EMDbg\xpointer.obj +] +Creating command line "link.exe @C:\DOCUME~1\fjvg\CONFIG~1\Temp\RSP12F.tmp" +<h3>Output Window</h3> +Compiling... +DOCBparser.c +encoding.c +entities.c +error.c +globals.c +hash.c +list.c +parser.c +C:\ppc\libxml\XML\parser.c(2282) : warning C4090: '=' : different 'const' qualifiers +parserInternals.c +SAX.c +threads.c +tree.c +uri.c +valid.c +wincecompat.c +C:\ppc\libxml\XML\win32\wince\wincecompat.c(37) : warning C4047: '=' : 'char ' differs in levels of indirection from 'char [2]' +C:\ppc\libxml\XML\win32\wince\wincecompat.c(39) : warning C4047: '=' : 'char ' differs in levels of indirection from 'char [2]' +C:\ppc\libxml\XML\win32\wince\wincecompat.c(40) : warning C4047: 'return' : 'int ' differs in levels of indirection from 'void *' +xlink.c +xmlIO.c +C:\ppc\libxml\XML\xmlIO.c(2404) : warning C4101: 'dir' : unreferenced local variable +C:\ppc\libxml\XML\xmlIO.c(2405) : warning C4101: 'cur' : unreferenced local variable +xmlmemory.c +c14n.c +catalog.c +debugXML.c +HTMLparser.c +HTMLtree.c +nanoftp.c +nanohttp.c +C:\ppc\libxml\XML\nanoftp.c(892) : warning C4761: integral size mismatch in argument; conversion supplied +xinclude.c +C:\ppc\libxml\XML\nanohttp.c(921) : warning C4761: integral size mismatch in argument; conversion supplied +xpath.c +xpointer.c +Linking... + Creating library X86EMDbg/libxml2.lib and object X86EMDbg/libxml2.exp + + + +<h3>Results</h3> +libxml2.dll - 0 error(s), 8 warning(s) +</pre> +</body> +</html> diff --git a/libxml2/win32/wince/libxml2.vco b/libxml2/win32/wince/libxml2.vco new file mode 100644 index 0000000..3599f1b --- /dev/null +++ b/libxml2/win32/wince/libxml2.vco @@ -0,0 +1 @@ +ÐÏࡱ
\ No newline at end of file diff --git a/libxml2/win32/wince/libxml2.vcp b/libxml2/win32/wince/libxml2.vcp new file mode 100644 index 0000000..101fbcd --- /dev/null +++ b/libxml2/win32/wince/libxml2.vcp @@ -0,0 +1,5273 @@ +# Microsoft eMbedded Visual Tools Project File - Name="libxml2" - Package Owner=<4> +# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (WCE SH3) Dynamic-Link Library" 0x8102 +# TARGTYPE "Win32 (WCE x86em) Dynamic-Link Library" 0x7f02 +# TARGTYPE "Win32 (WCE x86) Dynamic-Link Library" 0x8302 +# TARGTYPE "Win32 (WCE ARM) Dynamic-Link Library" 0x8502 +# TARGTYPE "Win32 (WCE MIPS) Dynamic-Link Library" 0x8202 + +CFG=libxml2 - Win32 (WCE ARM) Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "libxml2.vcn". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "libxml2.vcn" CFG="libxml2 - Win32 (WCE ARM) Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "libxml2 - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Dynamic-Link Library") +!MESSAGE "libxml2 - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Dynamic-Link Library") +!MESSAGE "libxml2 - Win32 (WCE x86em) Debug" (based on "Win32 (WCE x86em) Dynamic-Link Library") +!MESSAGE "libxml2 - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Dynamic-Link Library") +!MESSAGE "libxml2 - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Dynamic-Link Library") +!MESSAGE "libxml2 - Win32 (WCE x86) Debug" (based on "Win32 (WCE x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +# PROP ATL_Project 2 + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "ARMRel" +# PROP BASE Intermediate_Dir "ARMRel" +# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "ARMRel" +# PROP Intermediate_Dir "ARMRel" +# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_USRDLL" /D "CEDLL_EXPORTS" /YX /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "..\..\include" /I "c:\ppc\libxml\XML\win32\wince" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_USRDLL" /D "CEDLL_EXPORTS" /YX /Oxs /M$(CECrtMT) /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM +# ADD LINK32 winsock.lib commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "ARMDbg" +# PROP BASE Intermediate_Dir "ARMDbg" +# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "ARMDbg" +# PROP Intermediate_Dir "ARMDbg" +# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "DEBUG" /D "_USRDLL" /D "CEDLL_EXPORTS" /YX /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "..\..\include" /I "c:\ppc\libxml\XML\win32\wince" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "DEBUG" /D "_USRDLL" /D "CEDLL_EXPORTS" /Oxs /M$(CECrtMT) /c +# SUBTRACT CPP /YX +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM +# ADD LINK32 winsock.lib commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "X86EMDbg" +# PROP BASE Intermediate_Dir "X86EMDbg" +# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "X86EMDbg" +# PROP Intermediate_Dir "X86EMDbg" +# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gz /c +# ADD CPP /nologo /W3 /Zi /Od /I "..\..\..\include" /I "..\..\include" /I "c:\ppc\libxml\XML\win32\wince" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gz /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86 +# ADD LINK32 $(CEx86Corelibc) winsock.lib commctrl.lib coredll.lib /nologo /stack:0x10000,0x1000 /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86 + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "MIPSRel" +# PROP BASE Intermediate_Dir "MIPSRel" +# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "MIPSRel" +# PROP Intermediate_Dir "MIPSRel" +# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "..\..\include" /I "c:\ppc\libxml\XML\win32\wince" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +# ADD LINK32 commctrl.lib coredll.lib winsock.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "SH3Rel" +# PROP BASE Intermediate_Dir "SH3Rel" +# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "SH3Rel" +# PROP Intermediate_Dir "SH3Rel" +# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "..\..\include" /I "c:\ppc\libxml\XML\win32\wince" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3 +# ADD LINK32 commctrl.lib coredll.lib winsock.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3 + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "X86Dbg" +# PROP BASE Intermediate_Dir "X86Dbg" +# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "X86Dbg" +# PROP Intermediate_Dir "X86Dbg" +# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c +# ADD CPP /nologo /W3 /Zi /Od /I "..\..\include" /I "c:\ppc\libxml\XML\win32\wince" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86 +# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) winsock.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86 + +!ENDIF + +# Begin Target + +# Name "libxml2 - Win32 (WCE ARM) Release" +# Name "libxml2 - Win32 (WCE ARM) Debug" +# Name "libxml2 - Win32 (WCE x86em) Debug" +# Name "libxml2 - Win32 (WCE MIPS) Release" +# Name "libxml2 - Win32 (WCE SH3) Release" +# Name "libxml2 - Win32 (WCE x86) Debug" +# Begin Group "Source Files" + +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# Begin Source File + +SOURCE=..\..\c14n.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_C14N_=\ + "..\..\config.h"\ + "..\..\include\libxml\c14n.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_C14N_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +# PROP Exclude_From_Build 1 +DEP_CPP_C14N_=\ + "..\..\config.h"\ + "..\..\include\libxml\c14n.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_C14N_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_C14N_=\ + "..\..\config.h"\ + "..\..\include\libxml\c14n.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_C14N_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_C14N_=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_C14N_=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_C14N_=\ + "..\..\config.h"\ + "..\..\include\libxml\c14n.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_C14N_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_C14N_=\ + "..\..\config.h"\ + "..\..\include\libxml\c14n.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_C14N_=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\catalog.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_CATAL=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_CATAL=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +# PROP Exclude_From_Build 1 +DEP_CPP_CATAL=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_CATAL=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_CATAL=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_CATAL=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_CATAL=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_CATAL=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_CATAL=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_CATAL=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +# PROP Exclude_From_Build 1 +DEP_CPP_CATAL=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_CATAL=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\debugXML.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_DEBUG=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_DEBUG=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_DEBUG=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_DEBUG=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_DEBUG=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_DEBUG=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_DEBUG=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_DEBUG=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_DEBUG=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_DEBUG=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_DEBUG=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_DEBUG=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\DOCBparser.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_DOCBP=\ + "..\..\config.h"\ + "..\..\include\libxml\DOCBparser.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_DOCBP=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_DOCBP=\ + "..\..\config.h"\ + "..\..\include\libxml\DOCBparser.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_DOCBP=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_DOCBP=\ + "..\..\config.h"\ + "..\..\include\libxml\DOCBparser.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_DOCBP=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_DOCBP=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_DOCBP=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_DOCBP=\ + "..\..\config.h"\ + "..\..\include\libxml\DOCBparser.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_DOCBP=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +# PROP Exclude_From_Build 1 +DEP_CPP_DOCBP=\ + "..\..\config.h"\ + "..\..\include\libxml\DOCBparser.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_DOCBP=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\encoding.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_ENCOD=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ENCOD=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_ENCOD=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ENCOD=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_ENCOD=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ENCOD=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_ENCOD=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_ENCOD=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_ENCOD=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ENCOD=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_ENCOD=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ENCOD=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\entities.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_ENTIT=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ENTIT=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_ENTIT=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ENTIT=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_ENTIT=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ENTIT=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_ENTIT=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_ENTIT=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_ENTIT=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ENTIT=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_ENTIT=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ENTIT=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\error.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_ERROR=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ERROR=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_ERROR=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ERROR=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_ERROR=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ERROR=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_ERROR=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_ERROR=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_ERROR=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ERROR=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_ERROR=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_ERROR=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\globals.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_GLOBA=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_GLOBA=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_GLOBA=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_GLOBA=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_GLOBA=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_GLOBA=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_GLOBA=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_GLOBA=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_GLOBA=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_GLOBA=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_GLOBA=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_GLOBA=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\hash.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_HASH_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HASH_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_HASH_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HASH_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_HASH_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HASH_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_HASH_=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_HASH_=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_HASH_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HASH_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_HASH_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HASH_=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\HTMLparser.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_HTMLP=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HTMLP=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +# PROP Exclude_From_Build 1 +DEP_CPP_HTMLP=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HTMLP=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_HTMLP=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HTMLP=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_HTMLP=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_HTMLP=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_HTMLP=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HTMLP=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_HTMLP=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HTMLP=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\HTMLtree.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_HTMLT=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HTMLT=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +# PROP Exclude_From_Build 1 +DEP_CPP_HTMLT=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HTMLT=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_HTMLT=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HTMLT=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_HTMLT=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_HTMLT=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_HTMLT=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HTMLT=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_HTMLT=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_HTMLT=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\libxml2.def +# End Source File +# Begin Source File + +SOURCE=.\libxml2.def.src + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +USERDEP__LIBXM="../../include/libxml/xmlversion.h;" +# Begin Custom Build +InputPath=.\libxml2.def.src + +"libxml2.def" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" + cl /I"..\.." /I"..\..\include" /nologo /EP $(InputPath) > libxml2.def + +# End Custom Build + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\list.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_LIST_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_LIST_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_LIST_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_LIST_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_LIST_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_LIST_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_LIST_=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_LIST_=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_LIST_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_LIST_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_LIST_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_LIST_=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\nanoftp.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_NANOF=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanoftp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_NANOF=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_NANOF=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanoftp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_NANOF=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_NANOF=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanoftp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_NANOF=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_NANOF=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_NANOF=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_NANOF=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanoftp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_NANOF=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_NANOF=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanoftp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_NANOF=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\nanohttp.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_NANOH=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanohttp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_NANOH=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_NANOH=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanohttp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_NANOH=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_NANOH=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanohttp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_NANOH=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_NANOH=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_NANOH=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_NANOH=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanohttp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_NANOH=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_NANOH=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanohttp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_NANOH=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\parser.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_PARSE=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_PARSE=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_PARSE=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_PARSE=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_PARSE=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_PARSE=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_PARSE=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_PARSE=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_PARSE=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_PARSE=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_PARSE=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_PARSE=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\parserInternals.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_PARSER=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_PARSER=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_PARSER=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_PARSER=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_PARSER=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_PARSER=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_PARSER=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_PARSER=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_PARSER=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_PARSER=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_PARSER=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_PARSER=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\SAX.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_SAX_C=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_SAX_C=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_SAX_C=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_SAX_C=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_SAX_C=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_SAX_C=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_SAX_C=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_SAX_C=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_SAX_C=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_SAX_C=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_SAX_C=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\HTMLtree.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_SAX_C=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\threads.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_THREA=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_THREA=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_THREA=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_THREA=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_THREA=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_THREA=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_THREA=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_THREA=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_THREA=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_THREA=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_THREA=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_THREA=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\tree.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_TREE_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_TREE_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_TREE_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_TREE_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_TREE_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_TREE_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_TREE_=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_TREE_=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_TREE_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_TREE_=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_TREE_=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_TREE_=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\uri.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_URI_C=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_URI_C=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_URI_C=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_URI_C=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_URI_C=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_URI_C=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_URI_C=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_URI_C=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_URI_C=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_URI_C=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_URI_C=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_URI_C=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\valid.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_VALID=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_VALID=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_VALID=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_VALID=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_VALID=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_VALID=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_VALID=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_VALID=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_VALID=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_VALID=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_VALID=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_VALID=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\wincecompat.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_WINCE=\ + ".\wincecompat.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_WINCE=\ + ".\wincecompat.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_WINCE=\ + ".\wincecompat.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_WINCE=\ + ".\wincecompat.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_WINCE=\ + ".\wincecompat.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_WINCE=\ + ".\wincecompat.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\xinclude.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_XINCL=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xinclude.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XINCL=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +# PROP Exclude_From_Build 1 +DEP_CPP_XINCL=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xinclude.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XINCL=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_XINCL=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xinclude.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XINCL=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_XINCL=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_XINCL=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_XINCL=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xinclude.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XINCL=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_XINCL=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xinclude.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XINCL=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\xlink.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_XLINK=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XLINK=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_XLINK=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XLINK=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_XLINK=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XLINK=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_XLINK=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_XLINK=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_XLINK=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XLINK=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_XLINK=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XLINK=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\xmlIO.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_XMLIO=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanoftp.h"\ + "..\..\include\libxml\nanohttp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XMLIO=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_XMLIO=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanoftp.h"\ + "..\..\include\libxml\nanohttp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XMLIO=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_XMLIO=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanoftp.h"\ + "..\..\include\libxml\nanohttp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XMLIO=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_XMLIO=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_XMLIO=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_XMLIO=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanoftp.h"\ + "..\..\include\libxml\nanohttp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XMLIO=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_XMLIO=\ + "..\..\config.h"\ + "..\..\include\libxml\catalog.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\nanoftp.h"\ + "..\..\include\libxml\nanohttp.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XMLIO=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\xmlmemory.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_XMLME=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XMLME=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +DEP_CPP_XMLME=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XMLME=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_XMLME=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XMLME=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_XMLME=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_XMLME=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_XMLME=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XMLME=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_XMLME=\ + "..\..\config.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XMLME=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\xpath.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_XPATH=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + "..\..\triodef.h"\ + "..\..\trionan.c"\ + "..\..\trionan.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XPATH=\ + "..\..\config-mac.h"\ + "..\..\doc\doc_nan.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +# PROP Exclude_From_Build 1 +DEP_CPP_XPATH=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + "..\..\triodef.h"\ + "..\..\trionan.c"\ + "..\..\trionan.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XPATH=\ + "..\..\config-mac.h"\ + "..\..\doc\doc_nan.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_XPATH=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + "..\..\triodef.h"\ + "..\..\trionan.c"\ + "..\..\trionan.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XPATH=\ + "..\..\config-mac.h"\ + "..\..\doc\doc_nan.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_XPATH=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + "..\..\triodef.h"\ + "..\..\trionan.c"\ + "..\..\trionan.h"\ + +NODEP_CPP_XPATH=\ + "..\..\config-mac.h"\ + "..\..\doc\doc_nan.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_XPATH=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + "..\..\triodef.h"\ + "..\..\trionan.c"\ + "..\..\trionan.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XPATH=\ + "..\..\config-mac.h"\ + "..\..\doc\doc_nan.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_XPATH=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + "..\..\triodef.h"\ + "..\..\trionan.c"\ + "..\..\trionan.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XPATH=\ + "..\..\config-mac.h"\ + "..\..\doc\doc_nan.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\xpointer.c + +!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release" + +DEP_CPP_XPOIN=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\include\winCEconfig.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XPOIN=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug" + +# PROP Exclude_From_Build 1 +DEP_CPP_XPOIN=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XPOIN=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug" + +DEP_CPP_XPOIN=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XPOIN=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release" + +DEP_CPP_XPOIN=\ + "..\..\config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + +NODEP_CPP_XPOIN=\ + "..\..\config-mac.h"\ + "..\..\win32config.h"\ + "..\..\winCEconfig.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release" + +DEP_CPP_XPOIN=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XPOIN=\ + "..\..\config-mac.h"\ + + +!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug" + +DEP_CPP_XPOIN=\ + "..\..\config.h"\ + "..\..\include\libxml\debugXML.h"\ + "..\..\include\libxml\encoding.h"\ + "..\..\include\libxml\entities.h"\ + "..\..\include\libxml\globals.h"\ + "..\..\include\libxml\hash.h"\ + "..\..\include\libxml\HTMLparser.h"\ + "..\..\include\libxml\list.h"\ + "..\..\include\libxml\parser.h"\ + "..\..\include\libxml\parserInternals.h"\ + "..\..\include\libxml\SAX.h"\ + "..\..\include\libxml\threads.h"\ + "..\..\include\libxml\tree.h"\ + "..\..\include\libxml\uri.h"\ + "..\..\include\libxml\valid.h"\ + "..\..\include\libxml\xlink.h"\ + "..\..\include\libxml\xmlerror.h"\ + "..\..\include\libxml\xmlIO.h"\ + "..\..\include\libxml\xmlmemory.h"\ + "..\..\include\libxml\xmlversion.h"\ + "..\..\include\libxml\xmlwin32version.h"\ + "..\..\include\libxml\xpath.h"\ + "..\..\include\libxml\xpathInternals.h"\ + "..\..\include\libxml\xpointer.h"\ + "..\..\include\win32config.h"\ + "..\..\libxml.h"\ + "..\..\trio.h"\ + ".\wincecompat.h"\ + +NODEP_CPP_XPOIN=\ + "..\..\config-mac.h"\ + + +!ENDIF + +# End Source File +# End Group +# Begin Group "Header Files" + +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# Begin Source File + +SOURCE=..\..\include\libxml\c14n.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\catalog.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\debugXML.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\DOCBparser.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\encoding.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\entities.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\globals.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\hash.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\HTMLparser.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\HTMLtree.h +# End Source File +# Begin Source File + +SOURCE=..\..\libxml.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\list.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\nanoftp.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\nanohttp.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\parser.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\parserInternals.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\SAX.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\tree.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\uri.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\valid.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\win32config.h +# End Source File +# Begin Source File + +SOURCE=.\wincecompat.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\xinclude.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\xlink.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\xmlerror.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\xmlIO.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\xmlmemory.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\xmlversion.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\xmlwin32version.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\xpath.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\xpathInternals.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\libxml\xpointer.h +# End Source File +# End Group +# End Target +# End Project diff --git a/libxml2/win32/wince/libxml2.vcw b/libxml2/win32/wince/libxml2.vcw new file mode 100644 index 0000000..c050c4f --- /dev/null +++ b/libxml2/win32/wince/libxml2.vcw @@ -0,0 +1,41 @@ +Microsoft eMbedded Visual Tools Workspace File, Format Version 3.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "libxml2"=.\libxml2.vcp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "ppcTest"=.\ppcTest\ppcTest.vcp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/libxml2/win32/wince/wincecompat.c b/libxml2/win32/wince/wincecompat.c new file mode 100644 index 0000000..bd49c57 --- /dev/null +++ b/libxml2/win32/wince/wincecompat.c @@ -0,0 +1,68 @@ +/* + * wincecompat.c : wince compatiblity module + * + * See Copyright for the status of this software. + * + * javier@tiresiassoft.com + * + * 17 Sep 2002 created + */ + +#include "wincecompat.h" + +char *strError[]= {"Error 0","","No such file or directory","","","","","Arg list too long", + "Exec format error","Bad file number","","","Not enough core","Permission denied","","", + "","File exists","Cross-device link","","","","Invalid argument","","Too many open files", + "","","","No space left on device","","","","","Math argument","Result too large","", + "Resource deadlock would occur", "Unknown error under wince"}; + + +int errno=0; + +int read(int handle, char *buffer, unsigned int len) +{ + return(fread(&buffer[0], len, 1, (FILE *) handle)); +} + +int write(int handle, const char *buffer, unsigned int len) +{ + return(fwrite(&buffer[0], len,1,(FILE *) handle)); +} + +int open(const char *filename,int oflag, ...) +{ + char mode[3]; /* mode[0] ="w/r/a" mode[1]="+" */ + mode[2]=0; + if ( oflag==(O_WRONLY|O_CREAT) ) + mode[0]='w'; + else if (oflag==O_RDONLY) + mode[0]='r'; + return (int) fopen(filename, mode); +} + +int close(int handle) +{ + return ( fclose((FILE *) handle) ); +} + + +char *getcwd( char *buffer, unsigned int size) +{ + /* Windows CE don't have the concept of a current directory + * so we just return NULL to indicate an error + */ + return NULL; +} + +char *getenv( const char *varname ) +{ + return NULL; +} + +char *strerror(int errnum) +{ + if (errnum>MAX_STRERROR) + return strError[MAX_STRERROR]; + else + return strError[errnum]; +} diff --git a/libxml2/win32/wince/wincecompat.h b/libxml2/win32/wince/wincecompat.h new file mode 100644 index 0000000..aa0f3dc --- /dev/null +++ b/libxml2/win32/wince/wincecompat.h @@ -0,0 +1,50 @@ +/* + * wincecompat.h : wince compatiblity header file + * + * See Copyright for the status of this software. + * + * javier@tiresiassoft.com + * + * 17 Sep 2002 created + */ + +#ifndef __WINCECOMPAT_H__ +#define __WINCECOMPAT_H__ + +#include <stdio.h> +#include <winbase.h> + +#define MAX_STRERROR 31 + +#define O_RDONLY 0x0000 /* open for reading only */ +#define O_WRONLY 0x0001 /* open for writing only */ +#define O_RDWR 0x0002 /* open for reading and writing */ +#define O_APPEND 0x0008 /* writes done at eof */ + +#define O_CREAT 0x0100 /* create and open file */ +#define O_TRUNC 0x0200 /* open and truncate */ +#define O_EXCL 0x0400 /* open only if file doesn't already exist */ + +#define BUFSIZ 4096 + +extern int errno; +/* + Prototypes +*/ +int read(int handle, char *buffer, unsigned int len); +int write(int handle, const char *buffer, unsigned int len); +int open(const char *filename,int oflag, ...); +int close(int handle); +char *getenv( const char *varname ); +char *getcwd( char *buffer, unsigned int size); +char *strerror(int errnum); + +/* + Macro'ed inexistant funtion names + +*/ +#define snprintf _snprintf +#define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a) +#define perror(_t) MessageBox(NULL, _T("_t"), _T("Error/Warning"), MB_OK) + +#endif
\ No newline at end of file |