diff options
author | manu <manu@pkgsrc.org> | 2018-08-28 21:25:15 +0000 |
---|---|---|
committer | manu <manu@pkgsrc.org> | 2018-08-28 21:25:15 +0000 |
commit | 6a698bc6220422ea58b1c887b84e01c6cefc795d (patch) | |
tree | d76a9a0fb1d1dff2cfe391e6b080745fdba96215 | |
parent | 040765ef02f650bb20b15c25ac2eb4dd06845fe7 (diff) | |
download | pkgsrc-6a698bc6220422ea58b1c887b84e01c6cefc795d.tar.gz |
Build gix for mail/hypermail: disable fortify
hypermail uses libtrio, which overloads <stdio.h> functions by macros.
With _FORTIFY_SOURCE > 0, <stdio.h> loads <ssp/stdio.h> which does
the same, and we get macro redefinition errors.
-rw-r--r-- | mail/hypermail/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/hypermail/Makefile b/mail/hypermail/Makefile index dc4c7772fa4..62c34ecd520 100644 --- a/mail/hypermail/Makefile +++ b/mail/hypermail/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2018/01/28 20:10:54 wiz Exp $ +# $NetBSD: Makefile,v 1.21 2018/08/28 21:25:15 manu Exp $ # DISTNAME= hypermail-2.3.0 @@ -16,6 +16,7 @@ WRKSRC= ${WRKDIR}/${PKGBASE} GNU_CONFIGURE= yes USE_TOOLS+= yacc +FORTIFY_SUPPORTED= no LDFLAGS+= -liconv |