[trunk] correct missing variable in openjpeg config file
[openjpeg.git] / src / lib / openjp2 / opj_config.h.cmake.in
1 /* create config.h for CMake */
2 #cmakedefine OPJ_HAVE_STDINT_H          @OPJ_HAVE_STDINT_H@
3 #cmakedefine OPJ_HAVE_INTTYPES_H        @OPJ_HAVE_INTTYPES_H@
4
5 #define OPJ_PACKAGE_VERSION "@PACKAGE_VERSION@"
6
7 /* Not used by openjp2*/
8 /*#cmakedefine HAVE_MEMORY_H @HAVE_MEMORY_H@*/
9 /*#cmakedefine HAVE_STDLIB_H @HAVE_STDLIB_H@*/
10 /*#cmakedefine HAVE_STRINGS_H @HAVE_STRINGS_H@*/
11 /*#cmakedefine HAVE_STRING_H @HAVE_STRING_H@*/
12 /*#cmakedefine HAVE_SYS_STAT_H @HAVE_SYS_STAT_H@*/
13 /*#cmakedefine HAVE_SYS_TYPES_H @HAVE_SYS_TYPES_H@ */
14 /*#cmakedefine HAVE_UNISTD_H @HAVE_UNISTD_H@*/
15
16 #cmakedefine _LARGEFILE_SOURCE
17 #cmakedefine _LARGE_FILES
18 #cmakedefine _FILE_OFFSET_BITS @_FILE_OFFSET_BITS@
19 #cmakedefine OPJ_HAVE_FSEEKO @OPJ_HAVE_FSEEKO@
20
21
22 /* Byte order.  */
23 /* All compilers that support Mac OS X define either __BIG_ENDIAN__ or
24 __LITTLE_ENDIAN__ to match the endianness of the architecture being
25 compiled for. This is not necessarily the same as the architecture of the
26 machine doing the building. In order to support Universal Binaries on
27 Mac OS X, we prefer those defines to decide the endianness.
28 On other platforms we use the result of the TRY_RUN. */
29 #if !defined(__APPLE__)
30 #cmakedefine OPJ_BIG_ENDIAN
31 #elif defined(__BIG_ENDIAN__)
32 # define OPJ_BIG_ENDIAN
33 #endif
34