diff options
author | tv <tv@pkgsrc.org> | 1999-05-02 03:16:58 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 1999-05-02 03:16:58 +0000 |
commit | 7f6b91d55353afff6ea6daaf83aae73f43058744 (patch) | |
tree | 928dbf6ba0ce783977c3122873a2bf81097bcab9 /editors/pico/patches | |
parent | b83f445f4ac95e558128a7424ed690783a9a8cf1 (diff) | |
download | pkgsrc-7f6b91d55353afff6ea6daaf83aae73f43058744.tar.gz |
Update Pico to 3.5 and Pine to 4.10.
Diffstat (limited to 'editors/pico/patches')
-rw-r--r-- | editors/pico/patches/patch-aa | 4 | ||||
-rw-r--r-- | editors/pico/patches/patch-ad | 43 | ||||
-rw-r--r-- | editors/pico/patches/patch-ae | 14 |
3 files changed, 18 insertions, 43 deletions
diff --git a/editors/pico/patches/patch-aa b/editors/pico/patches/patch-aa index 5e29eaf63ae..b09a82e37ba 100644 --- a/editors/pico/patches/patch-aa +++ b/editors/pico/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.7 1998/11/13 15:56:24 tv Exp $ +$NetBSD: patch-aa,v 1.8 1999/05/02 03:16:59 tv Exp $ --- pico/makefile.neb.orig Mon Jun 29 18:23:50 1998 +++ pico/makefile.neb Sun Sep 27 12:30:46 1998 @@ -43,7 +43,7 @@ $NetBSD: patch-aa,v 1.7 1998/11/13 15:56:24 tv Exp $ - $(RANLIB) libpico.a +libpico.la: $(OFILES) + $(CC) -o libpico.la $(OFILES:.o=.lo) -rpath $(PREFIX)/lib \ -+ -version-info 1:0 ++ -version-info 2:0 clean: rm -f *.a *.o *~ pico_os.c os.h pico pilot diff --git a/editors/pico/patches/patch-ad b/editors/pico/patches/patch-ad index 81d1fde0d12..f6a93cfa84c 100644 --- a/editors/pico/patches/patch-ad +++ b/editors/pico/patches/patch-ad @@ -1,35 +1,24 @@ -$NetBSD: patch-ad,v 1.1 1998/11/13 15:56:24 tv Exp $ +$NetBSD: patch-ad,v 1.2 1999/05/02 03:16:59 tv Exp $ ---- pico/osdep/os-neb.h.orig Wed Jun 24 17:57:46 1998 -+++ pico/osdep/os-neb.h Sun Sep 27 17:36:40 1998 -@@ -41,8 +41,8 @@ +--- pico/osdep/os-neb.h.orig Wed Feb 3 15:15:27 1999 ++++ pico/osdep/os-neb.h Fri Apr 23 16:19:54 1999 +@@ -54,8 +54,8 @@ - /*----------------- locale.h -------------------------------------------*/ --/* #include <locale.h> /* To make matching and sorting work right */ --#define collator strucmp -+#include <locale.h> /* To make matching and sorting work right */ -+#define collator strcasecmp + /*--------------- signal.h ---------------------------------------------*/ +-/* #include <signal.h> */ /* sometimes both required, sometimes */ +-#include <sys/signal.h> /* only one or the other */ ++#include <signal.h> /* sometimes both required, sometimes */ ++/* #include <sys/signal.h> */ /* only one or the other */ + #define SigType void /* value returned by sig handlers is void */ + /* #define SigType int */ /* value returned by sig handlers is int */ +@@ -81,7 +81,7 @@ + /*-------------- fcntl flag to set non-blocking IO ---------------------*/ + /*#define NON_BLOCKING_IO O_NONBLOCK */ /* POSIX style */ +-/*#define NON_BLOCKING_IO FNDELAY */ /* good ol' bsd style */ ++#define NON_BLOCKING_IO FNDELAY /* good ol' bsd style */ -@@ -68,8 +68,8 @@ - /*-------------- A couple typedef's for integer sizes ------------------*/ --typedef unsigned int usign32_t; --typedef unsigned short usign16_t; -+typedef u_int32_t usign32_t; -+typedef u_int16_t usign16_t; - - - -@@ -155,7 +155,7 @@ - /* - * Place where mail gets delivered (for pico's new mail checking) - */ --#define MAILDIR "/usr/spool/mail" -+#define MAILDIR "/var/mail" - - /* - * What and where the tool that checks spelling is located. If this is diff --git a/editors/pico/patches/patch-ae b/editors/pico/patches/patch-ae deleted file mode 100644 index 9dc4209e1b0..00000000000 --- a/editors/pico/patches/patch-ae +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-ae,v 1.1 1998/11/13 15:56:24 tv Exp $ - ---- pico/display.c.orig Fri Jun 19 13:19:53 1998 -+++ pico/display.c Sun Sep 27 12:33:15 1998 -@@ -128,8 +128,7 @@ - VIDEO **vscreen; /* Virtual screen. */ - VIDEO **pscreen; /* Physical screen. */ - --#define ISCONTROL(C) ((C) < 0x20 || (C) == 0x7F \ -- || ((gmode & P_HICTRL) && ((C) > 0x7F && (C) < 0xA0))) -+#define ISCONTROL(C) ((C) < 0x20 || (C) == 0x7F || ((C) >= 0x80 && (C) < 0xA0)) - - - /* |