diff options
author | mat <mat@FreeBSD.org> | 2017-02-18 00:54:34 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2017-02-18 00:54:34 +0800 |
commit | 27c5615ce7649b657fcc7cd482b76157cee5817e (patch) | |
tree | e8b97aa4597e8e1e1ef8051818a9a09f73253adc /print/harfbuzz | |
parent | e828403d6e648be749072c1449fa69b1d158f2c0 (diff) | |
download | freebsd-ports-gnome-27c5615ce7649b657fcc7cd482b76157cee5817e.tar.gz freebsd-ports-gnome-27c5615ce7649b657fcc7cd482b76157cee5817e.tar.zst freebsd-ports-gnome-27c5615ce7649b657fcc7cd482b76157cee5817e.zip |
There were a few others _FreeBSD_9 things around.
Sponsored by: Absolight
Diffstat (limited to 'print/harfbuzz')
-rw-r--r-- | print/harfbuzz/Makefile | 3 | ||||
-rw-r--r-- | print/harfbuzz/files/extra-src_hb-open-type-private.hh | 25 |
2 files changed, 0 insertions, 28 deletions
diff --git a/print/harfbuzz/Makefile b/print/harfbuzz/Makefile index d7c11af74e60..fb0fac1e09fa 100644 --- a/print/harfbuzz/Makefile +++ b/print/harfbuzz/Makefile @@ -23,7 +23,4 @@ TEST_TARGET= check PLIST_SUB+= LIBVER=0.10400.2 -EXTRA_PATCHES+= ${EXTRA_PATCHES_${OPSYS}_${OSREL:R}} -EXTRA_PATCHES_FreeBSD_9= ${PATCHDIR}/extra-src_hb-open-type-private.hh - .include <bsd.port.mk> diff --git a/print/harfbuzz/files/extra-src_hb-open-type-private.hh b/print/harfbuzz/files/extra-src_hb-open-type-private.hh deleted file mode 100644 index 239c463c6355..000000000000 --- a/print/harfbuzz/files/extra-src_hb-open-type-private.hh +++ /dev/null @@ -1,25 +0,0 @@ -$NetBSD: patch-src_hb-open-type-private.hh,v 1.1 2013/02/03 05:13:26 ryoon Exp $ - ---- src/hb-open-type-private.hh.orig 2013-01-08 22:13:42.000000000 +0000 -+++ src/hb-open-type-private.hh -@@ -941,6 +941,11 @@ struct HeadlessArrayOf - DEFINE_SIZE_ARRAY (sizeof (USHORT), array); - }; - -+#if __GNUC__ && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4)) -+// work around GCC 4.3 bug where the search() function gets improperly -+// optimized away from some instantiations of this template -+#pragma GCC visibility push(default) -+#endif - - /* An array with sorted elements. Supports binary searching. */ - template <typename Type> -@@ -968,5 +973,8 @@ struct SortedArrayOf : ArrayOf<Type> { - - } /* namespace OT */ - -+#if __GNUC__ && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4)) -+#pragma GCC visibility pop -+#endif - - #endif /* HB_OPEN_TYPE_PRIVATE_HH */ |