| 1 | /* create opj_config_private.h for CMake */ |
| 2 | /*** SET BY GS CONFIGURE SCRIPT ****/ |
| 3 | /* #define OPJ_HAVE_INTTYPES_H 1 */ |
| 4 | |
| 5 | /*** SET BY GS CONFIGURE SCRIPT ****/ |
| 6 | /* #define OPJ_HAVE_INTTYPES_H 1 */ |
| 7 | |
| 8 | #define OPJ_PACKAGE_VERSION "2.2.0" |
| 9 | |
| 10 | /* Not used by openjp2*/ |
| 11 | /*#define HAVE_MEMORY_H 1*/ |
| 12 | /*#define HAVE_STDLIB_H 1*/ |
| 13 | /*#define HAVE_STRINGS_H 1*/ |
| 14 | /*#define HAVE_STRING_H 1*/ |
| 15 | /*#define HAVE_SYS_STAT_H 1*/ |
| 16 | /*#define HAVE_SYS_TYPES_H 1 */ |
| 17 | /*#define HAVE_UNISTD_H 1*/ |
| 18 | |
| 19 | /* #undef _LARGEFILE_SOURCE */ |
| 20 | /* #undef _LARGE_FILES */ |
| 21 | /* #undef _FILE_OFFSET_BITS */ |
| 22 | |
| 23 | /*** SET BY GS CONFIGURE SCRIPT ****/ |
| 24 | /* #define OPJ_HAVE_FSEEKO ON */ |
| 25 | |
| 26 | /* Byte order. */ |
| 27 | /* All compilers that support Mac OS X define either __BIG_ENDIAN__ or |
| 28 | __LITTLE_ENDIAN__ to match the endianness of the architecture being |
| 29 | compiled for. This is not necessarily the same as the architecture of the |
| 30 | machine doing the building. In order to support Universal Binaries on |
| 31 | Mac OS X, we prefer those defines to decide the endianness. |
| 32 | On other platforms we use the result of the TRY_RUN. */ |
| 33 | #if !defined(__APPLE__) |
| 34 | /* #undef OPJ_BIG_ENDIAN */ |
| 35 | #elif defined(__BIG_ENDIAN__) |
| 36 | # define OPJ_BIG_ENDIAN |
| 37 | #endif |
| 38 | |