From 8fd190c04ff1c83e8a72c6161cff6e320a87e6db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20Sch=C3=B6ning?= Date: Wed, 30 Sep 2015 00:03:35 +0200 Subject: [PATCH] win32: make recent Borland compilers use long long --- lib/config-win32.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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