diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-06-10 11:51:32 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-06-10 11:51:32 +0000 |
commit | c93abadcad433b1223329e64c9303a32341678cf (patch) | |
tree | 8d3aebfe736581fdaf778fba63c2316e0da4b861 /print/ghostscript-afpl/files/patch-src:gxobj.h | |
parent | TZInfo is a Ruby library that uses the standard tz database (diff) |
- Update to 8.54
PR: ports/98023
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
Notes
Notes:
svn path=/head/; revision=165014
Diffstat (limited to 'print/ghostscript-afpl/files/patch-src:gxobj.h')
-rw-r--r-- | print/ghostscript-afpl/files/patch-src:gxobj.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/print/ghostscript-afpl/files/patch-src:gxobj.h b/print/ghostscript-afpl/files/patch-src:gxobj.h index 1b3bb6758042..8b533b37d4d8 100644 --- a/print/ghostscript-afpl/files/patch-src:gxobj.h +++ b/print/ghostscript-afpl/files/patch-src:gxobj.h @@ -1,18 +1,17 @@ ---- src/gxobj.h.orig Thu Feb 21 14:24:53 2002 -+++ src/gxobj.h Sat Sep 27 19:17:17 2003 -@@ -103,11 +103,15 @@ +--- src/gxobj.h.orig Tue Mar 14 01:18:19 2006 ++++ src/gxobj.h Sat May 27 14:48:20 2006 +@@ -109,10 +109,14 @@ * required by the hardware, regardless of the value of obj_align_mod. * See gsmemraw.h for more information about this. */ +#if !defined(__ia64__) && !defined(__amd64__) #define obj_align_mod\ - (((arch_align_memory_mod - 1) |\ + (((ARCH_ALIGN_MEMORY_MOD - 1) |\ (align_bitmap_mod - 1) |\ (obj_back_scale - 1)) + 1) - /* The only possible values for obj_align_mod are 4, 8, or 16.... */ +#else +#define obj_align_mod 16 +#endif + /* The only possible values for obj_align_mod are 4, 8, or 16.... */ #if obj_align_mod == 4 # define log2_obj_align_mod 2 - #else |