From: Thorsten Schöning Date: Tue, 29 Sep 2015 22:03:35 +0000 (+0200) Subject: win32: make recent Borland compilers use long long X-Git-Tag: curl-7_45_0~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8fd190c04ff1c83e8a72c6161cff6e320a87e6db;p=curl win32: make recent Borland compilers use long long --- diff --git a/lib/config-win32.h b/lib/config-win32.h index 49040c2ad..4f5979188 100644 --- a/lib/config-win32.h +++ b/lib/config-win32.h @@ -487,8 +487,9 @@ #endif /* Define if the compiler supports the 'long long' data type. */ -#if defined(__MINGW32__) || defined(__WATCOMC__) || \ - (defined(_MSC_VER) && (_MSC_VER >= 1310)) +#if defined(__MINGW32__) || defined(__WATCOMC__) || \ + (defined(_MSC_VER) && (_MSC_VER >= 1310)) || \ + (defined(__BORLANDC__) && (__BORLANDC__ >= 0x561)) #define HAVE_LONGLONG 1 #endif