diff options
author | nia <nia@pkgsrc.org> | 2019-09-30 15:36:43 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2019-09-30 15:36:43 +0000 |
commit | cfa617681b5d6277851d17943228c639aad52f53 (patch) | |
tree | 790bedd0b6e98fda7180da35dd80f079a6828fbb /editors | |
parent | 5b95a0c0c153479f04c57d0425662cc1953b7042 (diff) | |
download | pkgsrc-cfa617681b5d6277851d17943228c639aad52f53.tar.gz |
codelite: Work around harfbuzz headers for pango not being in the -I path.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/codelite/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editors/codelite/Makefile b/editors/codelite/Makefile index ae1f98cb577..b286e169ce6 100644 --- a/editors/codelite/Makefile +++ b/editors/codelite/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2019/08/28 09:09:19 wiz Exp $ +# $NetBSD: Makefile,v 1.24 2019/09/30 15:36:43 nia Exp $ DISTNAME= codelite-13.0 PKGREVISION= 1 @@ -20,6 +20,9 @@ CMAKE_ARGS+= -DPREFIX:STRING=${PREFIX} # For some reason CMAKE_ARGS.NetBSD+=-DIS_NETBSD:STRING=1 doesn't work for me .include "../../mk/bsd.prefs.mk" +# Likely needed because pango's pkgconfig CFLAGS aren't being applied. +CXXFLAGS+= -I${BUILDLINK_DIR}/include/harfbuzz + CHECK_PORTABILITY_SKIP+= sdk/wxsqlite3/configure .if ${OPSYS} == "NetBSD" |