xslt: Import upstream release 1.1.38.
[wine.git] / libs / xslt / libxslt / xsltconfig.h
blobf524fbfe1b1da9425bd1ebf78f505969fc696e5f
1 /*
2 * Summary: compile-time version information for the XSLT engine
3 * Description: compile-time version information for the XSLT engine
4 * this module is autogenerated.
6 * Copy: See Copyright for the status of this software.
8 * Author: Daniel Veillard
9 */
11 #ifndef __XML_XSLTCONFIG_H__
12 #define __XML_XSLTCONFIG_H__
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
18 /**
19 * LIBXSLT_DOTTED_VERSION:
21 * the version string like "1.2.3"
23 #define LIBXSLT_DOTTED_VERSION "1.1.38"
25 /**
26 * LIBXSLT_VERSION:
28 * the version number: 1.2.3 value is 10203
30 #define LIBXSLT_VERSION 10138
32 /**
33 * LIBXSLT_VERSION_STRING:
35 * the version number string, 1.2.3 value is "10203"
37 #define LIBXSLT_VERSION_STRING "10138"
39 /**
40 * LIBXSLT_VERSION_EXTRA:
42 * extra version information, used to show a Git commit description
44 #define LIBXSLT_VERSION_EXTRA ""
46 /**
47 * WITH_XSLT_DEBUG:
49 * Activate the compilation of the debug reporting. Speed penalty
50 * is insignifiant and being able to run xsltpoc -v is useful. On
51 * by default unless --without-debug is passed to configure
53 #if 0
54 #define WITH_XSLT_DEBUG
55 #endif
57 #if 0
58 /**
59 * DEBUG_MEMORY:
61 * should be activated only when debugging libxslt. It replaces the
62 * allocator with a collect and debug shell to the libc allocator.
63 * Use configure --with-mem-debug to activate it on both library
65 #define DEBUG_MEMORY
67 /**
68 * DEBUG_MEMORY_LOCATION:
70 * should be activated only when debugging libxslt.
71 * DEBUG_MEMORY_LOCATION should be activated only when libxml has
72 * been configured with --with-debug-mem too
74 #define DEBUG_MEMORY_LOCATION
75 #endif
77 /**
78 * XSLT_NEED_TRIO:
80 * should be activated if the existing libc library lacks some of the
81 * string formatting function, in that case reuse the Trio ones already
82 * compiled in the libxml2 library.
85 #if 0
86 #define XSLT_NEED_TRIO
87 #endif
88 #ifdef __VMS
89 #define HAVE_SYS_STAT_H 1
90 #ifndef XSLT_NEED_TRIO
91 #define XSLT_NEED_TRIO
92 #endif
93 #endif
95 #ifdef XSLT_NEED_TRIO
96 #define TRIO_REPLACE_STDIO
97 #endif
99 /**
100 * WITH_XSLT_DEBUGGER:
102 * Activate the compilation of the debugger support. Speed penalty
103 * is insignifiant.
104 * On by default unless --without-debugger is passed to configure
106 #if 0
107 #ifndef WITH_DEBUGGER
108 #define WITH_DEBUGGER
109 #endif
110 #endif
113 * WITH_PROFILER:
115 * Activate the compilation of the profiler. Speed penalty
116 * is insignifiant.
117 * On by default unless --without-profiler is passed to configure
119 #if 0
120 #ifndef WITH_PROFILER
121 #define WITH_PROFILER
122 #endif
123 #endif
126 * WITH_MODULES:
128 * Whether module support is configured into libxslt
129 * Note: no default module path for win32 platforms
131 #if 0
132 #ifndef WITH_MODULES
133 #define WITH_MODULES
134 #endif
135 #define LIBXSLT_DEFAULT_PLUGINS_PATH() "/usr/local/lib/libxslt-plugins"
136 #endif
139 * ATTRIBUTE_UNUSED:
141 * This macro is used to flag unused function parameters to GCC
143 #ifdef __GNUC__
144 #ifndef ATTRIBUTE_UNUSED
145 #define ATTRIBUTE_UNUSED __attribute__((unused))
146 #endif
147 #else
148 #define ATTRIBUTE_UNUSED
149 #endif
152 * LIBXSLT_ATTR_FORMAT:
154 * This macro is used to indicate to GCC the parameters are printf-like
156 #ifdef __GNUC__
157 #define LIBXSLT_ATTR_FORMAT(fmt,args) __attribute__((__format__(__printf__,fmt,args)))
158 #else
159 #define LIBXSLT_ATTR_FORMAT(fmt,args)
160 #endif
163 * LIBXSLT_PUBLIC:
165 * This macro is used to declare PUBLIC variables for Cygwin and for MSC on Windows
167 #if !defined LIBXSLT_PUBLIC
168 #if (defined(__CYGWIN__) || defined _MSC_VER) && !defined IN_LIBXSLT && !defined LIBXSLT_STATIC
169 #define LIBXSLT_PUBLIC __declspec(dllimport)
170 #else
171 #define LIBXSLT_PUBLIC
172 #endif
173 #endif
175 #ifdef __cplusplus
177 #endif
179 #endif /* __XML_XSLTCONFIG_H__ */