summaryrefslogtreecommitdiff
path: root/mail/pine4
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1998-01-29 19:53:08 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1998-01-29 19:53:08 +0000
commitd6d8b0d5b86b1f6d09624023f1a612097fb7bb7f (patch)
treeefbaacd337ca76c536cae2c9a3efcebedd3ec585 /mail/pine4
parentActivate kinemage (diff)
Teach pine/pico about End key
Set proper directory for pico mail check Trust termcap more then built-in defaults
Notes
Notes: svn path=/head/; revision=9514
Diffstat (limited to 'mail/pine4')
-rw-r--r--mail/pine4/files/patch-an32
-rw-r--r--mail/pine4/files/patch-ap20
2 files changed, 52 insertions, 0 deletions
diff --git a/mail/pine4/files/patch-an b/mail/pine4/files/patch-an
new file mode 100644
index 000000000000..c0b69d687620
--- /dev/null
+++ b/mail/pine4/files/patch-an
@@ -0,0 +1,32 @@
+*** pico/os_unix.h.orig Thu Jun 13 00:47:23 1996
+--- pico/os_unix.h Thu Jan 29 21:29:51 1998
+***************
+*** 122,133 ****
+ /*
+ * Place where mail gets delivered (for pico's new mail checking)
+ */
+ #if defined(sv3) || defined(ct) || defined(isc) || defined(AUX) || defined(sgi)
+ #define MAILDIR "/usr/mail"
+ #else
+ #define MAILDIR "/usr/spool/mail"
+ #endif
+!
+
+ /*
+ * What and where the tool that checks spelling is located. If this is
+--- 122,136 ----
+ /*
+ * Place where mail gets delivered (for pico's new mail checking)
+ */
++ #ifdef __FreeBSD__
++ #define MAILDIR "/var/mail"
++ #else
+ #if defined(sv3) || defined(ct) || defined(isc) || defined(AUX) || defined(sgi)
+ #define MAILDIR "/usr/mail"
+ #else
+ #define MAILDIR "/usr/spool/mail"
+ #endif
+! #endif
+
+ /*
+ * What and where the tool that checks spelling is located. If this is
diff --git a/mail/pine4/files/patch-ap b/mail/pine4/files/patch-ap
new file mode 100644
index 000000000000..4a7155a3732d
--- /dev/null
+++ b/mail/pine4/files/patch-ap
@@ -0,0 +1,20 @@
+*** pine/ttyout.c.bak Thu Jul 11 05:45:56 1996
+--- pine/ttyout.c Thu Jan 29 22:17:48 1998
+***************
+*** 289,295 ****
+ _kppu = tgetstr("kP", &ptr);
+ _kppd = tgetstr("kN", &ptr);
+ _kphome = tgetstr("kh", &ptr);
+! _kpend = tgetstr("kE", &ptr);
+ _kpdel = tgetstr("kD", &ptr);
+ _kf1 = tgetstr("k1", &ptr);
+ _kf2 = tgetstr("k2", &ptr);
+--- 289,296 ----
+ _kppu = tgetstr("kP", &ptr);
+ _kppd = tgetstr("kN", &ptr);
+ _kphome = tgetstr("kh", &ptr);
+! if((_kpend = tgetstr("@7", &ptr)) == NULL)
+! _kpend = tgetstr("kE", &ptr);
+ _kpdel = tgetstr("kD", &ptr);
+ _kf1 = tgetstr("k1", &ptr);
+ _kf2 = tgetstr("k2", &ptr);