blob: 5a62c27bc376cb15905a33562cd1f093a9340936 [file] [log] [blame]
Daniel Veillardb9df4042000-04-05 14:23:16 +00001/*
2 * xmlversion.h : compile-time version informations for the XML parser.
3 *
4 * See Copyright for the status of this software.
5 *
6 * Daniel.Veillard@w3.org
7 */
8
9#ifndef __XML_VERSION_H__
10#define __XML_VERSION_H__
11
12#define LIBXML_VERSION @LIBXML_VERSION_NUMBER@
13#define LIBXML_VERSION_STRING "@LIBXML_VERSION_NUMBER@"
14
15/*
16 * Whether the FTP support is configured in
17 */
18#if @WITH_FTP@
19#define LIBXML_FTP_ENABLED
20#else
21#define LIBXML_FTP_DISABLED
22#endif
23
24/*
25 * Whether the HTTP support is configured in
26 */
27#if @WITH_HTTP@
28#define LIBXML_HTTP_ENABLED
29#else
30#define LIBXML_HTTP_DISABLED
31#endif
32
33/*
34 * Whether the HTML support is configured in
35 */
36#if @WITH_HTML@
37#define LIBXML_HTML_ENABLED
38#else
39#define LIBXML_HTML_DISABLED
40#endif
41
42/*
43 * Whether XPath is configured in
44 */
45#if @WITH_XPATH@
46#define LIBXML_XPATH_ENABLED
47#else
48#define LIBXML_XPATH_DISABLED
49#endif
50
51/*
52 * Whether Debugging module is configured in
53 */
54#if @WITH_DEBUG@
55#define LIBXML_DEBUG_ENABLED
56#else
57#define LIBXML_DEBUG_DISABLED
58#endif
59
60/*
61 * Whether the memory debugging is configured in
62 */
63#if @WITH_MEM_DEBUG@
64#define DEBUG_MEMORY_LOCATION
65#endif
66
67#endif
68
69