10
10
#ifndef __XML_VERSION_H__
11
11
#define __XML_VERSION_H__
12
12
13
+ /* ImageMagick defines _DLL for DLL builds */
14
+ #if !defined(_DLL )
15
+ # if !defined(LIBXML_STATIC )
16
+ # define LIBXML_STATIC 1
17
+ # endif
18
+ #endif
19
+
13
20
#include <libxml/xmlexports.h>
14
21
15
22
#ifdef __cplusplus
@@ -111,7 +118,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
111
118
*
112
119
* Whether the DOM like tree manipulation API support is configured in
113
120
*/
114
- #if 1
121
+ #if 0
115
122
#define LIBXML_TREE_ENABLED
116
123
#endif
117
124
@@ -120,7 +127,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
120
127
*
121
128
* Whether the serialization/saving support is configured in
122
129
*/
123
- #if 1
130
+ #if 0
124
131
#define LIBXML_OUTPUT_ENABLED
125
132
#endif
126
133
@@ -138,7 +145,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
138
145
*
139
146
* Whether the xmlReader parsing interface is configured in
140
147
*/
141
- #if 1
148
+ #if 0
142
149
#define LIBXML_READER_ENABLED
143
150
#endif
144
151
@@ -147,7 +154,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
147
154
*
148
155
* Whether the xmlPattern node selection interface is configured in
149
156
*/
150
- #if 1
157
+ #if 0
151
158
#define LIBXML_PATTERN_ENABLED
152
159
#endif
153
160
@@ -156,7 +163,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
156
163
*
157
164
* Whether the xmlWriter saving interface is configured in
158
165
*/
159
- #if 1
166
+ #if 0
160
167
#define LIBXML_WRITER_ENABLED
161
168
#endif
162
169
@@ -174,7 +181,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
174
181
*
175
182
* Whether the FTP support is configured in
176
183
*/
177
- #if 1
184
+ #if 0
178
185
#define LIBXML_FTP_ENABLED
179
186
#endif
180
187
@@ -183,7 +190,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
183
190
*
184
191
* Whether the HTTP support is configured in
185
192
*/
186
- #if 1
193
+ #if 0
187
194
#define LIBXML_HTTP_ENABLED
188
195
#endif
189
196
@@ -192,7 +199,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
192
199
*
193
200
* Whether the DTD validation support is configured in
194
201
*/
195
- #if 1
202
+ #if 0
196
203
#define LIBXML_VALID_ENABLED
197
204
#endif
198
205
@@ -201,7 +208,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
201
208
*
202
209
* Whether the HTML support is configured in
203
210
*/
204
- #if 1
211
+ #if 0
205
212
#define LIBXML_HTML_ENABLED
206
213
#endif
207
214
@@ -210,7 +217,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
210
217
*
211
218
* Whether the deprecated APIs are compiled in for compatibility
212
219
*/
213
- #if 1
220
+ #if 0
214
221
#define LIBXML_LEGACY_ENABLED
215
222
#endif
216
223
@@ -219,7 +226,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
219
226
*
220
227
* Whether the Canonicalization support is configured in
221
228
*/
222
- #if 1
229
+ #if 0
223
230
#define LIBXML_C14N_ENABLED
224
231
#endif
225
232
@@ -228,7 +235,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
228
235
*
229
236
* Whether the Catalog support is configured in
230
237
*/
231
- #if 1
238
+ #if 0
232
239
#define LIBXML_CATALOG_ENABLED
233
240
#endif
234
241
@@ -237,7 +244,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
237
244
*
238
245
* Whether the SGML Docbook support is configured in
239
246
*/
240
- #if 1
247
+ #if 0
241
248
#define LIBXML_DOCB_ENABLED
242
249
#endif
243
250
@@ -246,7 +253,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
246
253
*
247
254
* Whether XPath is configured in
248
255
*/
249
- #if 1
256
+ #if 0
250
257
#define LIBXML_XPATH_ENABLED
251
258
#endif
252
259
@@ -255,7 +262,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
255
262
*
256
263
* Whether XPointer is configured in
257
264
*/
258
- #if 1
265
+ #if 0
259
266
#define LIBXML_XPTR_ENABLED
260
267
#endif
261
268
@@ -264,7 +271,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
264
271
*
265
272
* Whether XInclude is configured in
266
273
*/
267
- #if 1
274
+ #if 0
268
275
#define LIBXML_XINCLUDE_ENABLED
269
276
#endif
270
277
@@ -273,7 +280,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
273
280
*
274
281
* Whether iconv support is available
275
282
*/
276
- #if 1
283
+ #if 0
277
284
#define LIBXML_ICONV_ENABLED
278
285
#endif
279
286
@@ -291,7 +298,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
291
298
*
292
299
* Whether ISO-8859-* support is made available in case iconv is not
293
300
*/
294
- #if 1
301
+ #if 0
295
302
#define LIBXML_ISO8859X_ENABLED
296
303
#endif
297
304
@@ -300,7 +307,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
300
307
*
301
308
* Whether Debugging module is configured in
302
309
*/
303
- #if 1
310
+ #if 0
304
311
#define LIBXML_DEBUG_ENABLED
305
312
#endif
306
313
@@ -327,7 +334,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
327
334
*
328
335
* Whether the Unicode related interfaces are compiled in
329
336
*/
330
- #if 1
337
+ #if 0
331
338
#define LIBXML_UNICODE_ENABLED
332
339
#endif
333
340
@@ -336,7 +343,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
336
343
*
337
344
* Whether the regular expressions interfaces are compiled in
338
345
*/
339
- #if 1
346
+ #if 0
340
347
#define LIBXML_REGEXP_ENABLED
341
348
#endif
342
349
@@ -345,7 +352,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
345
352
*
346
353
* Whether the automata interfaces are compiled in
347
354
*/
348
- #if 1
355
+ #if 0
349
356
#define LIBXML_AUTOMATA_ENABLED
350
357
#endif
351
358
@@ -354,7 +361,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
354
361
*
355
362
* Whether the formal expressions interfaces are compiled in
356
363
*/
357
- #if 1
364
+ #if 0
358
365
#define LIBXML_EXPR_ENABLED
359
366
#endif
360
367
@@ -363,7 +370,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
363
370
*
364
371
* Whether the Schemas validation interfaces are compiled in
365
372
*/
366
- #if 1
373
+ #if 0
367
374
#define LIBXML_SCHEMAS_ENABLED
368
375
#endif
369
376
@@ -372,7 +379,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
372
379
*
373
380
* Whether the Schematron validation interfaces are compiled in
374
381
*/
375
- #if 1
382
+ #if 0
376
383
#define LIBXML_SCHEMATRON_ENABLED
377
384
#endif
378
385
@@ -381,7 +388,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
381
388
*
382
389
* Whether the module interfaces are compiled in
383
390
*/
384
- #if 1
391
+ #if 0
385
392
#define LIBXML_MODULES_ENABLED
386
393
/**
387
394
* LIBXML_MODULE_EXTENSION:
@@ -396,7 +403,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
396
403
*
397
404
* Whether the Zlib support is compiled in
398
405
*/
399
- #if 1
406
+ #if 0
400
407
#define LIBXML_ZLIB_ENABLED
401
408
#endif
402
409
@@ -405,7 +412,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
405
412
*
406
413
* Whether the Lzma support is compiled in
407
414
*/
408
- #if 1
415
+ #if 0
409
416
#define LIBXML_LZMA_ENABLED
410
417
#endif
411
418
0 commit comments