From: Gunter Knauf Date: Thu, 15 Jul 2004 01:08:08 +0000 (+0000) Subject: Gisle's fix to support Borland builds again. X-Git-Tag: curl-7_12_1~78 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1318760ad22ccd5e8e52a4bb5e7ac91825df063c;p=thirdparty%2Fcurl.git Gisle's fix to support Borland builds again. --- diff --git a/lib/config-win32.h b/lib/config-win32.h index e14764e1cd..3aa27b639e 100644 --- a/lib/config-win32.h +++ b/lib/config-win32.h @@ -39,7 +39,12 @@ #undef SIZEOF_CURL_OFF_T #endif +/* Borland lacks _lseeki64(), so we don't support >2GB files */ +#ifdef __BORLANDC__ +#define SIZEOF_CURL_OFF_T 4 +#else #define SIZEOF_CURL_OFF_T 8 +#endif /* Define if you have the ANSI C header files. */ #define STDC_HEADERS 1