summaryrefslogtreecommitdiff
path: root/comms/conserver/files/patch-etc_conserver_consent.c
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_consent.c
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_consent.c')
-rw-r--r--comms/conserver/files/patch-etc_conserver_consent.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/comms/conserver/files/patch-etc_conserver_consent.c b/comms/conserver/files/patch-etc_conserver_consent.c
deleted file mode 100644
index 632dd0464753..000000000000
--- a/comms/conserver/files/patch-etc_conserver_consent.c
+++ /dev/null
@@ -1,34 +0,0 @@
---- etc/conserver/consent.c.orig Wed Nov 17 18:10:14 1999
-+++ etc/conserver/consent.c Wed Nov 17 18:12:57 1999
-@@ -295,7 +295,7 @@
- */
- termp.c_iflag = IXON|IXOFF|BRKINT;
- termp.c_oflag = 0;
-- termp.c_cflag = CREAD;
-+ termp.c_cflag = CREAD | (termp.c_cflag & (CLOCAL|CRTSCTS));
- termp.c_cflag |= pCE->pparity->iset;
- termp.c_lflag = 0;
- /*
-@@ -303,7 +303,7 @@
- * Set the VTIME == 1 (0.1 sec)
- * Don't bother with the control characters as they are not used
- */
-- termp.c_cc[VMIN] = 128;
-+ termp.c_cc[VMIN] = 1;
- termp.c_cc[VTIME] = 1;
-
- if (-1 == cfsetospeed(&termp,pCE->pbaud->irate)) {
-@@ -563,11 +563,10 @@
- exit(1);
- }
- #endif
-- n_tios.c_iflag &= ~(IGNCR|IUCLC);
-+ n_tios.c_iflag &= ~(IGNCR);
- n_tios.c_iflag |= ICRNL|IXON|IXANY;
-- n_tios.c_oflag &= ~(OLCUC|ONOCR|ONLRET|OFILL|NLDLY|CRDLY|TABDLY|BSDLY);
- n_tios.c_oflag |= OPOST|ONLCR;
-- n_tios.c_lflag &= ~(XCASE|NOFLSH|ECHOK|ECHONL);
-+ n_tios.c_lflag &= ~(NOFLSH|ECHOK|ECHONL);
- n_tios.c_lflag |= ISIG|ICANON|ECHO;
- n_tios.c_cc[VEOF] = '\004';
- n_tios.c_cc[VEOL] = '\000';