summaryrefslogtreecommitdiff
path: root/comms/conserver/files/patch-etc_conserver_console.m
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2019-04-04 16:37:29 +0000
committerRene Ladan <rene@FreeBSD.org>2019-04-04 16:37:29 +0000
commitcc5fe2dd620082c6185b6968505daa180908270f (patch)
tree4cee0f81cfd6da29fc9cf44ab5caf8f38bcb7006 /comms/conserver/files/patch-etc_conserver_console.m
parentUpdate xfce4-parole to 1.0.2 (diff)
Remove expired ports:
2019-03-25 chinese/reciteword: depends on audio/esound 2019-03-31 comms/conserver: Superseeded by comms/conserver-com 2019-03-24 databases/flamerobin: Abandonware since 2009, does not work with newer version of wxGTK 2019-04-01 databases/mariadb100-client: Upstream End-of-Life March 2019 (https://mariadb.org/about/maintenance-policy/) 2019-04-01 databases/mariadb100-server: Upstream End-of-Life March 2019 (https://mariadb.org/about/maintenance-policy/) 2019-03-12 devel/physfs-devel: is the same as devel/physfs, serving no purpose 2019-03-20 devel/py-construct28: Latest upstream version is in ports tree devel/py-construct 2019-03-31 devel/xtoolchain-llvm40: No supported release uses this version 2019-03-31 devel/xtoolchain-llvm50: No supported release uses this version 2019-03-31 finance/aqmoney: no longer maintained upstream 2019-03-31 finance/openhbci: no longer maintained upstream 2019-03-31 graphics/py-exiv2: py-exiv2 has been deprecated in favour of GExiv2 2019-04-04 mail/dbmail22: Please use mail/dbmail which uses latest version of 3.X 2019-03-31 net/rubygem-fog-google17: Use net/rubygem-fog-google instead 2019-03-31 ports-mgmt/bsdadminscripts: Upstream stale nearly 10 years, no longer works properly, use ports-mgmt/bsdadminscripts2 instead 2019-03-24 www/mod_md-devel: Use the module that is shipped with Apache 2.4 2019-03-25 x11/xbelld: Depends on audio/esound
Notes
Notes: svn path=/head/; revision=497852
Diffstat (limited to 'comms/conserver/files/patch-etc_conserver_console.m')
-rw-r--r--comms/conserver/files/patch-etc_conserver_console.m57
1 files changed, 0 insertions, 57 deletions
diff --git a/comms/conserver/files/patch-etc_conserver_console.m b/comms/conserver/files/patch-etc_conserver_console.m
deleted file mode 100644
index c85432d262c5..000000000000
--- a/comms/conserver/files/patch-etc_conserver_console.m
+++ /dev/null
@@ -1,57 +0,0 @@
---- etc/console/console.m.orig 2000-08-02 11:39:42.000000000 -0700
-+++ etc/console/console.m 2007-09-12 09:30:56.000000000 -0700
-@@ -582,17 +582,17 @@
- return;
-
- #if USE_TERMIOS
-- if (0 != ioctl(0, TCGETS, & o_tios)) {
-+ if (0 != tcgetattr(0, & o_tios)) {
- fprintf(stderr, "%s: iotcl: getsw: %s\n", progname, strerror(errno));
- exit(10);
- }
- n_tios = o_tios;
-- n_tios.c_iflag &= ~(INLCR|IGNCR|ICRNL|IUCLC|IXON);
-+ n_tios.c_iflag &= ~(INLCR|IGNCR|ICRNL|IXON);
- n_tios.c_oflag &= ~OPOST;
- n_tios.c_lflag &= ~(ICANON|ISIG|ECHO);
- n_tios.c_cc[VMIN] = 1;
- n_tios.c_cc[VTIME] = 0;
-- if (0 != ioctl(0, TCSETS, & n_tios)) {
-+ if (0 != tcsetattr(0, TCSANOW, & n_tios)) {
- fprintf(stderr, "%s: getarrt: %s\n", progname, strerror(errno));
- exit(10);
- }
-@@ -668,7 +668,7 @@
- if (!screwy)
- return;
- #if USE_TERMIOS
-- (void)ioctl(0, TCSETS, (char *)&o_tios);
-+ (void)tcsetattr(0, TCSANOW, &o_tios);
- #else
- #if USE_TERMIO
- (void)ioctl(0, TCSETA, (char *)&o_tio);
-@@ -693,7 +693,7 @@
- register int nr;
-
- while (0 != iLen) {
-- if (-1 == (nr = write(fd, pcBuf, iLen))) {
-+ if (0 >= (nr = write(fd, pcBuf, iLen))) {
- c2cooked();
- fprintf(stderr, "%s: lost connection\n", progname);
- exit(3);
-@@ -980,6 +980,7 @@
- static int SawUrg = 0;
- #if DO_POWER
- static char acPowCtl[128];
-+static int Indir();
-
- /* We take a moment to call the power controller and ask (ksb)
- * them about the console line we were chatting with. We'll be right
-@@ -991,7 +992,6 @@
- char *pcControl, *pcLine, *pcCurrent;
- {
- register char *pcAt;
-- static int Indir();
-
- if ((char *)0 != (pcAt = strchr(pcControl, '@'))) {
- *pcAt++ = '\000';