aboutsummaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-08-09 17:46:25 +0000
committerYang Tse <yangsita@gmail.com>2008-08-09 17:46:25 +0000
commitcbd9dcbe41bb22b4f0c7ecc88b459db0a91a0c6f (patch)
tree758a15f6250bc7109fbc9be18d8ee66fad015a28 /acinclude.m4
parent45941877326339acbc33ebd28f6aff9e3544ae00 (diff)
Use int64_t in favour of __int64 for curl_off_t when both are available.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 14fb0d3f4..00a4e2fd5 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -3739,8 +3739,8 @@ AC_DEFUN([CURL_CONFIGURE_CURL_OFF_T], [
AC_MSG_CHECKING([for 64-bit curl_off_t data type])
for t8 in \
"$x_LP64_long" \
- '__int64' \
'int64_t' \
+ '__int64' \
'long long' \
'__longlong' \
'__longlong_t' ; do
@@ -3752,8 +3752,8 @@ AC_DEFUN([CURL_CONFIGURE_CURL_OFF_T], [
AC_MSG_CHECKING([for 32-bit curl_off_t data type])
for t4 in \
"$x_LP32_long" \
- '__int32' \
'int32_t' \
+ '__int32' \
'int' ; do
DO_CURL_OFF_T_CHECK([$t4], [4])
done
@@ -3763,8 +3763,8 @@ AC_DEFUN([CURL_CONFIGURE_CURL_OFF_T], [
AC_MSG_CHECKING([for 16-bit curl_off_t data type])
for t2 in \
"$x_LP16_long" \
- '__int16' \
'int16_t' \
+ '__int16' \
'int' ; do
DO_CURL_OFF_T_CHECK([$t2], [2])
done