diff options
author | Rene Ladan <rene@FreeBSD.org> | 2014-04-18 11:17:45 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2014-04-18 11:17:45 +0000 |
commit | 8b3c8800eb286d7ad9ba4d8e56c1f94a436e2ca9 (patch) | |
tree | 05eb10cc44d61de9b8f970b16f50e25c5a245d53 /lang/logo/files/patch-term.c | |
parent | - Update to 2.0.0 - announce message is here: (diff) |
Remove expired ports:
2014-04-16 ports-mgmt/pkgsearch: Upstream disappeared
2014-04-17 science/flounder: Unmaintained since 2002
2014-04-17 security/nbaudit: Unmaintained since 2002
2014-04-17 security/saint: Unmaintained since 2002
2014-04-17 graphics/gozer: Unmaintained since 2002
2014-04-17 misc/pdfmap: Unmaintained since 2002
2014-04-17 devel/showgrammar: Unmaintained since 2002
2014-04-17 biology/libgenome: Unmaintained since 2002
2014-04-17 deskutils/narval: Unmaintained since 2002
2014-04-17 devel/fampp: Unmaintained since 2002
2014-04-17 net-p2p/py-fngrab: Unmaintained since 2002
2014-04-17 misc/wmfirew: Unmaintained since 2002
2014-04-17 x11-wm/e16utils: Unmaintained since 2002
2014-04-17 misc/salias: Unmaintained since 2002
2014-04-17 print/latex2slides: Unmaintained since 2002
2014-04-17 lang/sxm: Unmaintained since 2002
2014-04-17 textproc/pybook: Unmaintained since 2002
2014-04-17 mail/mailcrypt: Unmaintained since 2002
2014-04-17 japanese/elvis: Unmaintained since 2002
2014-04-17 devel/prototype: Unmaintained since 2002
2014-04-17 print/wprint: Unmaintained since 2002
2014-04-17 science/euler: Unmaintained since 2002
2014-04-17 multimedia/gopchop: Unmaintained since 2002
2014-04-17 science/gdis: Unmaintained since 2002
2014-04-17 net/googolplex: Unmaintained since 2002
2014-04-17 lang/logo: Unmaintained since 2002
2014-04-17 textproc/roap: Unmaintained since 2002
2014-04-17 x11-wm/afterstep-i18n: Unmaintained since 2002
2014-04-17 games/yamsweeper: Unmaintained since 2002
2014-04-17 net-mgmt/echolot: Unmaintained since 2002
2014-04-17 security/pam_smb: Unmaintained since 2002
2014-04-18 devel/lua-redis-parser: Broken for more than 6 months
2014-04-18 biology/finchtv: Broken for more than 6 months
2014-04-18 net-im/ari-yahoo: Broken for more than 1 year (http://www.icculus.org/ari-yahoo/)
Notes
Notes:
svn path=/head/; revision=351531
Diffstat (limited to 'lang/logo/files/patch-term.c')
-rw-r--r-- | lang/logo/files/patch-term.c | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/lang/logo/files/patch-term.c b/lang/logo/files/patch-term.c deleted file mode 100644 index d5661529ec08..000000000000 --- a/lang/logo/files/patch-term.c +++ /dev/null @@ -1,66 +0,0 @@ ---- term.c.orig 2007-12-04 15:42:55.000000000 +0300 -+++ term.c 2007-12-04 15:43:04.000000000 +0300 -@@ -30,8 +30,8 @@ - #include <console.h> - #endif - --#ifdef HAVE_TERMIO_H --#include <termio.h> -+#if 1 -+#include <termios.h> - #else - #ifdef HAVE_SGTTY_H - #include <sgtty.h> -@@ -71,8 +71,8 @@ - char so_arr[40]; - char se_arr[40]; - --#ifdef HAVE_TERMIO_H --struct termio tty_cooked, tty_cbreak; -+#if 1 -+struct termios tty_cooked, tty_cbreak; - #else - #ifdef HAVE_SGTTY_H - struct sgttyb tty_cooked, tty_cbreak; -@@ -85,7 +85,7 @@ - - char *termcap_ptr; - --int termcap_putter(char ch) { -+int termcap_putter(int ch) { - *termcap_ptr++ = ch; - return 0; - } -@@ -125,8 +125,8 @@ - #endif /* WIN32 */ - #else - if (interactive) { --#ifdef HAVE_TERMIO_H -- ioctl(0,TCGETA,(char *)(&tty_cooked)); -+#if 1 -+ tcgetattr(0, &tty_cooked); - tty_cbreak = tty_cooked; - tty_cbreak.c_cc[VMIN] = '\01'; - tty_cbreak.c_cc[VTIME] = '\0'; -@@ -181,8 +181,8 @@ - void charmode_on() { - #ifdef unix - if ((readstream == stdin) && interactive && !tty_charmode) { --#ifdef HAVE_TERMIO_H -- ioctl(0,TCSETA,(char *)(&tty_cbreak)); -+#if 1 -+ tcsetattr(0, TCSANOW, &tty_cbreak); - #else /* !HAVE_TERMIO_H */ - ioctl(0,TIOCSETP,(char *)(&tty_cbreak)); - #endif /* HAVE_TERMIO_H */ -@@ -197,8 +197,8 @@ - void charmode_off() { - #ifdef unix - if (tty_charmode) { --#ifdef HAVE_TERMIO_H -- ioctl(0,TCSETA,(char *)(&tty_cooked)); -+#if 1 -+ tcsetattr(0, TCSANOW, &tty_cooked); - #else /* !HAVE_TERMIO_H */ - ioctl(0,TIOCSETP,(char *)(&tty_cooked)); - #endif /* HAVE_TERMIO_H */ |