diff options
Diffstat (limited to 'third_party/libtiff/tiffconf.h')
-rw-r--r-- | third_party/libtiff/tiffconf.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/third_party/libtiff/tiffconf.h b/third_party/libtiff/tiffconf.h index fab7e0d27f..eb9161ded1 100644 --- a/third_party/libtiff/tiffconf.h +++ b/third_party/libtiff/tiffconf.h @@ -57,7 +57,11 @@ #define SIZEOF_UNSIGNED_LONG 4 #endif +#if _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_ && _MSC_VER < 1900 +#define HAVE_SNPRINTF 0 +#else #define HAVE_SNPRINTF 1 +#endif /* Signed 8-bit type */ #define TIFF_INT8_T signed char |