On: Wed, 14 Oct 1998 11:11:51 -0500 (CDT) Richard Kaszeta writes: > > I have a number of Chinese users in my department here, and they > requested that I install 'cxterm' so they can look at chinese-encoded > email and files, etc. > > However, I downloaded the latest version of cxterm, > ftp://ftp.cs.purdue.edu/pub/ygz/cxterm-5.0.tar.gz, and attempted to > build it... > > It fails to build cxterm with a series of > > main.c:967: `ICRNL' undeclared (first use this function) > main.c:967: `IXON' undeclared (first use this function) > main.c:968: `OPOST' undeclared (first use this function) > > errors, so it's missing a bunch of termio stuff. Looking at the > main.c file, I can see that it trying to use sys/termio.h:
[...] I found them in /usr/include/termbits.h, try to include the following line at the begin of main.c: #include <termbits.h> This file is part of the libc6-dev package, I hope it was available in libc5-dev too. Torsten