The timeout_reached bool is only used in this function when HAVE_FORK is
available. This is not the case on windows. Eina.h would only be
included with fork available so the Eina_Bool type causes a compilation
fail on windows. Guarding them as the other parts of the function using
it solves the problem.
Reviewed-by: Vincent Torri <vincent.torri@gmail.com>
Differential Revision: https://phab.enlightenment.org/D7947
int do_fork;
int num_forks = 0;
int can_fork = 0;
+#ifdef HAVE_FORK
Eina_Bool timeout_reached = EINA_FALSE;
+#endif
#ifdef ENABLE_TIMING_INFO
double tstart = 0.0, tcstart = 0.0;
int timing = _timing_enabled();