diff options
author | tron <tron@pkgsrc.org> | 2014-05-05 10:27:28 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2014-05-05 10:27:28 +0000 |
commit | 5458d08a9eca66f606a878e8dc908ad96a083b5d (patch) | |
tree | de87c23681e321d614431df9b0707a64cbea5d31 | |
parent | ea06046680cebd2f1936f3f1591b10e9113004f8 (diff) | |
download | pkgsrc-5458d08a9eca66f606a878e8dc908ad96a083b5d.tar.gz |
Fix build under Mac OS X.
-rw-r--r-- | fonts/harfbuzz/distinfo | 3 | ||||
-rw-r--r-- | fonts/harfbuzz/patches/patch-src_hb-coretext.h | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/fonts/harfbuzz/distinfo b/fonts/harfbuzz/distinfo index eb9499f24e9..248567fdb43 100644 --- a/fonts/harfbuzz/distinfo +++ b/fonts/harfbuzz/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.23 2014/05/04 16:58:45 wiz Exp $ +$NetBSD: distinfo,v 1.24 2014/05/05 10:27:28 tron Exp $ SHA1 (harfbuzz-0.9.28.tar.bz2) = e2704c0b1b76a82fb8b5c9b354526733629ee616 RMD160 (harfbuzz-0.9.28.tar.bz2) = 5d98717a86d2a7c77f0833f32324e8e7e9a99b32 Size (harfbuzz-0.9.28.tar.bz2) = 1063769 bytes +SHA1 (patch-src_hb-coretext.h) = 67ab91fefbac3fe8e65a3d71ecb5dd5f9473df04 SHA1 (patch-src_hb-open-type-private.hh) = 876f1afdf2c7babb4cd3c2b9c9e4635167ad1021 diff --git a/fonts/harfbuzz/patches/patch-src_hb-coretext.h b/fonts/harfbuzz/patches/patch-src_hb-coretext.h new file mode 100644 index 00000000000..c00134c5d99 --- /dev/null +++ b/fonts/harfbuzz/patches/patch-src_hb-coretext.h @@ -0,0 +1,17 @@ +$NetBSD: patch-src_hb-coretext.h,v 1.1 2014/05/05 10:27:28 tron Exp $ + +Fix build under Mac OS X: + +https://bugs.freedesktop.org/show_bug.cgi?id=78291 + +--- src/hb-coretext.h.orig 2014-03-21 17:29:34.000000000 +0000 ++++ src/hb-coretext.h 2014-05-05 11:15:26.000000000 +0100 +@@ -30,7 +30,7 @@ + #include "hb.h" + + #include <TargetConditionals.h> +-#if defined(TARGET_OS_IPHONE) ++#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE + # include <CoreText/CoreText.h> + # include <CoreGraphics/CoreGraphics.h> + #else |