From: Thomas Faber Date: Fri, 17 Feb 2017 13:58:26 +0000 (+0000) Subject: [LIBTIFF] X-Git-Tag: ReactOS-0.4.4-CLT2017~276 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=eb5ff5ce187aa06e0e764aa30c81eda4c223ceb4;ds=inline [LIBTIFF] - Fix GCC non-PCH build CORE-12775 svn path=/trunk/; revision=73814 --- diff --git a/reactos/sdk/include/reactos/libs/libtiff/tif_config.h b/reactos/sdk/include/reactos/libs/libtiff/tif_config.h index 449d5a746eb..0621c7ae567 100644 --- a/reactos/sdk/include/reactos/libs/libtiff/tif_config.h +++ b/reactos/sdk/include/reactos/libs/libtiff/tif_config.h @@ -42,13 +42,21 @@ #define TIFF_INT64_FORMAT "%I64d" /* Signed 64-bit type */ +#ifdef __GNUC__ +#define TIFF_INT64_T signed long long +#else #define TIFF_INT64_T signed __int64 +#endif /* Unsigned 64-bit type formatter */ #define TIFF_UINT64_FORMAT "%I64u" /* Unsigned 64-bit type */ +#ifdef __GNUC__ +#define TIFF_UINT64_T unsigned long long +#else #define TIFF_UINT64_T unsigned __int64 +#endif #if _WIN64 /* diff --git a/reactos/sdk/include/reactos/libs/libtiff/tiffconf.h b/reactos/sdk/include/reactos/libs/libtiff/tiffconf.h index c5d566f8d3e..799a47a5450 100644 --- a/reactos/sdk/include/reactos/libs/libtiff/tiffconf.h +++ b/reactos/sdk/include/reactos/libs/libtiff/tiffconf.h @@ -47,13 +47,21 @@ #define TIFF_INT64_FORMAT "%I64d" /* Signed 64-bit type */ +#ifdef __GNUC__ +#define TIFF_INT64_T signed long long +#else #define TIFF_INT64_T signed __int64 +#endif /* Unsigned 64-bit type formatter */ #define TIFF_UINT64_FORMAT "%I64u" /* Unsigned 64-bit type */ +#ifdef __GNUC__ +#define TIFF_UINT64_T unsigned long long +#else #define TIFF_UINT64_T unsigned __int64 +#endif #if _WIN64 /*