On 5 Aug 2002 martin@apache.org wrote:
> martin 2002/08/05 02:28:24
>
> Modified: . configure.in
> Log:
> Fix buggy substitution
>
> Revision Changes Path
> 1.474 +2 -2 apr/configure.in
>
> Index: configure.in
> ===================================================================
> RCS file: /home/cvs/apr/configure.in,v
> retrieving revision 1.473
> retrieving revision 1.474
> diff -u -r1.473 -r1.474
> --- configure.in 4 Aug 2002 01:52:25 -0000 1.473
> +++ configure.in 5 Aug 2002 09:28:24 -0000 1.474
> @@ -1142,7 +1142,7 @@
> elif test "$ac_cv_sizeof_off_t" = "$ac_cv_sizeof_long"; then
> off_t_fmt='#define APR_OFF_T_FMT "ld"'
> elif test "$ac_cv_sizeof_off_t" = "$ac_cv_sizeof_long_long"; then
> - off_t_fmt='#define APR_OFF_T_FMT $int64_t_fmt'
> + off_t_fmt='#define APR_OFF_T_FMT APR_INT64_T_FMT'
> else
> off_t_fmt='#error Can not determine the proper size for off_t'
> fi
Are we quite sure that if sizeof(off_t) != sizeof(long) && sizeof(off_t)
== sizeof(long long) then sizeof(long long) == 64?
--Cliff
|