* Makefile.in (CXXFLAGS): Use 'override' to correctly set flags to generate

dependencies when invoked from top-level make.
This commit is contained in:
Christopher Faylor
2005-09-02 17:12:37 +00:00
parent 8f36ef2f33
commit 414808f9e0
11 changed files with 40 additions and 21 deletions

View File

@ -346,6 +346,15 @@ proc_subproc (DWORD what, DWORD val)
if (global_sigs[SIGCHLD].sa_handler == (void *) SIG_IGN)
for (int i = 0; i < nprocs; i += remove_proc (i))
continue;
break;
case PROC_KILLFORKED:
for (int i = 0; i < nprocs; i++)
if (ISSTATE (procs[i], PID_INITIALIZING))
{
TerminateProcess (procs[i].hProcess, 1);
procs[i]->process_state = PID_EXITED;
}
break;
}
out: