| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // 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 |
| 1 /* create opj_config_private.h for CMake */ | 7 /* create opj_config_private.h for CMake */ |
| 2 /* #undef OPJ_HAVE_INTTYPES_H */ | 8 /* #undef OPJ_HAVE_INTTYPES_H */ |
| 3 | 9 |
| 4 #ifndef _WIN32 | 10 #ifndef _WIN32 |
| 5 #ifndef OPJ_HAVE_INTTYPES_H | 11 #ifndef OPJ_HAVE_INTTYPES_H |
| 6 #define OPJ_HAVE_INTTYPES_H | 12 #define OPJ_HAVE_INTTYPES_H |
| 7 #endif | 13 #endif |
| 8 #endif | 14 #endif |
| 9 | 15 |
| 10 #define OPJ_PACKAGE_VERSION "2.1.0" | 16 #define OPJ_PACKAGE_VERSION "2.1.0" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 __LITTLE_ENDIAN__ to match the endianness of the architecture being | 40 __LITTLE_ENDIAN__ to match the endianness of the architecture being |
| 35 compiled for. This is not necessarily the same as the architecture of the | 41 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 | 42 machine doing the building. In order to support Universal Binaries on |
| 37 Mac OS X, we prefer those defines to decide the endianness. | 43 Mac OS X, we prefer those defines to decide the endianness. |
| 38 On other platforms we use the result of the TRY_RUN. */ | 44 On other platforms we use the result of the TRY_RUN. */ |
| 39 #if !defined(__APPLE__) | 45 #if !defined(__APPLE__) |
| 40 /* #undef OPJ_BIG_ENDIAN */ | 46 /* #undef OPJ_BIG_ENDIAN */ |
| 41 #elif defined(__BIG_ENDIAN__) | 47 #elif defined(__BIG_ENDIAN__) |
| 42 # define OPJ_BIG_ENDIAN | 48 # define OPJ_BIG_ENDIAN |
| 43 #endif | 49 #endif |
| OLD | NEW |