diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2019-12-10 08:01:12 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2019-12-10 08:01:12 +0000 |
commit | db617552ec7defe6fb6d6e939b3ffc782a737870 (patch) | |
tree | 9819a12dc4d9db2e924e46f47b8bf20ab6a1fc2b | |
parent | sysutils/hatop: Fix patch added in previous commit (diff) |
Fix build on GCC-based systems:
/usr/local/lib/libgraphite2.so.3: undefined reference to `__cxa_throw_bad_array_new_length@CXXABI_1.3.8'
Approved by: portmgr (tier-2 blanket)
Notes
Notes:
svn path=/head/; revision=519649
-rw-r--r-- | print/ttfautohint/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print/ttfautohint/Makefile b/print/ttfautohint/Makefile index 9cf6ef72baf0..9222d731b28f 100644 --- a/print/ttfautohint/Makefile +++ b/print/ttfautohint/Makefile @@ -22,7 +22,7 @@ BUILD_DEPENDS= freetype2>=2.4.5:print/freetype2 \ LIB_DEPENDS= libfreetype.so:print/freetype2 \ libharfbuzz.so:print/harfbuzz -USES= gmake libtool pkgconfig +USES= compiler:c++11-lang gmake libtool pkgconfig CONFIGURE_ARGS= --with-doc=no --with-qt=no GNU_CONFIGURE= yes |