diff options
author | Thorsten Schöning <tschoening@am-soft.de> | 2015-09-30 00:03:35 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-09-30 00:03:35 +0200 |
commit | 8fd190c04ff1c83e8a72c6161cff6e320a87e6db (patch) | |
tree | ce59f3cc28a176711fb50831cecd939d3f97a242 /lib | |
parent | ec9cbb1757726557804ad7500d18a9f82c03afbc (diff) |
win32: make recent Borland compilers use long long
Diffstat (limited to 'lib')
-rw-r--r-- | lib/config-win32.h | 5 |
1 files 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 |