summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
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");