diff -Nru apr-1.4.6/debian/changelog apr-1.4.6/debian/changelog --- apr-1.4.6/debian/changelog 2012-05-28 07:02:12.000000000 -0700 +++ apr-1.4.6/debian/changelog 2013-02-22 07:32:31.000000000 -0800 @@ -1,3 +1,9 @@ +apr (1.4.6-3+x32) unreleased; urgency=low + + * Update debian/ino_t_test.c to reflect that apr_ino_t is 8 bytes on x32. + + -- Daniel Schepler Fri, 22 Feb 2013 07:32:24 -0800 + apr (1.4.6-3) unstable; urgency=low * Fix some issues with resolving loopback addresses of a protocol family diff -Nru apr-1.4.6/debian/ino_t_test.c apr-1.4.6/debian/ino_t_test.c --- apr-1.4.6/debian/ino_t_test.c 2012-05-06 05:07:29.000000000 -0700 +++ apr-1.4.6/debian/ino_t_test.c 2013-02-22 07:31:50.000000000 -0800 @@ -5,6 +5,8 @@ /* this was the old definition of apr_ino_t until 1.2.11-1 */ #if defined(__alpha__) || defined(__FreeBSD_kernel__) typedef unsigned int old_apr_ino_t; +#elif defined(__x86_64__) && defined(__ILP32__) +typedef unsigned long long int old_apr_ino_t; #else typedef unsigned long int old_apr_ino_t; #endif