mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-27 03:21:26 +03:00
34ce8bece2
* configure.in: preparing 2.4.18 * doc/*: updated and rebuilt the web site * *.c libxml.h: implement the new IN_LIBXML scheme discussed with the Windows and Cygwin maintainers. * parser.c: humm, changed the way the SAX parser work when xmlSubstituteEntitiesDefault(1) is set, it will then do the entity registration and loading by itself in case the user provided SAX getEntity() returns NULL. * testSAX.c: added --noent to test the behaviour. Daniel
35 lines
688 B
C
35 lines
688 B
C
/*
|
|
* libxml.h: internal header only used during the compilation of libxml
|
|
*
|
|
* See COPYRIGHT for the status of this software
|
|
*
|
|
* Author: breese@users.sourceforge.net
|
|
*/
|
|
|
|
#ifndef __XML_LIBXML_H__
|
|
#define __XML_LIBXML_H__
|
|
|
|
#if defined(WIN32) && !defined(__CYGWIN__)
|
|
#include "win32config.h"
|
|
#elif defined(macintosh)
|
|
#include "config-mac.h"
|
|
#else
|
|
#include "config.h"
|
|
#include <libxml/xmlversion.h>
|
|
#endif
|
|
|
|
#ifndef WITH_TRIO
|
|
#include <stdio.h>
|
|
#else
|
|
/**
|
|
* TRIO_REPLACE_STDIO:
|
|
*
|
|
* This macro is defined if teh trio string formatting functions are to
|
|
* be used instead of the default stdio ones.
|
|
*/
|
|
#define TRIO_REPLACE_STDIO
|
|
#include "trio.h"
|
|
#endif
|
|
|
|
#endif /* ! __XML_LIBXML_H__ */
|