Subject: | No SIGHUP signal under Win32 |
HTTP::Server::Simple 0.15 throw an error under Windows 2000/98:
No such signal: SIGHUP at lib/HTTP/Server/Simple.pm line 200, <DATA> line 11
I solved this as follow, ignoring SIGHUP at line 200 as this signal does not exists:
line 183 local $SIG{HUP} = sub {
...
line 200 } if exists $SIG{'HUP'};