diff options
author | wiz <wiz@pkgsrc.org> | 2001-01-23 15:36:27 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2001-01-23 15:36:27 +0000 |
commit | c6c1a479557d67c75c83d5f82c350433b65b115a (patch) | |
tree | 15e88974ae48aeecc098a4457b3488b5134f2295 /editors | |
parent | 38f3fba5d83dba2389fd405894344dd178b68a0d (diff) | |
download | pkgsrc-c6c1a479557d67c75c83d5f82c350433b65b115a.tar.gz |
Fix build with curses on 1.5 (extern int *MK was making trouble).
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vile/files/patch-sum | 3 | ||||
-rw-r--r-- | editors/vile/patches/patch-ac | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/editors/vile/files/patch-sum b/editors/vile/files/patch-sum index bbecf242bcc..83cd891b5d0 100644 --- a/editors/vile/files/patch-sum +++ b/editors/vile/files/patch-sum @@ -1,4 +1,5 @@ -$NetBSD: patch-sum,v 1.2 2000/09/06 08:16:15 jlam Exp $ +$NetBSD: patch-sum,v 1.3 2001/01/23 15:36:27 wiz Exp $ MD5 (patch-aa) = ecbb9df7a9298ec0e0abbf3dc2608410 MD5 (patch-ab) = cff7a55b86e08a4418f2c9f046805144 +MD5 (patch-ac) = 24c982c151cc478b6d8244cd285c7abd diff --git a/editors/vile/patches/patch-ac b/editors/vile/patches/patch-ac new file mode 100644 index 00000000000..c1bf3068f2c --- /dev/null +++ b/editors/vile/patches/patch-ac @@ -0,0 +1,12 @@ +$NetBSD: patch-ac,v 1.1 2001/01/23 15:36:28 wiz Exp $ + +--- tcap.h.orig Mon Feb 23 06:27:56 1998 ++++ tcap.h +@@ -14,6 +14,7 @@ + #undef TRUE + #undef FALSE + #undef WINDOW /* avoid conflict with <curses.h> or <term.h> */ ++#undef MK /* avoid conflict with <curses.h> */ + + #if NEED_CURSES_H + # if HAVE_NCURSES_H |