diff options
author | joerg <joerg@pkgsrc.org> | 2006-02-03 11:29:54 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-02-03 11:29:54 +0000 |
commit | d78ac3bbb547beecafe0b0db1791f4e9b09f7145 (patch) | |
tree | c5537811c13086caa1aa4061e28cc8cf5a5d5f12 /graphics/camlimages | |
parent | 2d9c49da75859112e8226b9f3c76040439d6aa23 (diff) | |
download | pkgsrc-d78ac3bbb547beecafe0b0db1791f4e9b09f7145.tar.gz |
After redefining and undefining uint16 and uint32, redefine them to
the POSIX types.
Diffstat (limited to 'graphics/camlimages')
-rw-r--r-- | graphics/camlimages/distinfo | 3 | ||||
-rw-r--r-- | graphics/camlimages/patches/patch-aa | 14 |
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 ) |