diff options
author | wiedi <wiedi@pkgsrc.org> | 2017-07-06 11:31:16 +0000 |
---|---|---|
committer | wiedi <wiedi@pkgsrc.org> | 2017-07-06 11:31:16 +0000 |
commit | c67cb24a262e8b59ab5dc6980ee6bb8b284a1125 (patch) | |
tree | 04d1dbc8282cee81d10bef2b4611821fd6186152 /editors | |
parent | 43dceced917d3e3c059b297fc93684b0b5343145 (diff) | |
download | pkgsrc-c67cb24a262e8b59ab5dc6980ee6bb8b284a1125.tar.gz |
termios.h is not just for SunOS
thanks wiz@
Diffstat (limited to 'editors')
-rw-r--r-- | editors/sandy/Makefile | 4 | ||||
-rw-r--r-- | editors/sandy/distinfo | 4 | ||||
-rw-r--r-- | editors/sandy/patches/patch-sandy.c | 10 |
3 files changed, 8 insertions, 10 deletions
diff --git a/editors/sandy/Makefile b/editors/sandy/Makefile index 7b0fecc98ab..5948bbf57a0 100644 --- a/editors/sandy/Makefile +++ b/editors/sandy/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.6 2016/04/01 16:51:16 jperkin Exp $ +# $NetBSD: Makefile,v 1.7 2017/07/06 11:31:16 wiedi Exp $ # DISTNAME= sandy-0.4 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_LOCAL} diff --git a/editors/sandy/distinfo b/editors/sandy/distinfo index 3faa2a06069..8179bfb9442 100644 --- a/editors/sandy/distinfo +++ b/editors/sandy/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.7 2017/07/06 09:09:02 wiedi Exp $ +$NetBSD: distinfo,v 1.8 2017/07/06 11:31:16 wiedi Exp $ SHA1 (sandy-0.4.tar.gz) = da5e8820e73ae3e849df469d32887c5227a15d74 RMD160 (sandy-0.4.tar.gz) = e230a230edf02f499ee5bbe57e3ac70cfcf228c0 SHA512 (sandy-0.4.tar.gz) = 3773c81aadeb4b55e3c77a9eecf447e2791ea43f9461d37a02a3e2eb84d9343f4951e3bb6d60f04059f12b4d9223aaaf1eed532fdad8f64726cc252af77dc7bb Size (sandy-0.4.tar.gz) = 19243 bytes -SHA1 (patch-sandy.c) = a9f09dc792314a2947a892961b995ce19a0c0c30 +SHA1 (patch-sandy.c) = 5fdeb40a4be64043c8f3b20a9aa956a06a24cf4a diff --git a/editors/sandy/patches/patch-sandy.c b/editors/sandy/patches/patch-sandy.c index 869c55a9409..67ea50fb68c 100644 --- a/editors/sandy/patches/patch-sandy.c +++ b/editors/sandy/patches/patch-sandy.c @@ -1,15 +1,13 @@ -$NetBSD: patch-sandy.c,v 1.1 2017/07/06 09:09:02 wiedi Exp $ +$NetBSD: patch-sandy.c,v 1.2 2017/07/06 11:31:16 wiedi Exp $ -Needs include for TIOCGWINSZ on SunOS +Needs include for TIOCGWINSZ --- sandy.c.orig 2011-04-01 16:05:58.000000000 +0000 +++ sandy.c -@@ -14,6 +14,10 @@ +@@ -14,6 +14,8 @@ #include <string.h> #include <curses.h> -+#if defined(__sun) -+#include <sys/termios.h> -+#endif ++#include <termios.h> + /* Defines */ #ifndef PIPESIZ /* This is POSIX magic */ |