win32: make recent Borland compilers use long long

This commit is contained in:
Thorsten Schöning
2015-09-30 00:03:35 +02:00
committed by Daniel Stenberg
parent ec9cbb1757
commit 8fd190c04f

View File

@@ -488,7 +488,8 @@
/* Define if the compiler supports the 'long long' data type. */
#if defined(__MINGW32__) || defined(__WATCOMC__) || \
(defined(_MSC_VER) && (_MSC_VER >= 1310))
(defined(_MSC_VER) && (_MSC_VER >= 1310)) || \
(defined(__BORLANDC__) && (__BORLANDC__ >= 0x561))
#define HAVE_LONGLONG 1
#endif