*** ./src/lib/openjp2/opj_includes.h.ORIG Mon Jul 28 16:42:42 2014 --- ./src/lib/openjp2/opj_includes.h Mon Jul 28 16:43:27 2014 *************** *** 118,123 **** --- 118,127 ---- #endif #endif + #if defined(_AIX) && !defined(_AIX52) + #define lrintf(x) ((long) (x)) + #endif + /* MSVC before 2013 and Borland C do not have lrintf */ #if defined(_MSC_VER) && (_MSC_VER < 1800) || defined(__BORLANDC__) static INLINE long lrintf(float f){ *** ./src/lib/openjp2/openjpeg.h.ORIG Mon Jul 28 16:47:21 2014 --- ./src/lib/openjp2/openjpeg.h Mon Jul 28 16:47:41 2014 *************** *** 71,76 **** --- 71,78 ---- #define OPJ_DEPRECATED(func) func __attribute__ ((deprecated)) #elif defined(_MSC_VER) #define OPJ_DEPRECATED(func) __declspec(deprecated) func + #elif defined(__VACPP_MULTI__) + #define OPJ_DEPRECATED(func) func #else #pragma message("WARNING: You need to implement DEPRECATED for this compiler") #define OPJ_DEPRECATED(func) func No differences encountered *** ./src/lib/openjp2/opj_stdint.h.ORIG Tue Apr 29 09:15:02 2014 --- ./src/lib/openjp2/opj_stdint.h Mon Jul 28 16:53:03 2014 *************** *** 45,50 **** --- 45,54 ---- typedef signed __int64 int64_t; typedef unsigned __int64 uint64_t; #else + #if defined(_AIX) && !defined(_AIX52) + #include + #else #error unsupported platform + #endif #endif #endif