mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
retired xmlwin32version.h
This commit is contained in:
parent
a2258daf2f
commit
7ae91bcd9e
@ -35,7 +35,7 @@ $(APIPAGES): libxml2-refs.xml site.xsl api.xsl
|
||||
$(bindir)/xsltproc --html $(top_srcdir)/doc/api.xsl $(top_srcdir)/doc/xml.html ; fi );
|
||||
|
||||
scan:
|
||||
gtkdoc-scan --module=libxml --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="acconfig.h config.h xmlwin32version.h win32config.h trio.h triostr.h triop.h config-mac.h XMLTestPrefix2.h XMLTestPrefix.h triodef.h trionan.h xlink.h libxml.h libxml2-py.h libxml_wrap.h xmlschemas.h xmlschemastypes.h"
|
||||
gtkdoc-scan --module=libxml --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="acconfig.h config.h win32config.h trio.h triostr.h triop.h config-mac.h XMLTestPrefix2.h XMLTestPrefix.h triodef.h trionan.h xlink.h libxml.h libxml2-py.h libxml_wrap.h xmlschemas.h xmlschemastypes.h"
|
||||
|
||||
templates: scan
|
||||
gtkdoc-mktmpl --module=libxml
|
||||
|
@ -17,11 +17,8 @@
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#if defined(WIN32) && defined(_MSC_VER)
|
||||
#include <libxml/xmlwin32version.h>
|
||||
#else
|
||||
#include <libxml/xmlversion.h>
|
||||
#endif
|
||||
|
||||
#ifdef LIBXML_CATALOG_ENABLED
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -21,11 +21,8 @@
|
||||
#ifndef __XML_CHAR_ENCODING_H__
|
||||
#define __XML_CHAR_ENCODING_H__
|
||||
|
||||
#if defined(WIN32) && (defined(_MSC_VER) || defined(__BORLANDC__))
|
||||
#include <libxml/xmlwin32version.h>
|
||||
#else
|
||||
#include <libxml/xmlversion.h>
|
||||
#endif
|
||||
|
||||
#ifdef LIBXML_ICONV_ENABLED
|
||||
#include <iconv.h>
|
||||
#endif
|
||||
|
@ -9,11 +9,8 @@
|
||||
#ifndef __NANO_FTP_H__
|
||||
#define __NANO_FTP_H__
|
||||
|
||||
#if defined(WIN32) && defined(_MSC_VER)
|
||||
#include <libxml/xmlwin32version.h>
|
||||
#else
|
||||
#include <libxml/xmlversion.h>
|
||||
#endif
|
||||
|
||||
#ifdef LIBXML_FTP_ENABLED
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -9,11 +9,8 @@
|
||||
#ifndef __NANO_HTTP_H__
|
||||
#define __NANO_HTTP_H__
|
||||
|
||||
#if defined(WIN32) && defined(_MSC_VER)
|
||||
#include <libxml/xmlwin32version.h>
|
||||
#else
|
||||
#include <libxml/xmlversion.h>
|
||||
#endif
|
||||
|
||||
#ifdef LIBXML_HTTP_ENABLED
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -11,11 +11,8 @@
|
||||
#ifndef __XML_SCHEMA_INTERNALS_H__
|
||||
#define __XML_SCHEMA_INTERNALS_H__
|
||||
|
||||
#if defined(WIN32) && defined(_MSC_VER)
|
||||
#include <libxml/xmlwin32version.h>
|
||||
#else
|
||||
#include <libxml/xmlversion.h>
|
||||
#endif
|
||||
|
||||
#ifdef LIBXML_SCHEMAS_ENABLED
|
||||
|
||||
#include <libxml/xmlregexp.h>
|
||||
|
@ -12,11 +12,8 @@
|
||||
#define __XML_TREE_H__
|
||||
|
||||
#include <stdio.h>
|
||||
#if defined(WIN32) && (defined(_MSC_VER) || defined(__BORLANDC__))
|
||||
#include <libxml/xmlwin32version.h>
|
||||
#else
|
||||
#include <libxml/xmlversion.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
@ -11,11 +11,7 @@
|
||||
#define __XML_IO_H__
|
||||
|
||||
#include <stdio.h>
|
||||
#if defined(WIN32) && defined(_MSC_VER)
|
||||
#include <libxml/xmlwin32version.h>
|
||||
#else
|
||||
#include <libxml/xmlversion.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -9,11 +9,7 @@
|
||||
#ifndef __XML_AUTOMATA_H__
|
||||
#define __XML_AUTOMATA_H__
|
||||
|
||||
#if defined(WIN32) && defined(_MSC_VER)
|
||||
#include <libxml/xmlwin32version.h>
|
||||
#else
|
||||
#include <libxml/xmlversion.h>
|
||||
#endif
|
||||
#include <libxml/tree.h>
|
||||
|
||||
#ifdef LIBXML_AUTOMATA_ENABLED
|
||||
|
@ -9,11 +9,7 @@
|
||||
#define _DEBUG_MEMORY_ALLOC_
|
||||
|
||||
#include <stdio.h>
|
||||
#if defined(WIN32) && defined(_MSC_VER)
|
||||
#include <libxml/xmlwin32version.h>
|
||||
#else
|
||||
#include <libxml/xmlversion.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* DEBUG_MEMORY:
|
||||
@ -118,6 +114,10 @@ int xmlMemUsed (void);
|
||||
void xmlMemDisplay (FILE *fp);
|
||||
void xmlMemShow (FILE *fp, int nr);
|
||||
void xmlMemoryDump (void);
|
||||
void * xmlMemMalloc (size_t size);
|
||||
void * xmlMemRealloc (void *ptr,size_t size);
|
||||
void xmlMemFree (void *ptr);
|
||||
char * xmlMemoryStrdup (const char *str);
|
||||
|
||||
#ifdef DEBUG_MEMORY_LOCATION
|
||||
/**
|
||||
|
@ -9,13 +9,9 @@
|
||||
#ifndef __XML_REGEXP_H__
|
||||
#define __XML_REGEXP_H__
|
||||
|
||||
#if defined(WIN32) && defined(_MSC_VER)
|
||||
#include <libxml/xmlwin32version.h>
|
||||
#else
|
||||
#include <libxml/xmlversion.h>
|
||||
#endif
|
||||
#ifdef LIBXML_REGEXP_ENABLED
|
||||
|
||||
#ifdef LIBXML_REGEXP_ENABLED
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -11,11 +11,8 @@
|
||||
#ifndef __XML_SCHEMA_H__
|
||||
#define __XML_SCHEMA_H__
|
||||
|
||||
#if defined(WIN32) && defined(_MSC_VER)
|
||||
#include <libxml/xmlwin32version.h>
|
||||
#else
|
||||
#include <libxml/xmlversion.h>
|
||||
#endif
|
||||
|
||||
#ifdef LIBXML_SCHEMAS_ENABLED
|
||||
|
||||
#include <libxml/tree.h>
|
||||
|
@ -11,11 +11,8 @@
|
||||
#ifndef __XML_SCHEMA_TYPES_H__
|
||||
#define __XML_SCHEMA_TYPES_H__
|
||||
|
||||
#if defined(WIN32) && defined(_MSC_VER)
|
||||
#include <libxml/xmlwin32version.h>
|
||||
#else
|
||||
#include <libxml/xmlversion.h>
|
||||
#endif
|
||||
|
||||
#ifdef LIBXML_SCHEMAS_ENABLED
|
||||
|
||||
#include <libxml/schemasInternals.h>
|
||||
|
@ -10,11 +10,7 @@
|
||||
#ifndef __XML_XPATH_INTERNALS_H__
|
||||
#define __XML_XPATH_INTERNALS_H__
|
||||
|
||||
#if defined(WIN32) && defined(_MSC_VER)
|
||||
#include <libxml/xmlwin32version.h>
|
||||
#else
|
||||
#include <libxml/xmlversion.h>
|
||||
#endif
|
||||
#include <libxml/xpath.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -23,7 +23,6 @@ var versionFile = ".\\configure.txt";
|
||||
is identical to the first. */
|
||||
var optsFileIn = srcDirXml + "\\include\\libxml\\xmlversion.h.in";
|
||||
var optsFile = srcDirXml + "\\include\\libxml\\xmlversion.h";
|
||||
var optsFile2 = srcDirXml + "\\include\\libxml\\xmlwin32version.h";
|
||||
/* Version strings for the binary distribution. Will be filled later
|
||||
in the code. */
|
||||
var verMajor;
|
||||
@ -245,7 +244,6 @@ function configureLibxml()
|
||||
}
|
||||
ofi.Close();
|
||||
of.Close();
|
||||
fso.CopyFile(optsFile, optsFile2, true);
|
||||
}
|
||||
|
||||
/* Creates the readme file for the binary distribution of 'bname', for the
|
||||
|
Loading…
x
Reference in New Issue
Block a user