summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorylavic <ylavic@13f79535-47bb-0310-9956-ffa450edef68>2019-03-22 15:18:47 +0000
committerylavic <ylavic@13f79535-47bb-0310-9956-ffa450edef68>2019-03-22 15:18:47 +0000
commit369f30ea38262f0c16aa9f0c71a34bb5d7d3584c (patch)
tree02f52bd459ba76171536cde26942935fa90e639b
parent6db33b2aace2f7b849feb9c59c866697b2404b97 (diff)
downloadlibapr-369f30ea38262f0c16aa9f0c71a34bb5d7d3584c.tar.gz
Merge r1856063 from trunk:
The string conversion to apr_off_t is strtoll when it's a long long. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.7.x@1856064 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index ff3a63cf6..64467d2eb 100644
--- a/configure.in
+++ b/configure.in
@@ -1958,7 +1958,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"