| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Summary: compile-time version informations | 2 * Summary: compile-time version informations |
| 3 * Description: compile-time version informations for the XML library | 3 * Description: compile-time version informations for the XML library |
| 4 * | 4 * |
| 5 * Copy: See Copyright for the status of this software. | 5 * Copy: See Copyright for the status of this software. |
| 6 * | 6 * |
| 7 * Author: Daniel Veillard | 7 * Author: Daniel Veillard |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 #ifndef __XML_VERSION_H__ | 10 #ifndef __XML_VERSION_H__ |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 */ | 257 */ |
| 258 #if 1 | 258 #if 1 |
| 259 #define LIBXML_XPTR_ENABLED | 259 #define LIBXML_XPTR_ENABLED |
| 260 #endif | 260 #endif |
| 261 | 261 |
| 262 /** | 262 /** |
| 263 * LIBXML_XINCLUDE_ENABLED: | 263 * LIBXML_XINCLUDE_ENABLED: |
| 264 * | 264 * |
| 265 * Whether XInclude is configured in | 265 * Whether XInclude is configured in |
| 266 */ | 266 */ |
| 267 #if 1 | 267 #if 0 |
| 268 #define LIBXML_XINCLUDE_ENABLED | 268 #define LIBXML_XINCLUDE_ENABLED |
| 269 #endif | 269 #endif |
| 270 | 270 |
| 271 /** | 271 /** |
| 272 * LIBXML_ICONV_ENABLED: | 272 * LIBXML_ICONV_ENABLED: |
| 273 * | 273 * |
| 274 * Whether iconv support is available | 274 * Whether iconv support is available |
| 275 */ | 275 */ |
| 276 #if 0 | 276 #if 0 |
| 277 #define LIBXML_ICONV_ENABLED | 277 #define LIBXML_ICONV_ENABLED |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 */ | 356 */ |
| 357 #if 1 | 357 #if 1 |
| 358 #define LIBXML_EXPR_ENABLED | 358 #define LIBXML_EXPR_ENABLED |
| 359 #endif | 359 #endif |
| 360 | 360 |
| 361 /** | 361 /** |
| 362 * LIBXML_SCHEMAS_ENABLED: | 362 * LIBXML_SCHEMAS_ENABLED: |
| 363 * | 363 * |
| 364 * Whether the Schemas validation interfaces are compiled in | 364 * Whether the Schemas validation interfaces are compiled in |
| 365 */ | 365 */ |
| 366 #if 1 | 366 #if 0 |
| 367 #define LIBXML_SCHEMAS_ENABLED | 367 #define LIBXML_SCHEMAS_ENABLED |
| 368 #endif | 368 #endif |
| 369 | 369 |
| 370 /** | 370 /** |
| 371 * LIBXML_SCHEMATRON_ENABLED: | 371 * LIBXML_SCHEMATRON_ENABLED: |
| 372 * | 372 * |
| 373 * Whether the Schematron validation interfaces are compiled in | 373 * Whether the Schematron validation interfaces are compiled in |
| 374 */ | 374 */ |
| 375 #if 1 | 375 #if 1 |
| 376 #define LIBXML_SCHEMATRON_ENABLED | 376 #define LIBXML_SCHEMATRON_ENABLED |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 */ | 480 */ |
| 481 #define LIBXML_ATTR_FORMAT(fmt,args) | 481 #define LIBXML_ATTR_FORMAT(fmt,args) |
| 482 #endif /* __GNUC__ */ | 482 #endif /* __GNUC__ */ |
| 483 | 483 |
| 484 #ifdef __cplusplus | 484 #ifdef __cplusplus |
| 485 } | 485 } |
| 486 #endif /* __cplusplus */ | 486 #endif /* __cplusplus */ |
| 487 #endif | 487 #endif |
| 488 | 488 |
| 489 | 489 |
| OLD | NEW |