summaryrefslogtreecommitdiff
path: root/editors/beav
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2006-08-22 19:01:27 +0000
committerjoerg <joerg@pkgsrc.org>2006-08-22 19:01:27 +0000
commitabdd326d5036ef9b0bf32e25db351cea6936f63d (patch)
treeaffe99aef2a3fcd106ab2a1e879cf8395d998077 /editors/beav
parent2310cebbea8ada32bac8961f6755ed465c7daa0d (diff)
downloadpkgsrc-abdd326d5036ef9b0bf32e25db351cea6936f63d.tar.gz
Remove some manual ANSI C prototyping and kill clock() prototype
conflicting with time.h on DragonFly.
Diffstat (limited to 'editors/beav')
-rw-r--r--editors/beav/distinfo5
-rw-r--r--editors/beav/patches/patch-ae12
-rw-r--r--editors/beav/patches/patch-aj19
3 files changed, 32 insertions, 4 deletions
diff --git a/editors/beav/distinfo b/editors/beav/distinfo
index 40dbc52143a..b13f238360e 100644
--- a/editors/beav/distinfo
+++ b/editors/beav/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.4 2005/12/09 13:56:51 joerg Exp $
+$NetBSD: distinfo,v 1.5 2006/08/22 19:01:27 joerg Exp $
SHA1 (beav_1.40-11.tar.gz) = 2d15f44fcb1988c90b2803ad52c2488862505c1a
RMD160 (beav_1.40-11.tar.gz) = 7ccd25dedea314e923dad0c54f859025ddf25a19
@@ -7,7 +7,8 @@ SHA1 (patch-aa) = f41e723c0ec5e1dcdd2160e0c71fb960af5d0ca7
SHA1 (patch-ab) = 080d2fd3f0ed805175b75788cc7be1e4e38a6719
SHA1 (patch-ac) = 44c1414034a8515701d37e7f35e1563eca41f1ab
SHA1 (patch-ad) = a3f54c403af9fca03fe492d8a92441f1d266933e
-SHA1 (patch-ae) = 7ef6ade28bc4861c680f75e27ba5968f1f1b8eed
+SHA1 (patch-ae) = 74e821fad89db2cc4d9a2a41eb3aacfaf64d6f7e
SHA1 (patch-af) = 7990538e06f8cf08785cc512243d8609480d5727
SHA1 (patch-ag) = 27788a78334a83abb48b964f219dfbffce4ccc79
SHA1 (patch-ai) = 83071e6e15bd3875c278660db9038b249ec2f64d
+SHA1 (patch-aj) = 717b63eee6e891d0deed272d929686efd055fde9
diff --git a/editors/beav/patches/patch-ae b/editors/beav/patches/patch-ae
index 5a7dcf63235..6ab4e2a303b 100644
--- a/editors/beav/patches/patch-ae
+++ b/editors/beav/patches/patch-ae
@@ -1,6 +1,6 @@
-$NetBSD: patch-ae,v 1.1 2005/12/09 13:56:51 joerg Exp $
+$NetBSD: patch-ae,v 1.2 2006/08/22 19:01:27 joerg Exp $
---- symbol.c.orig 2005-12-09 13:51:59.000000000 +0000
+--- symbol.c.orig 1997-12-13 08:34:59.000000000 +0000
+++ symbol.c
@@ -6,10 +6,6 @@
*/
@@ -13,3 +13,11 @@ $NetBSD: patch-ae,v 1.1 2005/12/09 13:56:51 joerg Exp $
extern char MSG_byte_shift[];
extern char MSG_back_char[];
extern char MSG_quit[];
+@@ -219,7 +215,6 @@ extern char save_region (); /* Save regi
+ * Defined by "spawn.c".
+ */
+ extern char spawncli (); /* Run CLI in a subjob. */
+-extern char clock (); /* display time in modeline */
+
+ /*
+ * Defined by "window.c".
diff --git a/editors/beav/patches/patch-aj b/editors/beav/patches/patch-aj
new file mode 100644
index 00000000000..f35a5b5d0d4
--- /dev/null
+++ b/editors/beav/patches/patch-aj
@@ -0,0 +1,19 @@
+$NetBSD: patch-aj,v 1.1 2006/08/22 19:01:27 joerg Exp $
+
+--- def.h.orig 2006-08-22 21:00:58.000000000 +0000
++++ def.h
+@@ -563,12 +563,8 @@ extern int flush_count;
+ extern int rowb;
+ extern char file_off_bad;
+
+-/*
+- * Standard I/O.
+- */
+-extern char *malloc ();
+-extern char *strcpy ();
+-extern char *strcat ();
++#include <stdlib.h>
++#include <string.h>
+
+ #ifndef NOPROTO
+ #include "prototyp.h"