Wondering if someone could tell me if the official policy now on inetutils is not to support it on solaris. I looked at the online ascii manual for inetutils but saw nothing about this.
I'm asking because I needed a non-kerberized telnetd, and inetutils seemed like a good place to start. However I had to make several changes so build of telnetd would complete could complete on solaris. 1) Solaris doesn't recognize type "sig_t". Added "typedef void (*sig_t) (int);" to libinetutils/setsig.c. 2) In telnetd/state.c, NTELOPTS is not getting defined. Added "#define NTELOPTS 40" per /usr/include/arpa/telnet.h. 3) Solaris doesn't have forkpty(). Added own forkpty.c to libinetutils/ and libinetutils/Makefile*.
