diff options
author | schmonz <schmonz> | 2005-09-11 18:08:02 +0000 |
---|---|---|
committer | schmonz <schmonz> | 2005-09-11 18:08:02 +0000 |
commit | cd53464b5b780ce18eee80df5b73a34f05a8b24b (patch) | |
tree | e0645130b77628eae7bf34cf870cbbf845f0453f /editors | |
parent | f55a37c541540b5111a574f58c3724d6f929a56f (diff) | |
download | pkgsrc-cd53464b5b780ce18eee80df5b73a34f05a8b24b.tar.gz |
As on NetBSD, force vi_cv_sys5_pty=no on Darwin to fix build on 10.4.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/nvi/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editors/nvi/Makefile b/editors/nvi/Makefile index b438cfadfb8..5bdfe51eb9b 100644 --- a/editors/nvi/Makefile +++ b/editors/nvi/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2005/07/12 20:19:35 kristerw Exp $ +# $NetBSD: Makefile,v 1.18 2005/09/11 18:08:02 schmonz Exp $ # DISTNAME= nvi-1.81.5 @@ -19,6 +19,9 @@ CONFIGURE_ENV+= vi_cv_include_sys_select=no . endif # XXX ignore NetBSD 2.0F and later's granpt(2) and SysV pty for just now CONFIGURE_ENV+= vi_cv_sys5_pty=no +# XXX also ignore it on Darwin (fixes Tiger build) +.elif ${OPSYS} == "Darwin" +CONFIGURE_ENV+= vi_cv_sys5_pty=no .endif WRKSRC= ${WRKDIR}/${DISTNAME}/build.unix |