diff options
author | ben <ben@pkgsrc.org> | 2006-01-01 19:40:43 +0000 |
---|---|---|
committer | ben <ben@pkgsrc.org> | 2006-01-01 19:40:43 +0000 |
commit | 9e9372592b844098a77c3afdccc236cad6c0e5cc (patch) | |
tree | a150e2c2fe38ce177e66771c22ff0ed9c2c273a8 /mail/mutt/Makefile | |
parent | 354a75fbb8a9ebcfda9871927ab22bb036dd07f5 (diff) | |
download | pkgsrc-9e9372592b844098a77c3afdccc236cad6c0e5cc.tar.gz |
Because of an Interix bug involving fork and stderr, mutt fails to exec
sendmail, which prevents mutt from sending messages. patch-am works
around this issue by postponing the closing of all file descriptors
until after the fork.
Diffstat (limited to 'mail/mutt/Makefile')
-rw-r--r-- | mail/mutt/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/mutt/Makefile b/mail/mutt/Makefile index e0d908a67af..c233bdac215 100644 --- a/mail/mutt/Makefile +++ b/mail/mutt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.133 2006/01/01 13:28:02 ben Exp $ +# $NetBSD: Makefile,v 1.134 2006/01/01 19:40:43 ben Exp $ DISTNAME= mutt-1.4.2.1i PKGNAME= ${DISTNAME:C/i$//} @@ -43,6 +43,7 @@ SUBST_MESSAGE.mgroup= "Configuring mail group." SUBST_STAGE.mgroup= post-patch SUBST_FILES.mgroup= configure SUBST_SED.mgroup= -e "s,DOTLOCK_GROUP='mail',DOTLOCK_GROUP='+Administrators'," +CPPFLAGS+= -D__BROKEN_INTERIX_FORK .endif # There is a problem using /bin/sh on old NetBSD releases, so use /bin/ksh |