From: <RGi...@a1...> - 2002-03-27 10:15:51
|
> I am however getting a couple of warnings, not sure if they are > important or not but they are a little annoying. They are: > > Use of uninitialized value at > /loc/lepus/dph3sjq/perl/sun4-solaris/IO/Tty.pm line 19. > > Use of uninitialized value at > /loc/lepus/dph3sjq/perl/sun4-solaris/IO/Pty.pm line 16. > > These refer to the lines in the two modules which both say: > > eval { undef local $SIG{__DIE__}; local $^W = 0; require IO::Stty }; > > My perl version details are: > > Summary of my perl5 (5.0 patchlevel 5 subversion 3) configuration: I only used perl5.6.0, so this might be a peculiarity of 5.5.3. Please try changing those lines to eval { local $^W = 0; undef local $SIG{__DIE__}; require IO::Stty }; and see if the warnings go away. Hope this helps, Roland -- RGi...@cp... |