diff options
author | grant <grant@pkgsrc.org> | 2004-12-18 16:24:20 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-12-18 16:24:20 +0000 |
commit | 507eee2dac0a7c8d0c0d2ee9961f63db96b0c7f4 (patch) | |
tree | 0012c1e78e40913d77140418348eedfad5fb34f6 /mail/mutt | |
parent | 820732f1a106b1146a8961f17129e1046ed71ab6 (diff) | |
download | pkgsrc-507eee2dac0a7c8d0c0d2ee9961f63db96b0c7f4.tar.gz |
ignore inttypes.h on irix 5 as it is known to conflict with
sys/types.h.
fixes PR pkg/28632 from Georg Schwarz.
Diffstat (limited to 'mail/mutt')
-rw-r--r-- | mail/mutt/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/mutt/Makefile b/mail/mutt/Makefile index 7dae79e878f..c2998b3211a 100644 --- a/mail/mutt/Makefile +++ b/mail/mutt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.122 2004/10/03 00:12:53 tv Exp $ +# $NetBSD: Makefile,v 1.123 2004/12/18 16:24:20 grant Exp $ DISTNAME= mutt-1.4.2.1i PKGNAME= ${DISTNAME:C/i$//} @@ -33,6 +33,10 @@ CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} \ CONFIGURE_ARGS+= --without-wc-funcs .endif +.if ${LOWER_OPSYS} == "irix5.3" +CONFIGURE_ENV+= ac_cv_header_inttypes_h=no +.endif + # There is a problem using /bin/sh on old NetBSD releases, so use /bin/ksh # there. # |