diff options
author | steve <steve@FreeBSD.org> | 1999-11-27 01:06:06 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-11-27 01:06:06 +0000 |
commit | 0bfcb17fd234781181ca818539ef846a88be8bc4 (patch) | |
tree | b7462120554f13c6f2a100e22e69967045650e6f /editors | |
parent | 7c72419457957903c915c4c435899ebe4b68684d (diff) | |
download | FreeBSD-ports-0bfcb17fd234781181ca818539ef846a88be8bc4.zip FreeBSD-ports-0bfcb17fd234781181ca818539ef846a88be8bc4.tar.gz |
* Changes prompted by Christian Weisgerber <naddy@mips.rhein-neckar.de>:
* gmake not needed
* link bview.1 -> bvi.1
* patch io.c
PR: 15104
Submitted by: maintainer
Diffstat (limited to 'editors')
-rw-r--r-- | editors/bvi/Makefile | 2 | ||||
-rw-r--r-- | editors/bvi/files/patch-ab | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/editors/bvi/Makefile b/editors/bvi/Makefile index db10998..59a77ed 100644 --- a/editors/bvi/Makefile +++ b/editors/bvi/Makefile @@ -14,8 +14,8 @@ EXTRACT_SUFX= .src.tar.gz MAINTAINER= jedgar@fxp.org GNU_CONFIGURE= yes -USE_GMAKE= yes MAN1= bvi.1 +MLINKS= bvi.1 bview.1 .include <bsd.port.mk> diff --git a/editors/bvi/files/patch-ab b/editors/bvi/files/patch-ab new file mode 100644 index 0000000..2503c09 --- /dev/null +++ b/editors/bvi/files/patch-ab @@ -0,0 +1,11 @@ +--- io.c.orig Tue Nov 2 04:44:10 1999 ++++ io.c Fri Nov 26 18:06:58 1999 +@@ -119,7 +119,7 @@ + } else if (S_ISBLK(buf.st_mode)) { + filemode = BLOCK_SPECIAL; + } else if (S_ISREG(buf.st_mode)) { +- if ((unsigned long)buf.st_size > (unsigned long)SIZE_T_MAX) { ++ if (buf.st_size > SIZE_T_MAX) { + move(maxy, 0); + endwin(); + printf("File too large\n"); |