OLD | NEW |
1 /* | 1 /* |
2 * exsltconfig.h: compile-time version informations for the EXSLT library | 2 * exsltconfig.h: compile-time version informations for the EXSLT library |
3 * | 3 * |
4 * See Copyright for the status of this software. | 4 * See Copyright for the status of this software. |
5 * | 5 * |
6 * daniel@veillard.com | 6 * daniel@veillard.com |
7 */ | 7 */ |
8 | 8 |
9 #ifndef __XML_EXSLTCONFIG_H__ | 9 #ifndef __XML_EXSLTCONFIG_H__ |
10 #define __XML_EXSLTCONFIG_H__ | 10 #define __XML_EXSLTCONFIG_H__ |
11 | 11 |
12 #ifdef __cplusplus | 12 #ifdef __cplusplus |
13 extern "C" { | 13 extern "C" { |
14 #endif | 14 #endif |
15 | 15 |
16 /** | 16 /** |
17 * LIBEXSLT_DOTTED_VERSION: | 17 * LIBEXSLT_DOTTED_VERSION: |
18 * | 18 * |
19 * the version string like "1.2.3" | 19 * the version string like "1.2.3" |
20 */ | 20 */ |
21 #define LIBEXSLT_DOTTED_VERSION "0.8.13" | 21 #define LIBEXSLT_DOTTED_VERSION "1.1.26" |
22 | 22 |
23 /** | 23 /** |
24 * LIBEXSLT_VERSION: | 24 * LIBEXSLT_VERSION: |
25 * | 25 * |
26 * the version number: 1.2.3 value is 10203 | 26 * the version number: 1.2.3 value is 10203 |
27 */ | 27 */ |
28 #define LIBEXSLT_VERSION 813 | 28 #define LIBEXSLT_VERSION 815 |
29 | 29 |
30 /** | 30 /** |
31 * LIBEXSLT_VERSION_STRING: | 31 * LIBEXSLT_VERSION_STRING: |
32 * | 32 * |
33 * the version number string, 1.2.3 value is "10203" | 33 * the version number string, 1.2.3 value is "10203" |
34 */ | 34 */ |
35 #define LIBEXSLT_VERSION_STRING "813" | 35 #define LIBEXSLT_VERSION_STRING "815" |
36 | 36 |
37 /** | 37 /** |
38 * LIBEXSLT_VERSION_EXTRA: | 38 * LIBEXSLT_VERSION_EXTRA: |
39 * | 39 * |
40 * extra version information, used to show a CVS compilation | 40 * extra version information, used to show a CVS compilation |
41 */ | 41 */ |
42 #define LIBEXSLT_VERSION_EXTRA "" | 42 #define LIBEXSLT_VERSION_EXTRA "" |
43 | 43 |
44 /** | 44 /** |
45 * WITH_CRYPTO: | 45 * WITH_CRYPTO: |
(...skipping 18 matching lines...) Expand all Loading... |
64 #endif | 64 #endif |
65 #else | 65 #else |
66 #define ATTRIBUTE_UNUSED | 66 #define ATTRIBUTE_UNUSED |
67 #endif | 67 #endif |
68 | 68 |
69 #ifdef __cplusplus | 69 #ifdef __cplusplus |
70 } | 70 } |
71 #endif | 71 #endif |
72 | 72 |
73 #endif /* __XML_EXSLTCONFIG_H__ */ | 73 #endif /* __XML_EXSLTCONFIG_H__ */ |
OLD | NEW |