blob: 85a296927030cc1cb2f4b3a1970b163a42f7d399 [file] [log] [blame]
K. Moon832a6942022-10-31 20:11:31 +00001// Copyright 2014 The PDFium Authors
Tom Sepezcbd8e1a2014-10-15 10:16:45 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
John Abd-El-Malek5110c472014-05-17 22:33:34 -07007/* create opj_config_private.h for CMake */
Bo Xud53e6fd2014-09-30 11:12:05 -07008#define OPJ_HAVE_INTTYPES_H 1
John Abd-El-Malek5110c472014-05-17 22:33:34 -07009
Lei Zhangee35a502024-05-30 17:31:47 +000010#define OPJ_PACKAGE_VERSION "2.5.2"
John Abd-El-Malek5110c472014-05-17 22:33:34 -070011
12/* Not used by openjp2*/
13/*#define HAVE_MEMORY_H 1*/
14/*#define HAVE_STDLIB_H 1*/
Bo Xud53e6fd2014-09-30 11:12:05 -070015/*#define HAVE_STRINGS_H 1*/
John Abd-El-Malek5110c472014-05-17 22:33:34 -070016/*#define HAVE_STRING_H 1*/
17/*#define HAVE_SYS_STAT_H 1*/
18/*#define HAVE_SYS_TYPES_H 1 */
Bo Xud53e6fd2014-09-30 11:12:05 -070019/*#define HAVE_UNISTD_H 1*/
John Abd-El-Malek5110c472014-05-17 22:33:34 -070020
21/* #undef _LARGEFILE_SOURCE */
22/* #undef _LARGE_FILES */
23/* #undef _FILE_OFFSET_BITS */
Bo Xud53e6fd2014-09-30 11:12:05 -070024#define OPJ_HAVE_FSEEKO ON
John Abd-El-Malek5110c472014-05-17 22:33:34 -070025
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
29compiled for. This is not necessarily the same as the architecture of the
30machine doing the building. In order to support Universal Binaries on
31Mac OS X, we prefer those defines to decide the endianness.
32On 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