version 1.1.1.1, 2012/02/21 23:37:58
|
version 1.1.1.3, 2014/06/15 19:53:38
|
Line 98 XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
|
Line 98 XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
|
#endif |
#endif |
|
|
/** |
/** |
|
* LIBXML_THREAD_ALLOC_ENABLED: |
|
* |
|
* Whether the allocation hooks are per-thread |
|
*/ |
|
#if @WITH_THREAD_ALLOC@ |
|
#define LIBXML_THREAD_ALLOC_ENABLED |
|
#endif |
|
|
|
/** |
* LIBXML_TREE_ENABLED: |
* LIBXML_TREE_ENABLED: |
* |
* |
* Whether the DOM like tree manipulation API support is configured in |
* Whether the DOM like tree manipulation API support is configured in |
Line 391 XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
|
Line 400 XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
|
#define LIBXML_ZLIB_ENABLED |
#define LIBXML_ZLIB_ENABLED |
#endif |
#endif |
|
|
|
/** |
|
* LIBXML_LZMA_ENABLED: |
|
* |
|
* Whether the Lzma support is compiled in |
|
*/ |
|
#if @WITH_LZMA@ |
|
#define LIBXML_LZMA_ENABLED |
|
#endif |
|
|
#ifdef __GNUC__ |
#ifdef __GNUC__ |
#ifdef HAVE_ANSIDECL_H |
#ifdef HAVE_ANSIDECL_H |
#include <ansidecl.h> |
#include <ansidecl.h> |
Line 403 XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
|
Line 421 XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
|
*/ |
*/ |
|
|
#ifndef ATTRIBUTE_UNUSED |
#ifndef ATTRIBUTE_UNUSED |
#define ATTRIBUTE_UNUSED __attribute__((unused)) | # if ((__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 7))) |
| # define ATTRIBUTE_UNUSED __attribute__((unused)) |
| # else |
| # define ATTRIBUTE_UNUSED |
| # endif |
#endif |
#endif |
|
|
/** |
/** |