Some of you may remember that I could not get SRS to compile under
RedHat 5.
==> Problem Solved <==
I had a few minutes spare so decided to try again, this time reading ALL
the error messages...
"icadebug" was falling over because of problems with unresolved
references in _termio_
Cure: for Redhat termio.h is in /usr/include/termio.h
NOT /usr/include/sys/ !
a one line edit to src/termio.c cured that!
--- 43,49 ----
#else
# include <stdlib.h>
/*# include <sys/ttychars.h> linux doesn't have that - is in bsd/sys
*/
! # include <sys/termio.h>
#endif
to
# include <termio.h>
Hope this is of help to others...
Andrew