diff options
author | joerg <joerg@pkgsrc.org> | 2013-07-18 12:07:24 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2013-07-18 12:07:24 +0000 |
commit | 699e29478e339928eebbafb8724ae4e55e166bef (patch) | |
tree | de817b2f993c35f56a088e0365b2cab7011fbaf0 /converters/hztty | |
parent | 2f571c0f6a0772a543bb12f0ea46a52c6a79afc5 (diff) | |
download | pkgsrc-699e29478e339928eebbafb8724ae4e55e166bef.tar.gz |
Add termios.h formerly included by unistd.h.
Diffstat (limited to 'converters/hztty')
-rw-r--r-- | converters/hztty/distinfo | 4 | ||||
-rw-r--r-- | converters/hztty/patches/patch-ab | 24 |
2 files changed, 18 insertions, 10 deletions
diff --git a/converters/hztty/distinfo b/converters/hztty/distinfo index 0a19f86c6dc..84497d34fa8 100644 --- a/converters/hztty/distinfo +++ b/converters/hztty/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.4 2005/12/05 20:49:55 rillig Exp $ +$NetBSD: distinfo,v 1.5 2013/07/18 12:07:24 joerg Exp $ SHA1 (hztty-2.0.tar.gz) = db2d13f4f9d3918c1feef3ac8fb4bb24326a28ef RMD160 (hztty-2.0.tar.gz) = e9e1250ad55fff042e62b9a99c75315641f9e73b Size (hztty-2.0.tar.gz) = 229189 bytes SHA1 (patch-aa) = 9091f33afb6eb5a8ca98ca937bf7e5488a337111 -SHA1 (patch-ab) = 62d4491dd23a81d514074f3f70d3cfda2d0a284d +SHA1 (patch-ab) = b657386b8a093af50021afe4cf417776afbc4ca1 SHA1 (patch-ac) = 6260fa7d189b8516f747e3f6fa846f1213c69d63 diff --git a/converters/hztty/patches/patch-ab b/converters/hztty/patches/patch-ab index bed3a09e840..4d5f8978abf 100644 --- a/converters/hztty/patches/patch-ab +++ b/converters/hztty/patches/patch-ab @@ -1,8 +1,16 @@ -$NetBSD: patch-ab,v 1.3 2005/12/05 20:49:55 rillig Exp $ +$NetBSD: patch-ab,v 1.4 2013/07/18 12:07:24 joerg Exp $ ---- tty.c.orig 1995-01-29 15:24:55.000000000 -0500 +--- tty.c.orig 1995-01-29 20:24:55.000000000 +0000 +++ tty.c -@@ -26,7 +26,7 @@ +@@ -13,6 +13,7 @@ static char *rcs_id="$Id: tty.c,v 2.1 19 + #endif /* lint */ + + #include "config.h" ++#include <termios.h> + + /* + * Functions get_pty() and pty_search() in this file are adopted from +@@ -26,7 +27,7 @@ static char *rcs_id="$Id: tty.c,v 2.1 19 # define TTYDEV "/dev/pty/ttyxx" #else /* !hpux */ # define PTYCHAR1 "pqrstuvwxyzPQRSTUVWXYZ" @@ -11,7 +19,7 @@ $NetBSD: patch-ab,v 1.3 2005/12/05 20:49:55 rillig Exp $ # define PTYDEV "/dev/ptyxx" # define TTYDEV "/dev/ttyxx" #endif /* !hpux */ -@@ -39,6 +39,10 @@ extern char *ptsname(); +@@ -39,6 +40,10 @@ extern char *ptsname(); # include <sys/utsname.h> #endif @@ -22,7 +30,7 @@ $NetBSD: patch-ab,v 1.3 2005/12/05 20:49:55 rillig Exp $ static char ptydev[32]; static char ttydev[32]; static int pty_search(); -@@ -61,7 +65,7 @@ int get_pty (pty) +@@ -61,7 +66,7 @@ int get_pty (pty) return 0; #endif /* SYSV && SYSV386 */ @@ -31,7 +39,7 @@ $NetBSD: patch-ab,v 1.3 2005/12/05 20:49:55 rillig Exp $ { if ((*pty = open ("/dev/ptmx", O_RDWR)) < 0) return 1; -@@ -414,7 +418,10 @@ void make_raw(oldtermptr, newtermptr) +@@ -414,7 +419,10 @@ void make_raw(oldtermptr, newtermptr) /******************************* UTMP stuffs *******************************/ @@ -42,7 +50,7 @@ $NetBSD: patch-ab,v 1.3 2005/12/05 20:49:55 rillig Exp $ #ifdef HAS_UTMPX # include <utmpx.h> -@@ -428,6 +435,10 @@ void make_raw(oldtermptr, newtermptr) +@@ -428,6 +436,10 @@ void make_raw(oldtermptr, newtermptr) # define getutid getutxid # define pututline pututxline @@ -53,7 +61,7 @@ $NetBSD: patch-ab,v 1.3 2005/12/05 20:49:55 rillig Exp $ #endif #ifdef USE_SYSV_UTMP -@@ -507,8 +518,10 @@ void addutmp() +@@ -507,8 +519,10 @@ void addutmp() utmp.ut_pid = getpid(); # ifdef HAS_UTMPX |