aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-08-08 16:53:02 +0000
committerYang Tse <yangsita@gmail.com>2008-08-08 16:53:02 +0000
commitc11933b3fdfd01135c5110d12a9d13ead1b3c2ff (patch)
treebd47943061aaca80e1f899ba978b9d040cf67435
parent468769972630cc4a3ba6fc2fa31421a5bfe626b6 (diff)
Remove some redundancy
-rw-r--r--acinclude.m412
1 files changed, 6 insertions, 6 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index aa8b491e7..0aeb876d5 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -3728,7 +3728,7 @@ AC_DEFUN([CURL_CONFIGURE_CURL_OFF_T], [
AC_MSG_CHECKING([for 64-bit curl_off_t data type])
for t8 in \
"$x_LP64_long" \
- 'signed __int64' \
+ '__int64' \
'int64_t' \
'long long' \
'__longlong' \
@@ -3741,7 +3741,7 @@ AC_DEFUN([CURL_CONFIGURE_CURL_OFF_T], [
AC_MSG_CHECKING([for 32-bit curl_off_t data type])
for t4 in \
"$x_LP32_long" \
- 'signed __int32' \
+ '__int32' \
'int32_t' \
'int' ; do
DO_CURL_OFF_T_CHECK([$t4], [4])
@@ -3752,7 +3752,7 @@ AC_DEFUN([CURL_CONFIGURE_CURL_OFF_T], [
AC_MSG_CHECKING([for 16-bit curl_off_t data type])
for t2 in \
"$x_LP16_long" \
- 'signed __int16' \
+ '__int16' \
'int16_t' \
'int' ; do
DO_CURL_OFF_T_CHECK([$t2], [2])
@@ -3788,15 +3788,15 @@ AC_DEFUN([CURL_CONFIGURE_CURL_OFF_T], [
x_format="d"
u_format="u"
;;
- signed___int64)
+ __int64)
x_format="I64d"
u_format="I64u"
;;
- signed___int32)
+ __int32)
x_format="I32d"
u_format="I32u"
;;
- signed___int16)
+ __int16)
x_format="I16d"
u_format="I16u"
;;