opj_config_private.h.cmake.in 1.8 KB

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