opj_config_private-linux.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* create opj_config_private.h for CMake */
  2. #define OPJ_PACKAGE_VERSION "2.5.2"
  3. /* Not used by openjp2*/
  4. /*#define HAVE_MEMORY_H 1*/
  5. /*#define HAVE_STDLIB_H 1*/
  6. /*#define HAVE_STRINGS_H 1*/
  7. /*#define HAVE_STRING_H 1*/
  8. /*#define HAVE_SYS_STAT_H 1*/
  9. /*#define HAVE_SYS_TYPES_H 1 */
  10. /*#define HAVE_UNISTD_H 1*/
  11. /*#define HAVE_INTTYPES_H 1 */
  12. /*#define HAVE_STDINT_H 1 */
  13. /* #undef _LARGEFILE_SOURCE */
  14. /* #undef _LARGE_FILES */
  15. /* #undef _FILE_OFFSET_BITS */
  16. #define OPJ_HAVE_FSEEKO ON
  17. /* find whether or not have <malloc.h> */
  18. #define OPJ_HAVE_MALLOC_H
  19. /* check if function `aligned_alloc` exists */
  20. /* #undef OPJ_HAVE_ALIGNED_ALLOC */
  21. /* check if function `_aligned_malloc` exists */
  22. /* #undef OPJ_HAVE__ALIGNED_MALLOC */
  23. /* check if function `memalign` exists */
  24. #define OPJ_HAVE_MEMALIGN
  25. /* check if function `posix_memalign` exists */
  26. #define OPJ_HAVE_POSIX_MEMALIGN
  27. #if !defined(_POSIX_C_SOURCE)
  28. #if defined(OPJ_HAVE_FSEEKO) || defined(OPJ_HAVE_POSIX_MEMALIGN)
  29. /* Get declarations of fseeko, ftello, posix_memalign. */
  30. #define _POSIX_C_SOURCE 200112L
  31. #endif
  32. #endif
  33. /* Byte order. */
  34. /* All compilers that support Mac OS X define either __BIG_ENDIAN__ or
  35. __LITTLE_ENDIAN__ to match the endianness of the architecture being
  36. compiled for. This is not necessarily the same as the architecture of the
  37. machine doing the building. In order to support Universal Binaries on
  38. Mac OS X, we prefer those defines to decide the endianness.
  39. On other platforms we use the result of the TRY_RUN. */
  40. #if !defined(__APPLE__)
  41. /* #undef OPJ_BIG_ENDIAN */
  42. #elif defined(__BIG_ENDIAN__)
  43. # define OPJ_BIG_ENDIAN
  44. #endif