Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'packages/patches/tiff/patch-tiffconf.diff')
-rw-r--r--packages/patches/tiff/patch-tiffconf.diff26
1 files changed, 26 insertions, 0 deletions
diff --git a/packages/patches/tiff/patch-tiffconf.diff b/packages/patches/tiff/patch-tiffconf.diff
new file mode 100644
index 0000000..dda84d7
--- /dev/null
+++ b/packages/patches/tiff/patch-tiffconf.diff
@@ -0,0 +1,26 @@
+--- libtiff/tiffconf.h.orig 2019-08-29 15:37:19.000000000 +0200
++++ libtiff/tiffconf.h 2019-08-29 15:38:25.000000000 +0200
+@@ -15,7 +15,11 @@
+ #define TIFF_INT32_T signed int
+
+ /* Signed 64-bit type */
++#ifdef __LP64__
+ #define TIFF_INT64_T signed long
++#else
++#define TIFF_INT64_T signed long long
++#endif
+
+ /* Signed 8-bit type */
+ #define TIFF_INT8_T signed char
+@@ -27,7 +31,11 @@
+ #define TIFF_UINT32_T unsigned int
+
+ /* Unsigned 64-bit type */
++#ifdef __LP64__
+ #define TIFF_UINT64_T unsigned long
++#else
++#define TIFF_UINT64_T unsigned long long
++#endif
+
+ /* Unsigned 8-bit type */
+ #define TIFF_UINT8_T unsigned char