Subject: | Unable to read terminal settings in GetControlChars |
On some systems the test script fails:
...
PERL_DL_NONLAZY=1 "/usr/perl5.28.1Dp/bin/perl5.28.1" "-Iblib/lib" "-Iblib/arch" test.pl
GetKey set to case conversion disabled: GetKey set to cbreak:
Term::GetKey.pm 1.02. Commands from `test.pl'
when asked for a single character response when using qtty():
'`' quit the program '~' toggle GetKey announcement
'|' toggle case conversion '\' toggle the ReadKey settings
'=' read this announcement '+' list the caller function
Now on to the tests!
Term::ReadKey is using TERMIOS, as opposed to TERMIO or SGTTY.
Non-blocking reads possible via O_NODELAY, and select().
O_NODELAY will be used. select() will be used for timed reads.
Using GetTerminalSize, it appears that your terminal is
78 characters wide by 24 high.
You are connected at 9600/9600 baud.
Unable to read terminal settings in GetControlChars at test.pl line 108.
*** Error code 9
Stop.
make: stopped in /usr/home/cpansand/.cpan/build/2020052221/LibTerm-GetKey-1.02-9
...