mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
- nanoftp.c nanohttp.c uri.c include/win32config.h: Igor Zlatkovic
provided fixes to compile on MSCC again - win32/libxml2/libxml2.def.src win32/libxml2/libxml2*.dsp: he also provided an update for the project files. Daniel
This commit is contained in:
parent
a682b219c4
commit
f3afa7dd4e
@ -1,3 +1,10 @@
|
||||
Sat Jun 9 15:50:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||
|
||||
* nanoftp.c nanohttp.c uri.c include/win32config.h: Igor Zlatkovic
|
||||
provided fixes to compile on MSCC again
|
||||
* win32/libxml2/libxml2.def.src win32/libxml2/libxml2*.dsp: he
|
||||
also provided an update for the project files.
|
||||
|
||||
Thu Jun 7 21:52:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||
|
||||
* tree.c: applied Steve Tinney patch to xmlNewNsProp to fix
|
||||
|
@ -9,7 +9,7 @@
|
||||
#define LIBXML_DLL_IMPORT
|
||||
#define SOCKLEN_T int
|
||||
|
||||
#ifdef INCLUDE_WINSOCK
|
||||
#ifdef NEED_SOCKETS
|
||||
#include <winsock2.h>
|
||||
|
||||
#define EWOULDBLOCK WSAEWOULDBLOCK
|
||||
@ -94,7 +94,10 @@ static int isnan (double d) {
|
||||
/* Microsoft's C runtime names all non-ANSI functions with a leading
|
||||
underscore. Since functionality is still the same, they can be used. */
|
||||
#ifdef _MSC_VER
|
||||
#include <libxml/xmlversion.h>
|
||||
#ifndef WITH_TRIO
|
||||
#define snprintf _snprintf
|
||||
#define vsnprintf _vsnprintf
|
||||
#endif /* WITH_TRIO */
|
||||
#endif /* _MSC_VER */
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include "trio.h"
|
||||
#endif
|
||||
#else /* STANDALONE */
|
||||
#define NEED_SOCKETS
|
||||
#include "libxml.h"
|
||||
#endif /* STANDALONE */
|
||||
|
||||
|
@ -14,6 +14,7 @@
|
||||
/* TODO add compression support, Send the Accept- , and decompress on the
|
||||
fly with ZLIB if found at compile-time */
|
||||
|
||||
#define NEED_SOCKETS
|
||||
#include "libxml.h"
|
||||
|
||||
#ifdef LIBXML_HTTP_ENABLED
|
||||
|
4
uri.c
4
uri.c
@ -10,10 +10,6 @@
|
||||
|
||||
#include "libxml.h"
|
||||
|
||||
#ifdef WIN32
|
||||
#define INCLUDE_WINSOCK
|
||||
#endif
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include <libxml/xmlmemory.h>
|
||||
|
@ -434,7 +434,6 @@ EXPORTS
|
||||
cdataBlock
|
||||
xmlDefaultSAXHandlerInit
|
||||
htmlDefaultSAXHandlerInit
|
||||
sgmlDefaultSAXHandlerInit
|
||||
|
||||
/*
|
||||
* strio.h
|
||||
@ -911,3 +910,19 @@ EXPORTS
|
||||
xmlXPtrEvalRangePredicate
|
||||
#endif /* LIBXML_XPTR_ENABLED */
|
||||
|
||||
/*
|
||||
* DOCBParser.h
|
||||
*/
|
||||
#ifdef LIBXML_DOCB_ENABLED
|
||||
docbEncodeEntities
|
||||
docbSAXParseDoc
|
||||
docbParseDoc
|
||||
docbSAXParseFile
|
||||
docbParseFile
|
||||
docbFreeParserCtxt
|
||||
docbCreatePushParserCtxt
|
||||
docbParseChunk
|
||||
docbCreateFileParserCtxt
|
||||
docbParseDocument
|
||||
#endif /* LIBXML_DOCB_ENABLED */
|
||||
|
||||
|
@ -89,10 +89,18 @@ LIB32=link.exe -lib
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\catalog.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\debugXML.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\DOCBparser.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\encoding.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
@ -185,10 +193,18 @@ SOURCE=..\..\xpointer.c
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# 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
|
||||
@ -209,6 +225,10 @@ 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
|
||||
|
@ -94,10 +94,18 @@ LINK32=link.exe
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\catalog.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\debugXML.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\DOCBparser.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\encoding.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
@ -188,6 +196,10 @@ SOURCE=..\..\tree.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\trio.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\uri.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
@ -224,10 +236,18 @@ SOURCE=..\..\xpointer.c
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# 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
|
||||
@ -248,6 +268,10 @@ 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
|
||||
@ -280,6 +304,10 @@ SOURCE=..\..\include\libxml\tree.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\trio.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\include\libxml\uri.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
Loading…
x
Reference in New Issue
Block a user