summaryrefslogtreecommitdiff
path: root/src/cairo-quartz.h
diff options
context:
space:
mode:
authorJeff Muizelaar <jmuizelaar@mozilla.com>2009-06-11 17:32:23 -0400
committerJeff Muizelaar <jmuizelaar@mozilla.com>2009-06-11 17:32:23 -0400
commit13b56c42bfdb9ad36f9b1bd22f83d7ef3a074ddc (patch)
treed7cdf5db866e3db81ba2fde7eeef1dd1a8c94059 /src/cairo-quartz.h
parent9e3019ef987f8d3ad424c13ffae5a15b08beb327 (diff)
downloadcairo-13b56c42bfdb9ad36f9b1bd22f83d7ef3a074ddc.tar.gz
Fix compilation on OS X when compiling for 64 bit
OS X doesn't support ATSUI in 64 bit so don't include the cairo ATSUI API in that case.
Diffstat (limited to 'src/cairo-quartz.h')
-rw-r--r--src/cairo-quartz.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cairo-quartz.h b/src/cairo-quartz.h
index 769b29f48..bf89cd9fa 100644
--- a/src/cairo-quartz.h
+++ b/src/cairo-quartz.h
@@ -66,8 +66,10 @@ cairo_quartz_surface_get_cg_context (cairo_surface_t *surface);
cairo_public cairo_font_face_t *
cairo_quartz_font_face_create_for_cgfont (CGFontRef font);
+#ifndef __LP64__
cairo_public cairo_font_face_t *
cairo_quartz_font_face_create_for_atsu_font_id (ATSUFontID font_id);
+#endif
#endif /* CAIRO_HAS_QUARTZ_FONT */