diff options
author | Yann Ylavic <ylavic@apache.org> | 2019-03-22 15:16:53 +0000 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2019-03-22 15:16:53 +0000 |
commit | affa6f48074a5543e7a3266c4fe27999f04b567b (patch) | |
tree | 7a331960072b2e033454cdaf2596fc1b0d12f921 | |
parent | 55fd915b3a62669e7d5a3077d00cfbb77d3e56c5 (diff) | |
download | apr-affa6f48074a5543e7a3266c4fe27999f04b567b.tar.gz |
The string conversion to apr_off_t is strtoll when it's a long long.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1856063 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index e3dab520b..a55106977 100644 --- a/configure.in +++ b/configure.in @@ -1888,7 +1888,7 @@ elif test "$ac_cv_type_off_t" = "yes"; then ], [ APR_CHECK_TYPES_FMT_COMPATIBLE(off_t, long long, lld, [ off_t_fmt="#define APR_OFF_T_FMT \"lld\"" - off_t_strfn='apr_strtoi64' + off_t_strfn='strtoll' ], [ APR_CHECK_TYPES_FMT_COMPATIBLE(off_t, $int64_value, I64d, [ off_t_fmt="#define APR_OFF_T_FMT APR_INT64_T_FMT" |