jorton 2004/01/29 00:33:41
Modified: . Tag: APR_0_9_BRANCH configure.in CHANGES Log: * configure.in: Define apr_off_t as an apr_intX_t type rather than off_t to prevent the size of apr_off_t being affected by the _FILE_OFFSET_BITS definition on LFS systems. (since Other Software is known to export changes to _FILE_OFFSET_BITS as part of its API)
Index: configure.in =================================================================== RCS file: /home/cvs/apr/configure.in,v retrieving revision 1.535.2.3 retrieving revision 1.535.2.4 diff -b -d -u -r1.535.2.3 -r1.535.2.4 --- configure.in 27 Jan 2004 09:59:31 -0000 1.535.2.3 +++ configure.in 29 Jan 2004 08:33:41 -0000 1.535.2.4
+ elif test "$ac_cv_sizeof_off_t" = "4"; then + off_t_value='apr_int32_t' + off_t_fmt='#define APR_OFF_T_FMT APR_INT32_T_FMT'
APR_INT32_T_FMT isn't showing up in apr.h for me, leading to compile failure for references to APR_OFF_T_FMT