mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
- Use termios instead of sgtty.
PR: ports/119115, ports/122889 Submitted by: Ed Schouten <ed@80386 dot nl>
This commit is contained in:
parent
6127a9dda0
commit
85c698ac64
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=212423
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= ve
|
||||
PORTVERSION= 1.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= chinese
|
||||
MASTER_SITES= LOCAL/chinsan
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
17
chinese/ve/files/patch-bbs.h
Normal file
17
chinese/ve/files/patch-bbs.h
Normal file
@ -0,0 +1,17 @@
|
||||
--- bbs.h.orig 2008-05-01 19:32:07.000000000 +0800
|
||||
+++ bbs.h 2008-05-01 19:45:36.000000000 +0800
|
||||
@@ -25,14 +25,6 @@
|
||||
#include <sys/stat.h>
|
||||
#include <sys/file.h>
|
||||
|
||||
-
|
||||
-#ifdef LINUX
|
||||
-#include <bsd/sgtty.h>
|
||||
-#else
|
||||
-#include <sgtty.h>
|
||||
-#endif
|
||||
-
|
||||
-
|
||||
#ifdef SYSV
|
||||
|
||||
#ifndef LOCK_EX
|
95
chinese/ve/files/patch-term.c
Normal file
95
chinese/ve/files/patch-term.c
Normal file
@ -0,0 +1,95 @@
|
||||
--- term.c.orig 2008-05-01 19:34:15.000000000 +0800
|
||||
+++ term.c 2008-05-01 19:44:06.000000000 +0800
|
||||
@@ -9,17 +9,16 @@
|
||||
|
||||
#include "bbs.h"
|
||||
#include <sys/ioctl.h>
|
||||
+#include <stdlib.h>
|
||||
|
||||
#ifdef HP_UX
|
||||
#define O_HUPCL 01
|
||||
#define O_XTABS 02
|
||||
#endif
|
||||
|
||||
-#ifdef LINUX
|
||||
-#include <linux/termios.h>
|
||||
-#define stty(fd, data) tcsetattr( fd, TCSETS, data )
|
||||
+#include <termios.h>
|
||||
+#define stty(fd, data) tcsetattr( fd, TCSANOW, data )
|
||||
#define gtty(fd, data) tcgetattr( fd, data )
|
||||
-#endif
|
||||
|
||||
#ifndef TANDEM
|
||||
#define TANDEM 0x00000001
|
||||
@@ -29,11 +28,7 @@
|
||||
#define CBREAK 0x00000002
|
||||
#endif
|
||||
|
||||
-#ifdef LINUX
|
||||
struct termios tty_state, tty_new;
|
||||
-#else
|
||||
-struct sgttyb tty_state, tty_new;
|
||||
-#endif
|
||||
|
||||
|
||||
/* ----------------------------------------------------- */
|
||||
@@ -62,37 +57,11 @@
|
||||
}
|
||||
memcpy(&tty_new, &tty_state, sizeof(tty_new));
|
||||
|
||||
-#ifdef LINUX
|
||||
-
|
||||
- tty_new.c_lflag &= ~(ICANON | ECHO | RAW | ISIG);
|
||||
- tcsetattr(1, TCSANOW, &tty_new);
|
||||
+ tty_new.c_lflag &= ~(ICANON | ECHO | ISIG);
|
||||
restore_tty();
|
||||
-
|
||||
-#else
|
||||
-
|
||||
- tty_new.sg_flags |= RAW;
|
||||
-
|
||||
-#ifdef HP_UX
|
||||
- tty_new.sg_flags &= ~(O_HUPCL | O_XTABS | LCASE | ECHO | CRMOD);
|
||||
-#else
|
||||
- tty_new.sg_flags &= ~(TANDEM | CBREAK | LCASE | ECHO | CRMOD);
|
||||
-#endif
|
||||
-
|
||||
- stty(1, &tty_new);
|
||||
-#endif
|
||||
}
|
||||
|
||||
|
||||
-#ifdef LINUX
|
||||
-reset_tty()
|
||||
-{
|
||||
- system("stty -raw echo");
|
||||
-}
|
||||
-restore_tty()
|
||||
-{
|
||||
- system("stty raw -echo");
|
||||
-}
|
||||
-#else
|
||||
void
|
||||
reset_tty()
|
||||
{
|
||||
@@ -104,8 +73,6 @@
|
||||
stty(1, &tty_new);
|
||||
}
|
||||
|
||||
-#endif
|
||||
-
|
||||
|
||||
|
||||
/* ----------------------------------------------------- */
|
||||
@@ -171,11 +138,7 @@
|
||||
char *sbp, *s;
|
||||
char *tgetstr();
|
||||
|
||||
-#ifdef LINUX
|
||||
ospeed = cfgetospeed(&tty_state);
|
||||
-#else
|
||||
- ospeed = tty_state.sg_ospeed;
|
||||
-#endif
|
||||
|
||||
if (tgetent(buf, term) != 1)
|
||||
return NA;
|
Loading…
Reference in New Issue
Block a user