diff options
author | joerg <joerg@pkgsrc.org> | 2005-12-09 16:01:55 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-12-09 16:01:55 +0000 |
commit | e26a4bd45e19ed40eed674e25d96ca457702450f (patch) | |
tree | cb751820827fe9c260ab5e1ecdb210537b2591c9 /editors | |
parent | ce59777d4137cae43650eb752b258acee39f91c4 (diff) | |
download | pkgsrc-e26a4bd45e19ed40eed674e25d96ca457702450f.tar.gz |
Do not use sys/select.h on DragonFly, it got broken by the
(also included) sys/queue.h.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/nvi/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editors/nvi/Makefile b/editors/nvi/Makefile index ccfd35c8bf8..df0b8e769ce 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 |