Changeset 3156 for trunk/src/kmk/main.c
- Timestamp:
- Mar 18, 2018, 9:10:03 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/main.c
r3155 r3156 38 38 # include <io.h> 39 39 # include "pathstuff.h" 40 # include "sub_proc.h" 40 # ifndef CONFIG_NEW_WIN_CHILDREN 41 # include "sub_proc.h" 42 # else 43 # include "w32/winchildren.h" 44 # endif 41 45 # include "w32err.h" 42 46 #endif … … 2203 2207 job_setup_complete: 2204 2208 2209 #if defined (WINDOWS32) && defined(CONFIG_NEW_WIN_CHILDREN) 2210 /* Initialize the windows child management. */ 2211 MkWinChildInit(job_slots); 2212 #endif 2213 2205 2214 /* The extra indirection through $(MAKE_COMMAND) is done 2206 2215 for hysterical raisins. */ … … 3120 3129 setrlimit (RLIMIT_STACK, &stack_limit); 3121 3130 #endif 3131 # if !defined(WINDOWS32) || !defined(CONFIG_NEW_WIN_CHILDREN) 3122 3132 exec_command ((char **)nargv, environ); 3133 # else 3134 MkWinChildReExecMake ((char **)nargv, environ); 3135 # endif 3123 3136 #endif 3124 3137 free (aargv);
Note:
See TracChangeset
for help on using the changeset viewer.