Skip to content

Commit 9ea54da

Browse files
committed
Changes to libxml.
1 parent f768266 commit 9ea54da

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

include/libxml/xmlexports.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#if defined(_WIN32) || defined(__CYGWIN__)
1212
/** DOC_DISABLE */
1313

14-
#ifdef LIBXML_STATIC
14+
#if defined(LIBXML_STATIC) || defined(_LIB)
1515
#define XMLPUBLIC
1616
#elif defined(IN_LIBXML)
1717
#define XMLPUBLIC __declspec(dllexport)

include/libxml/xmlversion.h

+18-18
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
108108
*
109109
* Whether the DOM like tree manipulation API support is configured in
110110
*/
111-
#if 1
111+
#if 0
112112
#define LIBXML_TREE_ENABLED
113113
#endif
114114

@@ -117,7 +117,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
117117
*
118118
* Whether the serialization/saving support is configured in
119119
*/
120-
#if 1
120+
#if 0
121121
#define LIBXML_OUTPUT_ENABLED
122122
#endif
123123

@@ -135,7 +135,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
135135
*
136136
* Whether the xmlReader parsing interface is configured in
137137
*/
138-
#if 1
138+
#if 0
139139
#define LIBXML_READER_ENABLED
140140
#endif
141141

@@ -144,7 +144,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
144144
*
145145
* Whether the xmlPattern node selection interface is configured in
146146
*/
147-
#if 1
147+
#if 0
148148
#define LIBXML_PATTERN_ENABLED
149149
#endif
150150

@@ -153,7 +153,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
153153
*
154154
* Whether the xmlWriter saving interface is configured in
155155
*/
156-
#if 1
156+
#if 0
157157
#define LIBXML_WRITER_ENABLED
158158
#endif
159159

@@ -180,7 +180,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
180180
*
181181
* Whether the HTTP support is configured in
182182
*/
183-
#if 1
183+
#if 0
184184
#define LIBXML_HTTP_ENABLED
185185
#endif
186186

@@ -198,7 +198,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
198198
*
199199
* Whether the HTML support is configured in
200200
*/
201-
#if 1
201+
#if 0
202202
#define LIBXML_HTML_ENABLED
203203
#endif
204204

@@ -216,7 +216,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
216216
*
217217
* Whether the Canonicalization support is configured in
218218
*/
219-
#if 1
219+
#if 0
220220
#define LIBXML_C14N_ENABLED
221221
#endif
222222

@@ -225,7 +225,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
225225
*
226226
* Whether the Catalog support is configured in
227227
*/
228-
#if 1
228+
#if 0
229229
#define LIBXML_CATALOG_ENABLED
230230
#endif
231231

@@ -234,7 +234,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
234234
*
235235
* Whether XPath is configured in
236236
*/
237-
#if 1
237+
#if 0
238238
#define LIBXML_XPATH_ENABLED
239239
#endif
240240

@@ -243,7 +243,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
243243
*
244244
* Whether XPointer is configured in
245245
*/
246-
#if 1
246+
#if 0
247247
#define LIBXML_XPTR_ENABLED
248248
#endif
249249

@@ -261,7 +261,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
261261
*
262262
* Whether XInclude is configured in
263263
*/
264-
#if 1
264+
#if 0
265265
#define LIBXML_XINCLUDE_ENABLED
266266
#endif
267267

@@ -297,7 +297,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
297297
*
298298
* Whether Debugging module is configured in
299299
*/
300-
#if 1
300+
#if 0
301301
#define LIBXML_DEBUG_ENABLED
302302
#endif
303303

@@ -333,7 +333,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
333333
*
334334
* Whether the regular expressions interfaces are compiled in
335335
*/
336-
#if 1
336+
#if 0
337337
#define LIBXML_REGEXP_ENABLED
338338
#endif
339339

@@ -342,7 +342,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
342342
*
343343
* Whether the automata interfaces are compiled in
344344
*/
345-
#if 1
345+
#if 0
346346
#define LIBXML_AUTOMATA_ENABLED
347347
#endif
348348

@@ -362,7 +362,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
362362
*
363363
* Whether the Schemas validation interfaces are compiled in
364364
*/
365-
#if 1
365+
#if 0
366366
#define LIBXML_SCHEMAS_ENABLED
367367
#endif
368368

@@ -371,7 +371,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
371371
*
372372
* Whether the Schematron validation interfaces are compiled in
373373
*/
374-
#if 1
374+
#if 0
375375
#define LIBXML_SCHEMATRON_ENABLED
376376
#endif
377377

@@ -380,7 +380,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
380380
*
381381
* Whether the module interfaces are compiled in
382382
*/
383-
#if 1
383+
#if 0
384384
#define LIBXML_MODULES_ENABLED
385385
/**
386386
* LIBXML_MODULE_EXTENSION:

0 commit comments

Comments
 (0)