*** ./Makefile.in.ORIG Thu Oct 6 14:47:30 2011 --- ./Makefile.in Thu Oct 6 14:47:39 2011 *************** *** 269,275 **** top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ ! SUBDIRS = pixman demos test pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = pixman-1.pc GPGKEY = 6FF7C1A8 --- 269,275 ---- top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ ! SUBDIRS = pixman test pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = pixman-1.pc GPGKEY = 6FF7C1A8 *** ./pixman/pixman-utils.c.ORIG Wed Nov 28 22:04:37 2012 --- ./pixman/pixman-utils.c Wed Nov 28 22:04:51 2012 *************** *** 30,35 **** --- 30,43 ---- #include "pixman-private.h" + #ifdef _AIX51 + #if (__64BIT__) + #define SIZE_MAX UINT64_MAX + #else + #define SIZE_MAX UINT32_MAX + #endif + #endif + pixman_bool_t _pixman_multiply_overflows_size (size_t a, size_t b) { *** ./pixman/pixman-combine-float.c.ORIG Wed Nov 28 23:45:39 2012 --- ./pixman/pixman-combine-float.c Wed Nov 28 23:46:14 2012 *************** *** 435,440 **** --- 435,444 ---- return sa * da - 2 * (da - d) * (sa - s); } + #if defined(_AIX51) && !defined(_AIX52) + #define sqrtf sqrt + #endif + static force_inline float blend_soft_light (float sa, float s, float da, float d) {