diff options
author | wiz <wiz> | 2014-04-03 10:52:13 +0000 |
---|---|---|
committer | wiz <wiz> | 2014-04-03 10:52:13 +0000 |
commit | 5cb02dbcef06653847f5714893abf0d3c5361890 (patch) | |
tree | f06ee3dad35424d3a74a94c8f4736a341720ae28 | |
parent | 65dfd5615d84c146d81c3780edeecaf61f68c76f (diff) | |
download | pkgsrc-5cb02dbcef06653847f5714893abf0d3c5361890.tar.gz |
Fix build with freetype-2.5.1.
-rw-r--r-- | devel/xulrunner192/distinfo | 3 | ||||
-rw-r--r-- | devel/xulrunner192/patches/patch-gfx_thebes_src_gfxPangoFonts.cpp | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/devel/xulrunner192/distinfo b/devel/xulrunner192/distinfo index ee41fe0f0a9..176a9cb2aa7 100644 --- a/devel/xulrunner192/distinfo +++ b/devel/xulrunner192/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.16 2014/03/22 18:02:14 gdt Exp $ +$NetBSD: distinfo,v 1.17 2014/04/03 10:52:13 wiz Exp $ SHA1 (firefox-3.6.28.source.tar.bz2) = adeaa9bdd367878c5b522766e681798178e31577 RMD160 (firefox-3.6.28.source.tar.bz2) = 87cfca8e3f1df30e06eccffbf994825904eeedbc @@ -36,6 +36,7 @@ SHA1 (patch-bf) = 6295d27762eb91162c00362306acbd47eeda61ac SHA1 (patch-bg) = ab79e04b5ac1453157cfb57754613210c74c3b90 SHA1 (patch-build_autoconf_moznbytetype.m4) = c0299f856d074f220d29f6388d5b0d96ad4b3e51 SHA1 (patch-embedding_browser_gtk_src_EmbedPrivate.cpp) = a0ec26c6ca751e51586498e33b4f51b63799e3d2 +SHA1 (patch-gfx_thebes_src_gfxPangoFonts.cpp) = 3285c81fef35475a88e78192ab50bbbcb507c28b SHA1 (patch-js_src_build_autoconf_moznbytetype.m4) = 2409b0ee9e889886c3f0fd2317d109fe9b51c699 SHA1 (patch-layout_style_nsCSSRuleProcessor.cpp) = 0b013cf6bb6ad7bdb1d20b48cb3e3c51ad813cbf SHA1 (patch-ma) = a20b263ff14c841fd0ae1634962b90a41173b524 diff --git a/devel/xulrunner192/patches/patch-gfx_thebes_src_gfxPangoFonts.cpp b/devel/xulrunner192/patches/patch-gfx_thebes_src_gfxPangoFonts.cpp new file mode 100644 index 00000000000..b85e89a7c4c --- /dev/null +++ b/devel/xulrunner192/patches/patch-gfx_thebes_src_gfxPangoFonts.cpp @@ -0,0 +1,16 @@ +$NetBSD: patch-gfx_thebes_src_gfxPangoFonts.cpp,v 1.1 2014/04/03 10:52:13 wiz Exp $ + +Fix build with freetype-2.5.1. + +--- gfx/thebes/src/gfxPangoFonts.cpp.orig 2012-03-06 14:45:28.000000000 +0000 ++++ gfx/thebes/src/gfxPangoFonts.cpp +@@ -61,7 +61,8 @@ + #include "gfxFontconfigUtils.h" + #include "gfxUserFontSet.h" + +-#include <freetype/tttables.h> ++#include <ft2build.h> ++#include FT_TRUETYPE_TABLES_H + + #include <cairo.h> + #include <cairo-ft.h> |