mirror of
https://github.com/curl/curl.git
synced 2026-05-05 10:57:15 +03:00
win32: make recent Borland compilers use long long
This commit is contained in:
parent
ec9cbb1757
commit
8fd190c04f
1 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue