aboutsummaryrefslogtreecommitdiff
path: root/lib/version.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-03-08 07:46:26 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-03-08 07:46:26 +0000
commit3fa4ac080ef776e109500ca43966251f2dfd1dbd (patch)
treec9ff35c24afe4537556b2f62e1030c304b241f5c /lib/version.c
parent9c8b2a99580e0c25c347b9da54c697e78762f93d (diff)
we must not only support long long for Largefile to work, we must have
a curl_off_t type that is larger than 4 bytes
Diffstat (limited to 'lib/version.c')
-rw-r--r--lib/version.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/version.c b/lib/version.c
index 59d8a1461..d2125a259 100644
--- a/lib/version.c
+++ b/lib/version.c
@@ -198,7 +198,7 @@ static curl_version_info_data version_info = {
#ifdef HAVE_SPNEGO
| CURL_VERSION_SPNEGO
#endif
-#ifdef ENABLE_64BIT
+#if defined(ENABLE_64BIT) && (SIZEOF_CURL_OFF_T > 4)
| CURL_VERSION_LARGEFILE
#endif
,