summaryrefslogtreecommitdiff
path: root/misc/fep/files
diff options
context:
space:
mode:
Diffstat (limited to 'misc/fep/files')
-rw-r--r--misc/fep/files/patch-aa30
-rw-r--r--misc/fep/files/patch-fep_edit.c11
-rw-r--r--misc/fep/files/patch-fep_main.c11
3 files changed, 0 insertions, 52 deletions
diff --git a/misc/fep/files/patch-aa b/misc/fep/files/patch-aa
deleted file mode 100644
index b3afe291b31d..000000000000
--- a/misc/fep/files/patch-aa
+++ /dev/null
@@ -1,30 +0,0 @@
---- Makefile.orig Thu Jun 10 11:51:22 1993
-+++ Makefile Tue Feb 20 14:17:52 1996
-@@ -19,13 +19,13 @@
-
- #STAT = -DSTAT# Delete # for statistic info
- #KANJI = -DKANJI# Delete # for KANJI handling
--CONFIG = $(STAT) $(KANJI)
-+CONFIG = $(STAT) $(KANJI) -D_cnt=_r
-
- #DEBUG = -g
--DEBUG = -O
-+#DEBUG = -O
-
--CFLAGS = $(DEBUG) $(CONFIG)
-+CFLAGS += $(DEBUG) $(CONFIG)
--LDFLAGS = -ltermcap
-+LDFLAGS = -ltermcap -lcompat
-
- all: $(TARGET)
-
-@@ -37,7 +37,7 @@
-
- install: $(TARGET)
-- install -s $(TARGET) $(INSTDIR)
-+ $(BSD_INSTALL_PROGRAM) $(TARGET) $(PREFIX)/bin
-- install -c fep.1 /usr/man/manl/fep.l
-+ gzip -9n -c fep.1 > $(PREFIX)/man/man1/fep.1.gz
-
- fep.1: fep.jman
- sed -e '/^\.EG/d' -e '/^\.JP/,/^\.EJ/d' -e '/^\.\\"KS/,/^\.\\"KE/d' \
diff --git a/misc/fep/files/patch-fep_edit.c b/misc/fep/files/patch-fep_edit.c
deleted file mode 100644
index f07dcd08402e..000000000000
--- a/misc/fep/files/patch-fep_edit.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- fep_edit.c.orig Fri Jan 20 17:16:37 1995
-+++ fep_edit.c Thu Mar 6 09:42:13 2003
-@@ -426,7 +426,7 @@
-
- currentNull = strlen (CommandLine);
-
-- if (currentNull >= maxline) {
-+ if (currentNull + 1 >= maxline) {
- errorBell();
- return (0);
- }
diff --git a/misc/fep/files/patch-fep_main.c b/misc/fep/files/patch-fep_main.c
deleted file mode 100644
index fadf34ceae7c..000000000000
--- a/misc/fep/files/patch-fep_main.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- fep_main.c Tue Jun 4 22:01:30 2002
-+++ fep_main.c Tue Jun 4 22:01:53 2002
-@@ -638,7 +638,7 @@
-
- catchsig()
- {
-- union wait status;
-+ int status;
- struct rusage ru;
-
- if (wait3 (&status, WNOHANG | WUNTRACED, &ru) != child_pid)