From e26a4bd45e19ed40eed674e25d96ca457702450f Mon Sep 17 00:00:00 2001 From: joerg Date: Fri, 9 Dec 2005 16:01:55 +0000 Subject: [PATCH] Do not use sys/select.h on DragonFly, it got broken by the (also included) sys/queue.h. --- editors/nvi/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/editors/nvi/Makefile b/editors/nvi/Makefile index ccfd35c8bf87..df0b8e769cec 100644 --- a/editors/nvi/Makefile +++ b/editors/nvi/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2005/12/05 20:50:10 rillig Exp $ +# $NetBSD: Makefile,v 1.20 2005/12/09 16:01:55 joerg Exp $ # DISTNAME= nvi-1.81.5 @@ -20,6 +20,8 @@ CONFIGURE_ENV+= vi_cv_include_sys_select=no # 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} == "DragonFly" +CONFIGURE_ENV+= vi_cv_include_sys_select=no .elif ${OPSYS} == "Darwin" CONFIGURE_ENV+= vi_cv_sys5_pty=no .endif