Hi,

sorry for the late posting. Here are some minor build nits for people
stuck
with old versions of APR and Apache.

- subversion/include/private/svn_dep_compat.h, line 72-73:
  APR_UINT64_C and APR_INT64_C don't exist in APR 0.9.x

  possible fix (at least for people with a moderately recent C
compiler):

  #define APR_UINT64_MAX UINT64_MAX
  #define APR_INT64_MAX  INT64_MAX

- subversion/tests/libsvn_wc/op-depth-test.c, line 121:
  APR_FPROT_OS_DEFAULT doesn't exist in APR 0.9.x
  It was called APR_OS_DEFAULT then (which is still recognized in APR
1.4.x).

- subversion/mod_dav_svn/util.c, line 681:
  apr_strtoff doesn't exist in APR 0.9.x

  possible fix: use strtol instead

Cheers, Roderich





Reply via email to