Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wine-mirror
GitHub Repository: wine-mirror/wine
Path: blob/master/libs/xslt/libxslt/xsltconfig.h
4394 views
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.
5
*
6
* Copy: See Copyright for the status of this software.
7
*
8
* Author: Daniel Veillard
9
*/
10
11
#ifndef __XML_XSLTCONFIG_H__
12
#define __XML_XSLTCONFIG_H__
13
14
#ifdef __cplusplus
15
extern "C" {
16
#endif
17
18
/**
19
* LIBXSLT_DOTTED_VERSION:
20
*
21
* the version string like "1.2.3"
22
*/
23
#define LIBXSLT_DOTTED_VERSION "1.1.43"
24
25
/**
26
* LIBXSLT_VERSION:
27
*
28
* the version number: 1.2.3 value is 10203
29
*/
30
#define LIBXSLT_VERSION 10143
31
32
/**
33
* LIBXSLT_VERSION_STRING:
34
*
35
* the version number string, 1.2.3 value is "10203"
36
*/
37
#define LIBXSLT_VERSION_STRING "10143"
38
39
/**
40
* LIBXSLT_VERSION_EXTRA:
41
*
42
* extra version information, used to show a Git commit description
43
*/
44
#define LIBXSLT_VERSION_EXTRA ""
45
46
/**
47
* WITH_XSLT_DEBUG:
48
*
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
52
*/
53
#if 0
54
#define WITH_XSLT_DEBUG
55
#endif
56
57
/**
58
* XSLT_NEED_TRIO:
59
*
60
* should be activated if the existing libc library lacks some of the
61
* string formatting function, in that case reuse the Trio ones already
62
* compiled in the libxml2 library.
63
*/
64
65
#if 0
66
#define XSLT_NEED_TRIO
67
#endif
68
#ifdef __VMS
69
#define HAVE_SYS_STAT_H 1
70
#ifndef XSLT_NEED_TRIO
71
#define XSLT_NEED_TRIO
72
#endif
73
#endif
74
75
#ifdef XSLT_NEED_TRIO
76
#define TRIO_REPLACE_STDIO
77
#endif
78
79
/**
80
* WITH_XSLT_DEBUGGER:
81
*
82
* Activate the compilation of the debugger support. Speed penalty
83
* is insignifiant.
84
* On by default unless --without-debugger is passed to configure
85
*/
86
#if 0
87
#ifndef WITH_DEBUGGER
88
#define WITH_DEBUGGER
89
#endif
90
#endif
91
92
/**
93
* WITH_PROFILER:
94
*
95
* Activate the compilation of the profiler. Speed penalty
96
* is insignifiant.
97
* On by default unless --without-profiler is passed to configure
98
*/
99
#if 1
100
#ifndef WITH_PROFILER
101
#define WITH_PROFILER
102
#endif
103
#endif
104
105
/**
106
* WITH_MODULES:
107
*
108
* Whether module support is configured into libxslt
109
* Note: no default module path for win32 platforms
110
*/
111
#if 0
112
#ifndef WITH_MODULES
113
#define WITH_MODULES
114
#endif
115
#define LIBXSLT_DEFAULT_PLUGINS_PATH() ""
116
#endif
117
118
/**
119
* LIBXSLT_ATTR_FORMAT:
120
*
121
* This macro is used to indicate to GCC the parameters are printf-like
122
*/
123
#ifdef __GNUC__
124
#define LIBXSLT_ATTR_FORMAT(fmt,args) __attribute__((__format__(__printf__,fmt,args)))
125
#else
126
#define LIBXSLT_ATTR_FORMAT(fmt,args)
127
#endif
128
129
/**
130
* LIBXSLT_PUBLIC:
131
*
132
* This macro is used to declare PUBLIC variables for Cygwin and for MSC on Windows
133
*/
134
#if !defined LIBXSLT_PUBLIC
135
#if (defined(__CYGWIN__) || defined _MSC_VER) && !defined IN_LIBXSLT && !defined LIBXSLT_STATIC
136
#define LIBXSLT_PUBLIC __declspec(dllimport)
137
#else
138
#define LIBXSLT_PUBLIC
139
#endif
140
#endif
141
142
#ifdef __cplusplus
143
}
144
#endif
145
146
#endif /* __XML_XSLTCONFIG_H__ */
147
148