kterm - X11 terminal emulator that can handle Japanese text Copyright 1988, 1989, 1990, 1991 and 1992 XXI working group in Japan Unix Society(XXI). Author: Hiroto Kagotani (kagotani@cs.titech.ac.jp) Kterm is an X11 terminal emulator that can handle Japanese text. This release is based on xterm in the core part of X11R5 distribution. 1991/Oct./4 Hiroto Kagotani kagotani@cs.titech.ac.jp Tue Jun 8 03:08:12 PDT 1993 Shawn McLean (shawn@netcom.com): Tweaked two files, included the required fonts, and modified Imakefile to install fonts. The current gcc distribution doesn't have /usr/include/sgtty.h, which is required by kterm, so if you are missing this, it is included at the end of this file. To compile and install: xmkmf make make install make install.man --------------------------------------------------- /* sgtty.h */ /* This file contains defintions to help make linux termios look like bsd sgtty. */ /* Copyright (c) 1992 Ross Biro This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _SGTTY_H #define _SGTTY_H #include struct sgttyb { unsigned short sg_flags; char sg_ispeed; char sg_ospeed; char sg_erase; char sg_kill; struct termios t; int check; }; struct tchars { char t_intrc; char t_quitc; char t_eofc; char t_startc; char t_stopc; char t_brkc; }; struct ltchars { char t_werasc; char t_suspc; char t_dsuspc; char t_rprntc; char t_flushc; char t_lnextc; }; #define O_LCASE 1 #define O_ECHO 2 #define O_CRMOD 4 #define O_ODDP 8 #define O_EVENP 16 #define O_CBREAK 32 #define O_RAW 64 /* these don't do anything yet. */ #define O_XTABS 0 #define O_ANYP 0 #endif /* _SGTTY_H */