aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-08-23 12:11:38 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-08-23 12:11:38 +0000
commit13dc82b9d4e3280e9fbb038027169a544fcbd171 (patch)
tree501aab02f8a678b72ebc83b2d85fc47e394a3672 /configure.ac
parenta243dd45873cd226a0da2ca4acf6b140e4065950 (diff)
- Constantine Sapuntzakis fixed a bug when doing proxy CONNECT with the multi
interface, and the proxy would send Connection: close during the authentication phase. http://curl.haxx.se/bug/view.cgi?id=2069047
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 2959b68c8..0e29b9e3e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2006,6 +2006,13 @@ CURL_CONFIGURE_LONG
AC_CHECK_SIZEOF(time_t)
AC_CHECK_SIZEOF(off_t)
+dnl now check if curl_off_t is larger than off_t
+
+if test $ac_cv_sizeof_off_t -ge $ac_cv_sizeof_curl_off_t; then
+ AC_MSG_WARN([curl_off_t was detected to be larger than off_t.])
+fi
+
+
AC_CHECK_TYPE(long long,
[AC_DEFINE(HAVE_LONGLONG, 1,
[Define to 1 if the compiler supports the 'long long' data type.])]