diff options
author | joerg <joerg> | 2006-01-04 21:22:06 +0000 |
---|---|---|
committer | joerg <joerg> | 2006-01-04 21:22:06 +0000 |
commit | ec79e89c3f22198b10cfdcd1631839217e6dc022 (patch) | |
tree | 9321b0d5bf4b0f0ea1e947478da30932440b4b6a /editors | |
parent | 28c9e6494fd8b69d56f33c294ca45198ce49aa76 (diff) | |
download | pkgsrc-ec79e89c3f22198b10cfdcd1631839217e6dc022.tar.gz |
DragonFly, FreeBSD and OpenBSD ship sys/queue.h just like nvi, so
assume they also provide a superset. This fixes conflicts in sys/select.h
on DragonFly.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/nvi-m17n/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/editors/nvi-m17n/Makefile b/editors/nvi-m17n/Makefile index db58c71859a..269adc28842 100644 --- a/editors/nvi-m17n/Makefile +++ b/editors/nvi-m17n/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2005/12/19 16:09:57 taca Exp $ +# $NetBSD: Makefile,v 1.36 2006/01/04 21:22:06 joerg Exp $ DISTNAME= nvi-1.79 PKGNAME= nvi-m17n-1.79.20040401 @@ -53,7 +53,8 @@ CONFIGURE_ENV+= vi_cv_sys5_pty=no .endif post-patch: -.if ${OPSYS} == "NetBSD" +.if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly" || \ + ${OPSYS} == "FreeBSD" || ${OPSYS} == "OpenBSD" ${RM} -f ${WRKSRC}/include/sys/queue.h .endif |