Fix OpenJPEG GitHub issue #633.

"opj_includes.h" must be included before system headers, otherwise
inconsistent definitions of configuration macros lead to build
failures on AIX.
This commit is contained in:
Stephan Mühlstrasser 2015-10-15 10:53:33 +02:00
parent bd3959dc77
commit b3c581760f
1 changed files with 2 additions and 1 deletions

View File

@ -29,6 +29,8 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "opj_includes.h"
#ifdef _WIN32
#include <windows.h>
#else
@ -36,7 +38,6 @@
#include <sys/resource.h>
#include <sys/times.h>
#endif /* _WIN32 */
#include "opj_includes.h"
OPJ_FLOAT64 opj_clock(void) {
#ifdef _WIN32