freebsd-ports/print/ghostscript8/files/patch-base-gxobj.h
Hiroki Sato b5a670a4ad Update to 8.64. Changes include:
- Improvements to overprint and spot color support in documents with
  transparency, improvements to PDF and PS output, proper handling of
  PDF-specific text rendering modes and support for reading
  AES-encrypted PDF documents.

- Improved handling of CJK text, especially in vertical writing modes.

- Improved memory footprint processing some files at high resolution.

- The handling of color spaces has been moved from PostScript code to
  C.

- A number of the included printer drivers and cups wrappers have been
  updated to support a PDF-based workflow. Also fixed are several
  long-standing bugs in the pcl drivers with respect to duplex,
  resolution and paper tray selection.
2009-03-28 20:05:52 +00:00

18 lines
585 B
C

--- base/gxobj.h.orig Tue Mar 14 01:18:19 2006
+++ base/gxobj.h Fri Mar 23 14:41:44 2007
@@ -109,11 +109,15 @@
* 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) |\
(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
#if obj_align_mod == 4
# define log2_obj_align_mod 2
#else