pkgsrc/www/amaya/hacks.mk
dholland a5e13a9ff1 Add a workaround for PR 45266 (krb5-config issue in NetBSD base):
clear BUILDLINK_INCDIRS.heimdal. Otherwise -I/usr/include/krb5 appears
in CFLAGS, which breaks the build because the compiler finds krb5's
base64.h instead of Amaya's. krb5 is pulled in by curl, which is a
several-times-indirect dependency, and nothing in this package uses
it, or apparently anything that needs it, directly.
2012-01-08 22:19:03 +00:00

9 lines
190 B
Makefile

# $NetBSD: hacks.mk,v 1.1 2012/01/08 22:19:03 dholland Exp $
.include "../../mk/bsd.prefs.mk"
# Workaround for PR 45266
.if ${OPSYS} == "NetBSD"
BUILDLINK_INCDIRS.heimdal= # empty
.endif