diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2009-06-14 02:32:04 +0800 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2009-06-14 02:32:04 +0800 |
commit | f39c5a0dd6e882d6d571f0df468dac0780b15090 (patch) | |
tree | ffa2db329bbd89303972ea1f0f67348fde036b0e /misc/splitvt | |
parent | 4dcf1a34b01059f1a24c55be9d9e15ae108d4219 (diff) | |
download | freebsd-ports-gnome-f39c5a0dd6e882d6d571f0df468dac0780b15090.tar.gz freebsd-ports-gnome-f39c5a0dd6e882d6d571f0df468dac0780b15090.tar.zst freebsd-ports-gnome-f39c5a0dd6e882d6d571f0df468dac0780b15090.zip |
- Broken on 8.x
Reported by: pointyhat
Diffstat (limited to 'misc/splitvt')
-rw-r--r-- | misc/splitvt/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/misc/splitvt/Makefile b/misc/splitvt/Makefile index d44de818bb88..b2fcc1c79872 100644 --- a/misc/splitvt/Makefile +++ b/misc/splitvt/Makefile @@ -19,6 +19,12 @@ HAS_CONFIGURE= yes ALL_TARGET= MAN1= splitvt.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 800000 +BROKEN= does not compile: /usr/include/sys/ioctl_compat.h:42:2: Definitions not available without TTY ioctl compat +.endif + post-patch: ${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},g' ${WRKSRC}/config.c @@ -26,4 +32,4 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/splitvt ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/splitvt.1 ${PREFIX}/man/man1 -.include <bsd.port.mk> +.include <bsd.port.post.mk> |