diff options
author | agc <agc@pkgsrc.org> | 2004-09-16 10:51:17 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2004-09-16 10:51:17 +0000 |
commit | 81ef8027d1f9e0b34ef5a5288914fc8485ac9d1a (patch) | |
tree | 1b9c0f76d2334331d63572003c102ec17a748bb7 /editors/nvi-m17n | |
parent | ca8f1227859d60d74e60af3f20b475fd498e7ddf (diff) | |
download | pkgsrc-81ef8027d1f9e0b34ef5a5288914fc8485ac9d1a.tar.gz |
Use the same mechanism as used in nvi to switch off checks for grantpt(3)
and other System V options for now. Fixes a problem in the bulk build, and
addresses PR 26967.
Diffstat (limited to 'editors/nvi-m17n')
-rw-r--r-- | editors/nvi-m17n/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/editors/nvi-m17n/Makefile b/editors/nvi-m17n/Makefile index 7ae73c2c522..104381e020e 100644 --- a/editors/nvi-m17n/Makefile +++ b/editors/nvi-m17n/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2004/04/12 11:09:01 xtraeme Exp $ +# $NetBSD: Makefile,v 1.27 2004/09/16 10:51:17 agc Exp $ # FreeBSD Id: Makefile,v 1.11 1999/04/17 10:51:03 itojun Exp DISTNAME= nvi-1.79 @@ -55,6 +55,11 @@ AUTODETECT.iso-2022-kr=kr ENCODING+= iso-2022-cn iso-2022-jp iso-2022-kr ENCODING+= euc-jp euc-cn euc-kr sjis big5 euc-tw hz +.if ${OPSYS} == "NetBSD" +# XXX ignore NetBSD 2.0F and later's grantpt(3) and SysV pty for just now +CONFIGURE_ENV+= vi_cv_sys5_pty=no +.endif + post-patch: .if ${OPSYS} == "NetBSD" ${RM} -f ${WRKSRC}/../include/sys/queue.h |