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 | e0c610973acdacfebaabef6a455b727e39de8118 (patch) | |
tree | 0012c1e78e40913d77140418348eedfad5fb34f6 /mail | |
parent | 56d4fa9d4fc8474d80cd6618c933662c196d2624 (diff) | |
download | pkgsrc-e0c610973acdacfebaabef6a455b727e39de8118.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')
-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. # |