I had partial success with TTYD.
I was able to start the compilation by modifying the
configure script, and force it to treat Darwin as FreeBSD, by adding:
Code:
elif [ "$SYSTEM" = "Darwin" ]
then
SYSTEM=FreeBSD
after the line SYSTEM=LINUX.
The compilation threw some warnings and then exited with an error. The compiler suggested that I use
ranlib on a file. I did so and the compilation went through.
So far everything is going like described in the
README, and I can find the
binaries in the new FreeBSD folder. I copied them to the usr/local/bin as the README suggested.
(I had problem 'installing' the
man pages but those are optional, since I have the help file in a PDF)
I can't execute either of the three executables: termnet, termnetd, tttyd. Their icons in the FreeBSD folder look like shell scripts and I decide to use the prefix
./ with ttyd. The command prompt doesn't output an error, but there is no effect.
The end application, which expects a serial port (virtual or real), doesn't see any ports in the system.
Should I be doing something with permissions or file types?
What can I do?
TIA