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 | |
parent | 2f571c0f6a0772a543bb12f0ea46a52c6a79afc5 (diff) | |
download | pkgsrc-699e29478e339928eebbafb8724ae4e55e166bef.tar.gz |
Add termios.h formerly included by unistd.h.
-rw-r--r-- | converters/hztty/distinfo | 4 | ||||
-rw-r--r-- | converters/hztty/patches/patch-ab | 24 | ||||
-rw-r--r-- | editors/beav/distinfo | 4 | ||||
-rw-r--r-- | editors/beav/patches/patch-ab | 7 | ||||
-rw-r--r-- | editors/easyedit/distinfo | 3 | ||||
-rw-r--r-- | editors/easyedit/patches/patch-new__curse.c | 12 | ||||
-rw-r--r-- | editors/mg2a/distinfo | 4 | ||||
-rw-r--r-- | editors/mg2a/patches/patch-ab | 10 | ||||
-rw-r--r-- | editors/ng/distinfo | 3 | ||||
-rw-r--r-- | editors/ng/patches/patch-sys_bsd_ttyio.c | 12 | ||||
-rw-r--r-- | editors/ve/distinfo | 3 | ||||
-rw-r--r-- | editors/ve/patches/patch-term.c | 14 | ||||
-rw-r--r-- | games/tads/distinfo | 3 | ||||
-rw-r--r-- | games/tads/patches/patch-tads2_osunixt.c | 12 | ||||
-rw-r--r-- | math/gap/distinfo | 3 | ||||
-rw-r--r-- | math/gap/patches/patch-src_sysfiles.c | 12 |
16 files changed, 107 insertions, 23 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 diff --git a/editors/beav/distinfo b/editors/beav/distinfo index 800339f36a9..048f3ac6449 100644 --- a/editors/beav/distinfo +++ b/editors/beav/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.8 2008/06/20 01:09:17 joerg Exp $ +$NetBSD: distinfo,v 1.9 2013/07/18 12:07:24 joerg Exp $ SHA1 (beav_1.40-18.diff.gz) = 9cd82a3b8de391e1f001d241be1c2c3fadb3efb9 RMD160 (beav_1.40-18.diff.gz) = 0e7b19fdc7ea16e1e24e8302d81dfb247e947603 @@ -7,7 +7,7 @@ SHA1 (beav_1.40.orig.tar.gz) = c610a0c3581c681c26726c8e1e19bf7e38ca8a6a RMD160 (beav_1.40.orig.tar.gz) = 621df359860a8ec9205413520961d4366b1ad8ea Size (beav_1.40.orig.tar.gz) = 128103 bytes SHA1 (patch-aa) = 59a2043fa5da8c326dc0732701b3377ed7422a44 -SHA1 (patch-ab) = 629db527f0718de30bdc67cb8387c4488d9f9437 +SHA1 (patch-ab) = 7cb7c7712ed6942ba90a3555879da9eaf894dc72 SHA1 (patch-ac) = 6c575aa6e69fc4281956310176c12a086c6ae400 SHA1 (patch-ad) = 4cb29fa7dab5d5fc7ccff1dff090b189146e32c8 SHA1 (patch-ae) = 9377308aac390dd0130df3fd970f56e2e4826398 diff --git a/editors/beav/patches/patch-ab b/editors/beav/patches/patch-ab index 5ea31b65363..31fc5dd7a3e 100644 --- a/editors/beav/patches/patch-ab +++ b/editors/beav/patches/patch-ab @@ -1,13 +1,14 @@ -$NetBSD: patch-ab,v 1.4 2007/12/16 15:53:44 yyamano Exp $ +$NetBSD: patch-ab,v 1.5 2013/07/18 12:07:24 joerg Exp $ ---- termio.c.orig 2007-12-17 00:49:07.000000000 +0900 +--- termio.c.orig 2013-07-17 14:36:18.000000000 +0000 +++ termio.c -@@ -14,6 +14,9 @@ +@@ -14,6 +14,10 @@ #include <signal.h> #ifdef BSD #include <sys/ioctl.h> +#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || defined(__APPLE__) +#include <sys/ioctl_compat.h> ++#include <termios.h> +#endif #else #ifdef OS2 diff --git a/editors/easyedit/distinfo b/editors/easyedit/distinfo index e2c10d60039..39af9badf21 100644 --- a/editors/easyedit/distinfo +++ b/editors/easyedit/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.7 2013/04/04 16:01:55 dholland Exp $ +$NetBSD: distinfo,v 1.8 2013/07/18 12:07:24 joerg Exp $ SHA1 (easyedit-jumbo-patch-20130404.gz) = 6662be387286d2147a0a840347d94c7b1a075635 RMD160 (easyedit-jumbo-patch-20130404.gz) = ae340af9ae6decf5a65130759eda2a3cfcf17132 @@ -7,3 +7,4 @@ SHA1 (ee-1.4.6.src.tgz) = 6be7d03eade441a6c409b9d441ba2c144e26b157 RMD160 (ee-1.4.6.src.tgz) = 2ed8ad3123c5443b29f5db142ad367d67028da27 Size (ee-1.4.6.src.tgz) = 70511 bytes SHA1 (patch-ac) = cf3c94a42825a86941a40a8a66c7f413c51d0ac7 +SHA1 (patch-new__curse.c) = 49c0b3d675c4d6de672a7acc85c70aff01ca0703 diff --git a/editors/easyedit/patches/patch-new__curse.c b/editors/easyedit/patches/patch-new__curse.c new file mode 100644 index 00000000000..aaff66dab13 --- /dev/null +++ b/editors/easyedit/patches/patch-new__curse.c @@ -0,0 +1,12 @@ +$NetBSD: patch-new__curse.c,v 1.1 2013/07/18 12:07:24 joerg Exp $ + +--- new_curse.c.orig 2013-07-17 14:38:02.000000000 +0000 ++++ new_curse.c +@@ -83,6 +83,7 @@ char * new_curse_name= "@(#) new_curse.c + #ifdef HAS_SYS_IOCTL + #include <sys/ioctl.h> + #endif ++#include <termios.h> + + + WINDOW *curscr; diff --git a/editors/mg2a/distinfo b/editors/mg2a/distinfo index 42ee1fa6c0a..5575b6925e4 100644 --- a/editors/mg2a/distinfo +++ b/editors/mg2a/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.10 2012/12/25 21:10:55 joerg Exp $ +$NetBSD: distinfo,v 1.11 2013/07/18 12:07:24 joerg Exp $ SHA1 (mg2a.tar.Z) = c96f890f217eaacb78117f9c73f1ea3709ca8d3f RMD160 (mg2a.tar.Z) = 7083ec8b49eb89d1389dabfb915859af2bb40ee1 Size (mg2a.tar.Z) = 383255 bytes SHA1 (patch-aa) = d10d168a9f224cd2dfd15fe28876f55e7073e4d2 -SHA1 (patch-ab) = c62b733dc0247ddff65a544c4a5f9593ee324472 +SHA1 (patch-ab) = 8d39fe754a6e7f92a8c5afdadaacf3882e471d82 SHA1 (patch-ac) = 6ef1d0bc88241756cdd3a66050ebfaaf353edcdb SHA1 (patch-ad) = d83892a713d75d830f553e58632d2fde55e53cc4 SHA1 (patch-ae) = 13c976df16c34acffc14615d29ad91a3bdacd716 diff --git a/editors/mg2a/patches/patch-ab b/editors/mg2a/patches/patch-ab index e67e1492e6c..9d303410d50 100644 --- a/editors/mg2a/patches/patch-ab +++ b/editors/mg2a/patches/patch-ab @@ -1,7 +1,15 @@ -$NetBSD: patch-ab,v 1.2 2000/07/10 18:26:54 tron Exp $ +$NetBSD: patch-ab,v 1.3 2013/07/18 12:07:24 joerg Exp $ --- sys/bsd/ttyio.c.orig Sun Jul 3 10:51:02 1988 +++ sys/bsd/ttyio.c Wed May 31 16:36:30 2000 +@@ -8,6 +8,7 @@ + #include "def.h" + + #include <sgtty.h> ++#include <termios.h> + + #define NOBUF 512 /* Output buffer size. */ + @@ -35,13 +35,17 @@ ttopen() { register char *tv_stype; diff --git a/editors/ng/distinfo b/editors/ng/distinfo index c459924c770..77ba4532181 100644 --- a/editors/ng/distinfo +++ b/editors/ng/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.8 2013/03/28 21:24:53 joerg Exp $ +$NetBSD: distinfo,v 1.9 2013/07/18 12:07:24 joerg Exp $ SHA1 (ng-1.4.4-replace_bug.patch) = 4d1b8abc0aa22b52951eb696427790cc75842842 RMD160 (ng-1.4.4-replace_bug.patch) = af945e81541b0b848350f46044176ba536d77f45 @@ -8,5 +8,6 @@ RMD160 (ng-1.4.4.tar.gz) = dd041789d3fba92fe1c9906564a246c1f62cc34e Size (ng-1.4.4.tar.gz) = 587018 bytes SHA1 (patch-aa) = c78f7c9d1654262f612c6db25d5def2f8d2bbcfa SHA1 (patch-def.h) = dbb9367ac663abe8f980775167f206706ee542aa +SHA1 (patch-sys_bsd_ttyio.c) = 4398c4518a25e621c80396e4679006b9e90c2028 SHA1 (patch-sys_default_tty.c) = 6488cc08dcd0b952c6fa37fd713fddc8b532cf65 SHA1 (patch-sys_sysv_Makefile) = 75abfc306abe358a950a3854c660ee97052e2af4 diff --git a/editors/ng/patches/patch-sys_bsd_ttyio.c b/editors/ng/patches/patch-sys_bsd_ttyio.c new file mode 100644 index 00000000000..c4a32582fb9 --- /dev/null +++ b/editors/ng/patches/patch-sys_bsd_ttyio.c @@ -0,0 +1,12 @@ +$NetBSD: patch-sys_bsd_ttyio.c,v 1.1 2013/07/18 12:07:24 joerg Exp $ + +--- sys/bsd/ttyio.c.orig 2013-07-18 10:06:42.000000000 +0000 ++++ sys/bsd/ttyio.c +@@ -22,6 +22,7 @@ + #include "def.h" + + #include <sgtty.h> ++#include <termios.h> + #ifdef ADDFUNC /* 90.02.14 by S.Yoshida */ + #include <signal.h> /* 90.02.13: For SIGWINCH. */ + #endif /* ADDFUNC */ diff --git a/editors/ve/distinfo b/editors/ve/distinfo index c2c534db4a7..82e1e10c209 100644 --- a/editors/ve/distinfo +++ b/editors/ve/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2013/01/10 23:53:15 joerg Exp $ +$NetBSD: distinfo,v 1.6 2013/07/18 12:07:24 joerg Exp $ SHA1 (ve-1.0.tgz) = 0faac299b697ff6dfc28d234ee47089ad4d148ff RMD160 (ve-1.0.tgz) = ae9bede0e3e068c4221a541b66261154d9ab84d5 @@ -8,3 +8,4 @@ SHA1 (patch-ab) = 084074ed379a3133aceb04c8b36efc5cbf11c99e SHA1 (patch-ac) = 6b6c6e2d79076994a133001ba44495760d3b8930 SHA1 (patch-ad) = dd1901fe8412f87a88fd7768493c6780acbb01ba SHA1 (patch-ae) = 5f6d0b634cb803ca48cd8528c8b2f64767fe73f4 +SHA1 (patch-term.c) = 87c37e41b2deb38ed27210661219c7208f6ab2c4 diff --git a/editors/ve/patches/patch-term.c b/editors/ve/patches/patch-term.c new file mode 100644 index 00000000000..a30d8a0f3ef --- /dev/null +++ b/editors/ve/patches/patch-term.c @@ -0,0 +1,14 @@ +$NetBSD: patch-term.c,v 1.1 2013/07/18 12:07:24 joerg Exp $ + +--- term.c.orig 2013-07-18 10:12:24.000000000 +0000 ++++ term.c +@@ -9,6 +9,9 @@ + + #include "bbs.h" + #include <sys/ioctl.h> ++#include <stdlib.h> ++#include <termcap.h> ++#include <termios.h> + + #ifdef HP_UX + #define O_HUPCL 01 diff --git a/games/tads/distinfo b/games/tads/distinfo index 6fdc6208553..7d598ee7edf 100644 --- a/games/tads/distinfo +++ b/games/tads/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.10 2013/01/10 23:56:32 joerg Exp $ +$NetBSD: distinfo,v 1.11 2013/07/18 12:07:24 joerg Exp $ SHA1 (tads-3.0.8-1/tads23-unix.tar.gz) = 2bd4c64fd090d880b98a8a590d48482d4dfcb67b RMD160 (tads-3.0.8-1/tads23-unix.tar.gz) = 8f83f60d01fb8549fa38adcc48fa04c92fba5250 @@ -6,4 +6,5 @@ Size (tads-3.0.8-1/tads23-unix.tar.gz) = 4122345 bytes SHA1 (patch-aa) = 8d53351305a435d3c2c5d0c1c7f60ed9cbdd7018 SHA1 (patch-ab) = b8e48ff15ef5fa1834c98a5bcc6df3d732dfe062 SHA1 (patch-ac) = 2c05036ff65316699533471d3cbe275e33a100b3 +SHA1 (patch-tads2_osunixt.c) = 7bf4ca85ae9986eea4caff61c27845b6a309ef9f SHA1 (patch-tads3_tcprs.cpp) = 7f377ea541009490910259c734d577b612f264ef diff --git a/games/tads/patches/patch-tads2_osunixt.c b/games/tads/patches/patch-tads2_osunixt.c new file mode 100644 index 00000000000..5e0703b7214 --- /dev/null +++ b/games/tads/patches/patch-tads2_osunixt.c @@ -0,0 +1,12 @@ +$NetBSD: patch-tads2_osunixt.c,v 1.1 2013/07/18 12:07:24 joerg Exp $ + +--- tads2/osunixt.c.orig 2013-07-17 14:34:13.000000000 +0000 ++++ tads2/osunixt.c +@@ -32,6 +32,7 @@ + #include <stddef.h> + #endif + #include <stdlib.h> ++#include <termios.h> + #include <ctype.h> + #include <string.h> + #include <sys/stat.h> diff --git a/math/gap/distinfo b/math/gap/distinfo index 34d3cd20b5b..26c02435e6b 100644 --- a/math/gap/distinfo +++ b/math/gap/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.8 2012/01/16 21:02:20 sbd Exp $ +$NetBSD: distinfo,v 1.9 2013/07/18 12:07:25 joerg Exp $ SHA1 (gap4r3.tar.gz) = 448d473fdba177aa4ba7d64542cec8bb770e3d61 RMD160 (gap4r3.tar.gz) = 4b034ae874b7b7c8ed64e2b999a06a444b5c960e @@ -9,3 +9,4 @@ Size (fix4r3n5.tar.gz) = 1267032 bytes SHA1 (patch-aa) = b5ba0bdfc14f0c2bc61fca65656cb1a8b217146a SHA1 (patch-ab) = bb7142d80f71ae0f2b97ff44d24d5fe0e9fa5431 SHA1 (patch-ac) = 871235a83b52271373faa79ee6d38b86ba072f7f +SHA1 (patch-src_sysfiles.c) = 0b39d190bed901d9d98fa35b254d0d1c9f2a8815 diff --git a/math/gap/patches/patch-src_sysfiles.c b/math/gap/patches/patch-src_sysfiles.c new file mode 100644 index 00000000000..1ac5e4cae60 --- /dev/null +++ b/math/gap/patches/patch-src_sysfiles.c @@ -0,0 +1,12 @@ +$NetBSD: patch-src_sysfiles.c,v 1.1 2013/07/18 12:07:25 joerg Exp $ + +--- src/sysfiles.c.orig 2013-07-18 09:51:28.000000000 +0000 ++++ src/sysfiles.c +@@ -52,6 +52,7 @@ const char * Revision_sysfiles_c = + + #include <sys/time.h> + #include <sys/types.h> ++#include <termios.h> + #endif + #endif + |