diff options
author | joerg <joerg@pkgsrc.org> | 2013-07-19 12:54:58 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2013-07-19 12:54:58 +0000 |
commit | 1f13145f6794ac24075b93a82b440c42cc2c1288 (patch) | |
tree | 40548f2f06ba599f12f53133fb6cb93a75dd9ccd /misc/splitvt | |
parent | 31659367d757279a69c3802527c3c7c9de69569c (diff) | |
download | pkgsrc-1f13145f6794ac24075b93a82b440c42cc2c1288.tar.gz |
Add missing termios.h includes.
Diffstat (limited to 'misc/splitvt')
-rw-r--r-- | misc/splitvt/distinfo | 5 | ||||
-rw-r--r-- | misc/splitvt/patches/patch-ad | 16 | ||||
-rw-r--r-- | misc/splitvt/patches/patch-vttest.c | 12 |
3 files changed, 27 insertions, 6 deletions
diff --git a/misc/splitvt/distinfo b/misc/splitvt/distinfo index b802ab6a089..7fcbe93d8ef 100644 --- a/misc/splitvt/distinfo +++ b/misc/splitvt/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.6 2013/01/11 00:00:49 joerg Exp $ +$NetBSD: distinfo,v 1.7 2013/07/19 12:54:58 joerg Exp $ SHA1 (splitvt-1.6.6.tar.gz) = 8073f4998ae0d772deecc583b61ea7cb92f7186b RMD160 (splitvt-1.6.6.tar.gz) = 014a9990ef41414b8488e10c24354bfc9588c4f8 @@ -6,5 +6,6 @@ Size (splitvt-1.6.6.tar.gz) = 64797 bytes SHA1 (patch-aa) = ee16f9bb4b04d65c41ff71a6bc961bf3838e3648 SHA1 (patch-ab) = 047b5fceb89fa952780c0d62a20291399e6370f8 SHA1 (patch-ac) = b98a3c94d27799a4b9d94ccfef0d2de343becdf1 -SHA1 (patch-ad) = ee36e355d76630d734a84ebca0b0531a8cef6b96 +SHA1 (patch-ad) = f955382aaf72c0d451b48e569ed6af5d0e179d45 SHA1 (patch-cut-paste.c) = f1dc6f569580789ae3bb90633b619047302abdbd +SHA1 (patch-vttest.c) = 0381aa56cebf559172b0b89d9f80fdf8844c0801 diff --git a/misc/splitvt/patches/patch-ad b/misc/splitvt/patches/patch-ad index 79ea2512efd..08ce8b08d59 100644 --- a/misc/splitvt/patches/patch-ad +++ b/misc/splitvt/patches/patch-ad @@ -1,8 +1,16 @@ -$NetBSD: patch-ad,v 1.1 2008/07/25 03:38:01 tonnerre Exp $ +$NetBSD: patch-ad,v 1.2 2013/07/19 12:54:58 joerg Exp $ ---- misc.c.orig 2007-04-01 19:56:30.000000000 +0200 +--- misc.c.orig 2007-04-01 17:56:30.000000000 +0000 +++ misc.c -@@ -108,8 +108,17 @@ int win; /* 0 for upper, 1 for lower */ +@@ -7,6 +7,7 @@ + #include <stdlib.h> + #include <string.h> + #include <signal.h> ++#include <termios.h> + + + #ifdef HAVE_TERMIO_H +@@ -108,8 +109,17 @@ int win; /* 0 for upper, 1 for lower */ /* "touch" the tty so 'w' reports proper idle times */ (void) utime(get_ttyname(), NULL); @@ -21,7 +29,7 @@ $NetBSD: patch-ad,v 1.1 2008/07/25 03:38:01 tonnerre Exp $ /* Run the requested program, with possible leading dash. */ execvp(((*argv[0] == '-') ? argv[0]+1 : argv[0]), argv); -@@ -876,8 +885,17 @@ char *type; +@@ -876,8 +886,17 @@ char *type; } close(pipe_fds[0]); close(pipe_fds[1]); diff --git a/misc/splitvt/patches/patch-vttest.c b/misc/splitvt/patches/patch-vttest.c new file mode 100644 index 00000000000..e94cde42ae3 --- /dev/null +++ b/misc/splitvt/patches/patch-vttest.c @@ -0,0 +1,12 @@ +$NetBSD: patch-vttest.c,v 1.1 2013/07/19 12:54:58 joerg Exp $ + +--- vttest.c.orig 2013-07-19 10:26:29.000000000 +0000 ++++ vttest.c +@@ -15,6 +15,7 @@ + #include <sys/types.h> + #include <stdio.h> + #include <fcntl.h> ++#include <termios.h> + #ifdef HAVE_TERMIO_H + #include <termio.h> + #else |