OLD | NEW |
(Empty) | |
| 1 /* Template filled out by CMake */ |
| 2 |
| 3 /* |
| 4 * *** THIS HEADER IS INCLUDED BY PdfCompilerCompat.h *** |
| 5 * *** DO NOT SUBNIT *** |
| 6 * *** DO NOT INCLUDE DIRECTLY *** |
| 7 * *** MOVE IT TO THIRST_PARTY/EXTRENALS *** |
| 8 */ |
| 9 #ifndef _PDF_COMPILERCOMPAT_H |
| 10 #error Please include PdfDefines.h instead |
| 11 #endif |
| 12 |
| 13 #define PODOFO_VERSION_MAJOR 0 |
| 14 #define PODOFO_VERSION_MINOR 9 |
| 15 #define PODOFO_VERSION_PATCH 3 |
| 16 |
| 17 /* PoDoFo configuration options */ |
| 18 #define PODOFO_MULTI_THREAD |
| 19 |
| 20 /* somewhat platform-specific headers */ |
| 21 #define PODOFO_HAVE_STRINGS_H 1 |
| 22 #define PODOFO_HAVE_ARPA_INET_H 1 |
| 23 /* #undef PODOFO_HAVE_WINSOCK2_H */ |
| 24 /* #undef PODOFO_HAVE_MEM_H */ |
| 25 #define PODOFO_HAVE_CTYPE_H 1 |
| 26 |
| 27 /* Integer types - headers */ |
| 28 #define PODOFO_HAVE_STDINT_H 1 |
| 29 /* #undef PODOFO_HAVE_BASETSD_H */ |
| 30 #define PODOFO_HAVE_SYS_TYPES_H 1 |
| 31 /* Integer types - type names */ |
| 32 #define PDF_INT8_TYPENAME int8_t |
| 33 #define PDF_INT16_TYPENAME int16_t |
| 34 #define PDF_INT32_TYPENAME int32_t |
| 35 #define PDF_INT64_TYPENAME int64_t |
| 36 #define PDF_UINT8_TYPENAME uint8_t |
| 37 #define PDF_UINT16_TYPENAME uint16_t |
| 38 #define PDF_UINT32_TYPENAME uint32_t |
| 39 #define PDF_UINT64_TYPENAME uint64_t |
| 40 |
| 41 /* Endianness */ |
| 42 /* #undef TEST_BIG */ |
| 43 |
| 44 /* Libraries */ |
| 45 #define PODOFO_HAVE_JPEG_LIB |
| 46 #define PODOFO_HAVE_PNG_LIB |
| 47 /* #undef PODOFO_HAVE_TIFF_LIB */ |
| 48 #define PODOFO_HAVE_FONTCONFIG |
| 49 /* #undef PODOFO_HAVE_LUA */ |
| 50 /* #undef PODOFO_HAVE_BOOST */ |
| 51 /* #undef PODOFO_HAVE_CPPUNIT */ |
| 52 #define PODOFO_HAVE_LIBIDN |
| 53 |
| 54 /* Platform quirks */ |
| 55 #define PODOFO_JPEG_RUNTIME_COMPATIBLE |
OLD | NEW |