Disable fortify due to build failure

clamav defines a gets macro, which confuses fortify.  Until resolved,
disable fortify so that it builds.  (Note that SSP is still enabled;
clamav with SSP and without FORTIFY appears to work.)
This commit is contained in:
gdt 2017-07-10 00:22:15 +00:00
parent d482b82b5e
commit 7ae47d6d02

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.34 2017/01/05 11:27:21 roy Exp $
# $NetBSD: Makefile,v 1.35 2017/07/10 00:22:15 gdt Exp $
.include "Makefile.common"
@ -26,6 +26,10 @@ CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib}
# bomb the build
CONFIGURE_ARGS+= --disable-zlib-vcheck
# clamav shadows gets with a macro, which confuses FORTIFY. Disable
# until resolved.
PKGSRC_USE_FORTIFY=no
CHECK_PORTABILITY_SKIP= contrib/* unit_tests/* win32/*
.include "../../mk/bsd.prefs.mk"