summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorjoerg <joerg>2006-02-03 11:29:54 +0000
committerjoerg <joerg>2006-02-03 11:29:54 +0000
commitd49901dc1c654dc15ef262a56f065412655deb66 (patch)
treec5537811c13086caa1aa4061e28cc8cf5a5d5f12 /graphics
parentb950f9ee22dcc7e517dcc3f243ecb75b228bfa56 (diff)
downloadpkgsrc-d49901dc1c654dc15ef262a56f065412655deb66.tar.gz
After redefining and undefining uint16 and uint32, redefine them to
the POSIX types.
Diffstat (limited to 'graphics')
-rw-r--r--graphics/camlimages/distinfo3
-rw-r--r--graphics/camlimages/patches/patch-aa14
2 files changed, 16 insertions, 1 deletions
diff --git a/graphics/camlimages/distinfo b/graphics/camlimages/distinfo
index 14c3f067b74..96adb73e7a2 100644
--- a/graphics/camlimages/distinfo
+++ b/graphics/camlimages/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.4 2005/02/24 08:45:03 agc Exp $
+$NetBSD: distinfo,v 1.5 2006/02/03 11:29:54 joerg Exp $
SHA1 (camlimages-2.2.0.tgz) = bc0062739be5ca9236f28145f17f840bf3f295ee
RMD160 (camlimages-2.2.0.tgz) = 0f108ef3da565aeb0ab10d00e45819399af36d8c
Size (camlimages-2.2.0.tgz) = 1385525 bytes
+SHA1 (patch-aa) = 8f1818e6b1a782066acb2ad6399514aa61e0e1f8
diff --git a/graphics/camlimages/patches/patch-aa b/graphics/camlimages/patches/patch-aa
new file mode 100644
index 00000000000..934263fcc80
--- /dev/null
+++ b/graphics/camlimages/patches/patch-aa
@@ -0,0 +1,14 @@
+$NetBSD: patch-aa,v 1.3 2006/02/03 11:29:54 joerg Exp $
+
+--- tiff/tiffread.c.orig 2006-02-03 11:24:33.000000000 +0000
++++ tiff/tiffread.c
+@@ -33,6 +33,9 @@
+ #undef int32
+ #undef uint32
+
++#define uint16 uint16_t
++#define uint32 uint32_t
++
+ extern value *imglib_error;
+
+ value open_tiff_file_for_read( name )