forked from ArtifexSoftware/mupdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'remotes/Artifex-user-tor/openjpegX'
# Conflicts: # thirdparty/openjpeg
- Loading branch information
Showing
4 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define OPJ_HAVE_STDINT_H 1 | ||
#define OPJ_VERSION_MAJOR 2 | ||
#define OPJ_VERSION_MINOR 5 | ||
#define OPJ_VERSION_BUILD 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#define OPJ_PACKAGE_VERSION "2.5.0" | ||
|
||
/* Byte order. */ | ||
/* All compilers that support Mac OS X define either __BIG_ENDIAN__ or | ||
__LITTLE_ENDIAN__ to match the endianness of the architecture being | ||
compiled for. This is not necessarily the same as the architecture of the | ||
machine doing the building. In order to support Universal Binaries on | ||
Mac OS X, we prefer those defines to decide the endianness. | ||
On other platforms we use the result of the TRY_RUN. */ | ||
#if !defined(__APPLE__) | ||
/* #undef OPJ_BIG_ENDIAN */ | ||
#elif defined(__BIG_ENDIAN__) | ||
# define OPJ_BIG_ENDIAN | ||
#endif |