diff options
author | dholland <dholland@pkgsrc.org> | 2012-01-08 22:19:03 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2012-01-08 22:19:03 +0000 |
commit | 0a10375afdb83b86ea951067481c41ba7556a31f (patch) | |
tree | 32f437209600e495b740ec9aac383d2000751bf5 | |
parent | 760a548589b9ca62519ac9ac51a2663574863d62 (diff) | |
download | pkgsrc-0a10375afdb83b86ea951067481c41ba7556a31f.tar.gz |
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.
-rw-r--r-- | www/amaya/hacks.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/www/amaya/hacks.mk b/www/amaya/hacks.mk new file mode 100644 index 00000000000..5b279aee38e --- /dev/null +++ b/www/amaya/hacks.mk @@ -0,0 +1,9 @@ +# $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 + |