| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 */ | 284 */ |
| 285 #if 1 | 285 #if 1 |
| 286 #define LIBXML_ICU_ENABLED | 286 #define LIBXML_ICU_ENABLED |
| 287 #endif | 287 #endif |
| 288 | 288 |
| 289 /** | 289 /** |
| 290 * LIBXML_ISO8859X_ENABLED: | 290 * LIBXML_ISO8859X_ENABLED: |
| 291 * | 291 * |
| 292 * Whether ISO-8859-* support is made available in case iconv is not | 292 * Whether ISO-8859-* support is made available in case iconv is not |
| 293 */ | 293 */ |
| 294 #if 1 | 294 #if 0 |
| 295 #define LIBXML_ISO8859X_ENABLED | 295 #define LIBXML_ISO8859X_ENABLED |
| 296 #endif | 296 #endif |
| 297 | 297 |
| 298 /** | 298 /** |
| 299 * LIBXML_DEBUG_ENABLED: | 299 * LIBXML_DEBUG_ENABLED: |
| 300 * | 300 * |
| 301 * Whether Debugging module is configured in | 301 * Whether Debugging module is configured in |
| 302 */ | 302 */ |
| 303 #if 0 | 303 #if 0 |
| 304 #define LIBXML_DEBUG_ENABLED | 304 #define LIBXML_DEBUG_ENABLED |
| (...skipping 15 matching lines...) Expand all Loading... |
| 320 */ | 320 */ |
| 321 #if 0 | 321 #if 0 |
| 322 #define LIBXML_DEBUG_RUNTIME | 322 #define LIBXML_DEBUG_RUNTIME |
| 323 #endif | 323 #endif |
| 324 | 324 |
| 325 /** | 325 /** |
| 326 * LIBXML_UNICODE_ENABLED: | 326 * LIBXML_UNICODE_ENABLED: |
| 327 * | 327 * |
| 328 * Whether the Unicode related interfaces are compiled in | 328 * Whether the Unicode related interfaces are compiled in |
| 329 */ | 329 */ |
| 330 #if 1 | 330 #if 0 |
| 331 #define LIBXML_UNICODE_ENABLED | 331 #define LIBXML_UNICODE_ENABLED |
| 332 #endif | 332 #endif |
| 333 | 333 |
| 334 /** | 334 /** |
| 335 * LIBXML_REGEXP_ENABLED: | 335 * LIBXML_REGEXP_ENABLED: |
| 336 * | 336 * |
| 337 * Whether the regular expressions interfaces are compiled in | 337 * Whether the regular expressions interfaces are compiled in |
| 338 */ | 338 */ |
| 339 #if 0 | 339 #if 0 |
| 340 #define LIBXML_REGEXP_ENABLED | 340 #define LIBXML_REGEXP_ENABLED |
| (...skipping 139 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 |