summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1999-11-27 01:06:06 +0000
committerSteve Price <steve@FreeBSD.org>1999-11-27 01:06:06 +0000
commit811cad2cccffad84265cd9d5004b6efd0baeadf2 (patch)
treed2fac3ae8dd42a26b957a62df602d76af7b9db48 /editors
parentUpdate to version 1.0.1. (diff)
* 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
Notes
Notes: svn path=/head/; revision=23428
Diffstat (limited to 'editors')
-rw-r--r--editors/bvi/Makefile2
-rw-r--r--editors/bvi/files/patch-ab11
2 files changed, 12 insertions, 1 deletions
diff --git a/editors/bvi/Makefile b/editors/bvi/Makefile
index db109982aaca..59a77ed5d425 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 000000000000..2503c09c8149
--- /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");