]> granicus.if.org Git - curl/commitdiff
win32: make recent Borland compilers use long long
authorThorsten Schöning <tschoening@am-soft.de>
Tue, 29 Sep 2015 22:03:35 +0000 (00:03 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 29 Sep 2015 22:03:35 +0000 (00:03 +0200)
lib/config-win32.h

index 49040c2add531bac1d3d50de5be521c58373c9d4..4f59791883724e3e5a5cca4b96da081e2043eb56 100644 (file)
 #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