| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 */ | 185 */ |
| 186 #if 0 | 186 #if 0 |
| 187 #define LIBXML_HTTP_ENABLED | 187 #define LIBXML_HTTP_ENABLED |
| 188 #endif | 188 #endif |
| 189 | 189 |
| 190 /** | 190 /** |
| 191 * LIBXML_VALID_ENABLED: | 191 * LIBXML_VALID_ENABLED: |
| 192 * | 192 * |
| 193 * Whether the DTD validation support is configured in | 193 * Whether the DTD validation support is configured in |
| 194 */ | 194 */ |
| 195 #if 1 | 195 #if 0 |
| 196 #define LIBXML_VALID_ENABLED | 196 #define LIBXML_VALID_ENABLED |
| 197 #endif | 197 #endif |
| 198 | 198 |
| 199 /** | 199 /** |
| 200 * LIBXML_HTML_ENABLED: | 200 * LIBXML_HTML_ENABLED: |
| 201 * | 201 * |
| 202 * Whether the HTML support is configured in | 202 * Whether the HTML support is configured in |
| 203 */ | 203 */ |
| 204 #if 1 | 204 #if 1 |
| 205 #define LIBXML_HTML_ENABLED | 205 #define LIBXML_HTML_ENABLED |
| (...skipping 274 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 |