libxml2 2.9.1 clean sources
[tomato.git] / release / src / router / libxml2 / include / libxml / xmlversion.h.in
blob00a836fb9bc214cccc51cd552a3629bdacbf90f0
1 /*
2 * Summary: compile-time version informations
3 * Description: compile-time version informations for the XML library
5 * Copy: See Copyright for the status of this software.
7 * Author: Daniel Veillard
8 */
10 #ifndef __XML_VERSION_H__
11 #define __XML_VERSION_H__
13 #include <libxml/xmlexports.h>
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
20 * use those to be sure nothing nasty will happen if
21 * your library and includes mismatch
23 #ifndef LIBXML2_COMPILING_MSCCDEF
24 XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
25 #endif /* LIBXML2_COMPILING_MSCCDEF */
27 /**
28 * LIBXML_DOTTED_VERSION:
30 * the version string like "1.2.3"
32 #define LIBXML_DOTTED_VERSION "@VERSION@"
34 /**
35 * LIBXML_VERSION:
37 * the version number: 1.2.3 value is 10203
39 #define LIBXML_VERSION @LIBXML_VERSION_NUMBER@
41 /**
42 * LIBXML_VERSION_STRING:
44 * the version number string, 1.2.3 value is "10203"
46 #define LIBXML_VERSION_STRING "@LIBXML_VERSION_NUMBER@"
48 /**
49 * LIBXML_VERSION_EXTRA:
51 * extra version information, used to show a CVS compilation
53 #define LIBXML_VERSION_EXTRA "@LIBXML_VERSION_EXTRA@"
55 /**
56 * LIBXML_TEST_VERSION:
58 * Macro to check that the libxml version in use is compatible with
59 * the version the software has been compiled against
61 #define LIBXML_TEST_VERSION xmlCheckVersion(@LIBXML_VERSION_NUMBER@);
63 #ifndef VMS
64 #if @WITH_TRIO@
65 /**
66 * WITH_TRIO:
68 * defined if the trio support need to be configured in
70 #define WITH_TRIO
71 #else
72 /**
73 * WITHOUT_TRIO:
75 * defined if the trio support should not be configured in
77 #define WITHOUT_TRIO
78 #endif
79 #else /* VMS */
80 /**
81 * WITH_TRIO:
83 * defined if the trio support need to be configured in
85 #define WITH_TRIO 1
86 #endif /* VMS */
88 /**
89 * LIBXML_THREAD_ENABLED:
91 * Whether the thread support is configured in
93 #if @WITH_THREADS@
94 #if defined(_REENTRANT) || defined(__MT__) || \
95 (defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE - 0 >= 199506L))
96 #define LIBXML_THREAD_ENABLED
97 #endif
98 #endif
101 * LIBXML_THREAD_ALLOC_ENABLED:
103 * Whether the allocation hooks are per-thread
105 #if @WITH_THREAD_ALLOC@
106 #define LIBXML_THREAD_ALLOC_ENABLED
107 #endif
110 * LIBXML_TREE_ENABLED:
112 * Whether the DOM like tree manipulation API support is configured in
114 #if @WITH_TREE@
115 #define LIBXML_TREE_ENABLED
116 #endif
119 * LIBXML_OUTPUT_ENABLED:
121 * Whether the serialization/saving support is configured in
123 #if @WITH_OUTPUT@
124 #define LIBXML_OUTPUT_ENABLED
125 #endif
128 * LIBXML_PUSH_ENABLED:
130 * Whether the push parsing interfaces are configured in
132 #if @WITH_PUSH@
133 #define LIBXML_PUSH_ENABLED
134 #endif
137 * LIBXML_READER_ENABLED:
139 * Whether the xmlReader parsing interface is configured in
141 #if @WITH_READER@
142 #define LIBXML_READER_ENABLED
143 #endif
146 * LIBXML_PATTERN_ENABLED:
148 * Whether the xmlPattern node selection interface is configured in
150 #if @WITH_PATTERN@
151 #define LIBXML_PATTERN_ENABLED
152 #endif
155 * LIBXML_WRITER_ENABLED:
157 * Whether the xmlWriter saving interface is configured in
159 #if @WITH_WRITER@
160 #define LIBXML_WRITER_ENABLED
161 #endif
164 * LIBXML_SAX1_ENABLED:
166 * Whether the older SAX1 interface is configured in
168 #if @WITH_SAX1@
169 #define LIBXML_SAX1_ENABLED
170 #endif
173 * LIBXML_FTP_ENABLED:
175 * Whether the FTP support is configured in
177 #if @WITH_FTP@
178 #define LIBXML_FTP_ENABLED
179 #endif
182 * LIBXML_HTTP_ENABLED:
184 * Whether the HTTP support is configured in
186 #if @WITH_HTTP@
187 #define LIBXML_HTTP_ENABLED
188 #endif
191 * LIBXML_VALID_ENABLED:
193 * Whether the DTD validation support is configured in
195 #if @WITH_VALID@
196 #define LIBXML_VALID_ENABLED
197 #endif
200 * LIBXML_HTML_ENABLED:
202 * Whether the HTML support is configured in
204 #if @WITH_HTML@
205 #define LIBXML_HTML_ENABLED
206 #endif
209 * LIBXML_LEGACY_ENABLED:
211 * Whether the deprecated APIs are compiled in for compatibility
213 #if @WITH_LEGACY@
214 #define LIBXML_LEGACY_ENABLED
215 #endif
218 * LIBXML_C14N_ENABLED:
220 * Whether the Canonicalization support is configured in
222 #if @WITH_C14N@
223 #define LIBXML_C14N_ENABLED
224 #endif
227 * LIBXML_CATALOG_ENABLED:
229 * Whether the Catalog support is configured in
231 #if @WITH_CATALOG@
232 #define LIBXML_CATALOG_ENABLED
233 #endif
236 * LIBXML_DOCB_ENABLED:
238 * Whether the SGML Docbook support is configured in
240 #if @WITH_DOCB@
241 #define LIBXML_DOCB_ENABLED
242 #endif
245 * LIBXML_XPATH_ENABLED:
247 * Whether XPath is configured in
249 #if @WITH_XPATH@
250 #define LIBXML_XPATH_ENABLED
251 #endif
254 * LIBXML_XPTR_ENABLED:
256 * Whether XPointer is configured in
258 #if @WITH_XPTR@
259 #define LIBXML_XPTR_ENABLED
260 #endif
263 * LIBXML_XINCLUDE_ENABLED:
265 * Whether XInclude is configured in
267 #if @WITH_XINCLUDE@
268 #define LIBXML_XINCLUDE_ENABLED
269 #endif
272 * LIBXML_ICONV_ENABLED:
274 * Whether iconv support is available
276 #if @WITH_ICONV@
277 #define LIBXML_ICONV_ENABLED
278 #endif
281 * LIBXML_ICU_ENABLED:
283 * Whether icu support is available
285 #if @WITH_ICU@
286 #define LIBXML_ICU_ENABLED
287 #endif
290 * LIBXML_ISO8859X_ENABLED:
292 * Whether ISO-8859-* support is made available in case iconv is not
294 #if @WITH_ISO8859X@
295 #define LIBXML_ISO8859X_ENABLED
296 #endif
299 * LIBXML_DEBUG_ENABLED:
301 * Whether Debugging module is configured in
303 #if @WITH_DEBUG@
304 #define LIBXML_DEBUG_ENABLED
305 #endif
308 * DEBUG_MEMORY_LOCATION:
310 * Whether the memory debugging is configured in
312 #if @WITH_MEM_DEBUG@
313 #define DEBUG_MEMORY_LOCATION
314 #endif
317 * LIBXML_DEBUG_RUNTIME:
319 * Whether the runtime debugging is configured in
321 #if @WITH_RUN_DEBUG@
322 #define LIBXML_DEBUG_RUNTIME
323 #endif
326 * LIBXML_UNICODE_ENABLED:
328 * Whether the Unicode related interfaces are compiled in
330 #if @WITH_REGEXPS@
331 #define LIBXML_UNICODE_ENABLED
332 #endif
335 * LIBXML_REGEXP_ENABLED:
337 * Whether the regular expressions interfaces are compiled in
339 #if @WITH_REGEXPS@
340 #define LIBXML_REGEXP_ENABLED
341 #endif
344 * LIBXML_AUTOMATA_ENABLED:
346 * Whether the automata interfaces are compiled in
348 #if @WITH_REGEXPS@
349 #define LIBXML_AUTOMATA_ENABLED
350 #endif
353 * LIBXML_EXPR_ENABLED:
355 * Whether the formal expressions interfaces are compiled in
357 #if @WITH_SCHEMAS@
358 #define LIBXML_EXPR_ENABLED
359 #endif
362 * LIBXML_SCHEMAS_ENABLED:
364 * Whether the Schemas validation interfaces are compiled in
366 #if @WITH_SCHEMAS@
367 #define LIBXML_SCHEMAS_ENABLED
368 #endif
371 * LIBXML_SCHEMATRON_ENABLED:
373 * Whether the Schematron validation interfaces are compiled in
375 #if @WITH_SCHEMATRON@
376 #define LIBXML_SCHEMATRON_ENABLED
377 #endif
380 * LIBXML_MODULES_ENABLED:
382 * Whether the module interfaces are compiled in
384 #if @WITH_MODULES@
385 #define LIBXML_MODULES_ENABLED
387 * LIBXML_MODULE_EXTENSION:
389 * the string suffix used by dynamic modules (usually shared libraries)
391 #define LIBXML_MODULE_EXTENSION "@MODULE_EXTENSION@"
392 #endif
395 * LIBXML_ZLIB_ENABLED:
397 * Whether the Zlib support is compiled in
399 #if @WITH_ZLIB@
400 #define LIBXML_ZLIB_ENABLED
401 #endif
404 * LIBXML_LZMA_ENABLED:
406 * Whether the Lzma support is compiled in
408 #if @WITH_LZMA@
409 #define LIBXML_LZMA_ENABLED
410 #endif
412 #ifdef __GNUC__
413 #ifdef HAVE_ANSIDECL_H
414 #include <ansidecl.h>
415 #endif
418 * ATTRIBUTE_UNUSED:
420 * Macro used to signal to GCC unused function parameters
423 #ifndef ATTRIBUTE_UNUSED
424 # if ((__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 7)))
425 # define ATTRIBUTE_UNUSED __attribute__((unused))
426 # else
427 # define ATTRIBUTE_UNUSED
428 # endif
429 #endif
432 * LIBXML_ATTR_ALLOC_SIZE:
434 * Macro used to indicate to GCC this is an allocator function
437 #ifndef LIBXML_ATTR_ALLOC_SIZE
438 # if ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)))
439 # define LIBXML_ATTR_ALLOC_SIZE(x) __attribute__((alloc_size(x)))
440 # else
441 # define LIBXML_ATTR_ALLOC_SIZE(x)
442 # endif
443 #else
444 # define LIBXML_ATTR_ALLOC_SIZE(x)
445 #endif
448 * LIBXML_ATTR_FORMAT:
450 * Macro used to indicate to GCC the parameter are printf like
453 #ifndef LIBXML_ATTR_FORMAT
454 # if ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)))
455 # define LIBXML_ATTR_FORMAT(fmt,args) __attribute__((__format__(__printf__,fmt,args)))
456 # else
457 # define LIBXML_ATTR_FORMAT(fmt,args)
458 # endif
459 #else
460 # define LIBXML_ATTR_FORMAT(fmt,args)
461 #endif
463 #else /* ! __GNUC__ */
465 * ATTRIBUTE_UNUSED:
467 * Macro used to signal to GCC unused function parameters
469 #define ATTRIBUTE_UNUSED
471 * LIBXML_ATTR_ALLOC_SIZE:
473 * Macro used to indicate to GCC this is an allocator function
475 #define LIBXML_ATTR_ALLOC_SIZE(x)
477 * LIBXML_ATTR_FORMAT:
479 * Macro used to indicate to GCC the parameter are printf like
481 #define LIBXML_ATTR_FORMAT(fmt,args)
482 #endif /* __GNUC__ */
484 #ifdef __cplusplus
486 #endif /* __cplusplus */
487 #endif