diff options
author | wiz <wiz> | 2006-03-02 19:52:01 +0000 |
---|---|---|
committer | wiz <wiz> | 2006-03-02 19:52:01 +0000 |
commit | 1492f81612f3108e8bd4a9cb24aa408cbff48bd7 (patch) | |
tree | 9f017991f57cc3ffc11009b973b5a84c3b02b81f /editors | |
parent | 38ed65050ec4a04216a22059337c61dd01657c6f (diff) | |
download | pkgsrc-1492f81612f3108e8bd4a9cb24aa408cbff48bd7.tar.gz |
Fix build on NetBSD>=3.0.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vigor/distinfo | 3 | ||||
-rw-r--r-- | editors/vigor/patches/patch-ad | 22 |
2 files changed, 24 insertions, 1 deletions
diff --git a/editors/vigor/distinfo b/editors/vigor/distinfo index 90d7dced4e4..85ac16212ac 100644 --- a/editors/vigor/distinfo +++ b/editors/vigor/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.6 2005/11/03 21:24:29 rillig Exp $ +$NetBSD: distinfo,v 1.7 2006/03/02 19:52:01 wiz Exp $ SHA1 (vigor-0.016.tar.gz) = cbbd7db8226421b86c50799178033c4248753706 RMD160 (vigor-0.016.tar.gz) = 52cf417f85560b46f140d6f1093133eccbd2fc43 @@ -6,3 +6,4 @@ Size (vigor-0.016.tar.gz) = 1108486 bytes SHA1 (patch-aa) = 2ea52fe10dff6f2445ca0fd870065103b11b59cd SHA1 (patch-ab) = 2016eb247f7f747ca80041fac2ad15709f7e7a80 SHA1 (patch-ac) = ab9924eaa775f17f9c51c1129a9cf2932035b9ab +SHA1 (patch-ad) = 1052f71d407e054600e3971ceac2eb48018eee53 diff --git a/editors/vigor/patches/patch-ad b/editors/vigor/patches/patch-ad new file mode 100644 index 00000000000..9360765bc4d --- /dev/null +++ b/editors/vigor/patches/patch-ad @@ -0,0 +1,22 @@ +$NetBSD: patch-ad,v 1.1 2006/03/02 19:52:01 wiz Exp $ + +--- ex/ex_script.c.orig 2000-05-03 02:28:05.000000000 +0000 ++++ ex/ex_script.c +@@ -23,7 +23,7 @@ static const char sccsid[] = "@(#)ex_scr + #include <sys/select.h> + #endif + #include <sys/stat.h> +-#ifdef HAVE_SYS5_PTY ++#if defined(HAVE_SYS5_PTY) && !defined(__NetBSD__) + #include <sys/stropts.h> + #endif + #include <sys/time.h> +@@ -625,7 +625,7 @@ sscr_check(sp) + F_CLR(gp, G_SCRWIN); + } + +-#ifdef HAVE_SYS5_PTY ++#if defined(HAVE_SYS5_PTY) && !defined(__NetBSD__) + static int ptys_open __P((int, char *)); + static int ptym_open __P((char *)); + |