diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2004-08-19 10:15:52 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2004-08-19 10:15:52 +0000 |
commit | d760bd89f2808c2d4f310699d82fceb0e0d64f37 (patch) | |
tree | 4a375d3cc6b4126ddea45d19ae537fb5af948f71 /graphics/netpbm | |
parent | 4891e4a80b01b049cb80df71cf18cacd85cf2137 (diff) | |
download | ports-d760bd89f2808c2d4f310699d82fceb0e0d64f37.tar.gz ports-d760bd89f2808c2d4f310699d82fceb0e0d64f37.zip |
Notes
Diffstat (limited to 'graphics/netpbm')
-rw-r--r-- | graphics/netpbm/files/patch-lib-util-wordaccess.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/graphics/netpbm/files/patch-lib-util-wordaccess.h b/graphics/netpbm/files/patch-lib-util-wordaccess.h new file mode 100644 index 000000000000..d6aa282f7c9d --- /dev/null +++ b/graphics/netpbm/files/patch-lib-util-wordaccess.h @@ -0,0 +1,14 @@ +--- lib/util/wordaccess.h.orig Thu Jul 22 17:01:52 2004 ++++ lib/util/wordaccess.h Thu Aug 19 12:12:27 2004 +@@ -47,7 +47,11 @@ + #if BITS_PER_WORD == 32 + typedef uint32n wordint; + #else ++ #if BITS_PER_WORD == 64 ++ typedef uint32n wordint; ++ #else + #error "Don't know how to deal with this value of BITS_PER_WORD" ++ #endif + #endif + #else + /* We can't do any fancy word-based stuff, but we can still fake it |