In bug 18459, todd_rinaldo supplied the patch below to be applied to
lib\Net\Daemon just prior to doing "Perl Makefile.PL". One Windows XP,
ActiveState Perl 5.8.8, the ithread test now passes. However, it now
bombs on a different test. Namely, threadm.t, reported in bug report
26952. No one has replied. Without Net::Daemon, DBI will not install.
I need DBI, so I need this fixed.
Help!!!
---------paste patch
--- Test.pm.orig Thu Mar 30 22:44:39 2006
+++ Test.pm Thu Mar 30 22:44:55 2006
@@ -289,7 +289,7 @@
print "Starting process: proc = $path, args = ", join(" ", @_),
"\n";
if (!&Win32::Process::Create($pid, $path,
join(" ", @_), 0,
-
Win32::Process::NORMAL_PRIORITY_CLASS(),
+ Win32::Process::DETACHED_PROCESS(),
".")) {
die "Cannot create child process: "
. Win32::FormatMessage(Win32::GetLastError());
----------end paste patch