Andy Dougherty wrote:
This problem is not really Solaris-specific at all. It's simply that
the emulation is missing a bunch of methods. From perldoc -f tie:
A class implementing a file handle should have the following methods:
TIEHANDLE classname, LIST
READ this, scalar, length, offset
READLINE this
GETC this
WRITE this, scalar, length, offset
PRINT this, LIST
PRINTF this, format, LIST
BINMODE this
EOF this
FILENO this
SEEK this, position, whence
TELL this
OPEN this, mode, LIST
CLOSE this
DESTROY this
UNTIE this
As I said, I think this shows up here due to the use of callbacks in the
hints file.
I wonder if I could ask you to file a bug report at
http://rt.cpan.org/Public/Dist/Display.html?Name=Tie-Filehandle-Preempt-Stdin
The shame and humiliation of having a bug report filed against one of my
CPAN modules would be an excellent impetus to correction of this problem.
kid51