summaryrefslogtreecommitdiff
path: root/graphics/tiff/patches/patch-ac
blob: e7612c1644381fe017f112935b64fb16b9326fbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$NetBSD: patch-ac,v 1.17 2005/07/14 13:43:28 wiz Exp $

--- libtiff/tiff.h.orig	2005-07-05 16:38:13.000000000 +0000
+++ libtiff/tiff.h
@@ -81,7 +81,7 @@ typedef	signed char int8;	/* NB: non-ANS
 typedef	unsigned char uint8;
 typedef	short int16;
 typedef	unsigned short uint16;	/* sizeof (uint16) must == 2 */
-#if defined(__alpha) || (defined(_MIPS_SZLONG) && _MIPS_SZLONG == 64) || defined(__LP64__) || defined(__arch64__) || defined(__sparcv9)
+#if defined(__alpha) || (defined(_MIPS_SZLONG) && _MIPS_SZLONG == 64) || defined(__LP64__) || defined(__arch64__) || defined(__sparcv9) || defined(_LP64)
 typedef	int int32;
 typedef	unsigned int uint32;	/* sizeof (uint32) must == 4 */
 #else