Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!wuarchive!uunet!math.fu-berlin.de!fauern!unido!cat!incom!orfeo!jrix!joachim From: joachim@jrix.radig.de (Joachim Riedel) Newsgroups: comp.os.coherent Subject: REPLY: Can't compile TASS 3.2 (TJAUHIAINEN) Message-ID: <1991Apr24.162925.19504@jrix.radig.de> Date: 24 Apr 91 16:29:25 GMT Distribution: comp Organization: Joachim Riedel, Offenbach, West Germany Lines: 39 I got a question how to compile TASS 3.2 but can't reply because it was a corrupted BITNET-address. Hope he will read that, maybe more people have that problem: Question: and this continues. Anyway the files are OK after extracting is finished. After that I edited those files you described in your post to a.o.c. And then typed 'make' with following results: >cc -DCOHERENT -c curses.c >20: curses.c: "TRUE" redefined >21: curses.c: "FALSE" redefined >60: curses.c: size of structure "termio" is not known >60: curses.c: sizeof(_raw_tty) set to 0 >61: curses.c: size of structure "termio" is not known >61: curses.c: sizeof(_original_tty) set to 0 >234: curses.c: identifier "TCSETAW" is not defined >234: curses.c: size of structure "termio" is not known >239: curses.c: identifier "TCGETA" is not defined Don't define BSD in the Makefile In curses.c you need this three includes: #include #include #include add these line behind the following code #ifdef BSD #undef tolower #endif #define BSD 1 /* new */ That's all Joachim