| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libxml.h: internal header only used during the compilation of libxml | 2 * libxml.h: internal header only used during the compilation of libxml |
| 3 * | 3 * |
| 4 * See COPYRIGHT for the status of this software | 4 * See COPYRIGHT for the status of this software |
| 5 * | 5 * |
| 6 * Author: breese@users.sourceforge.net | 6 * Author: breese@users.sourceforge.net |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 #ifndef __XML_LIBXML_H__ | 9 #ifndef __XML_LIBXML_H__ |
| 10 #define __XML_LIBXML_H__ | 10 #define __XML_LIBXML_H__ |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 #ifdef __GNUC__ | 83 #ifdef __GNUC__ |
| 84 #ifdef PIC | 84 #ifdef PIC |
| 85 #ifdef linux | 85 #ifdef linux |
| 86 #if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || (__GNUC__ > 3) | 86 #if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || (__GNUC__ > 3) |
| 87 #include "elfgcchack.h" | 87 #include "elfgcchack.h" |
| 88 #endif | 88 #endif |
| 89 #endif | 89 #endif |
| 90 #endif | 90 #endif |
| 91 #endif | 91 #endif |
| 92 #endif | 92 #endif |
| 93 #ifndef PIC |
| 94 # define LIBXML_STATIC |
| 95 #endif |
| 93 #endif /* ! __XML_LIBXML_H__ */ | 96 #endif /* ! __XML_LIBXML_H__ */ |
| OLD | NEW |