#5910: Fix autotools build (#2) and workaround MSVC bug

This commit is contained in:
Mike Gelfand 2015-04-04 18:28:13 +00:00
parent 5b1b22321c
commit a8231b42f8
2 changed files with 4 additions and 2 deletions

View File

@ -35,7 +35,7 @@ LDADD = \
${LIBM}
noinst_HEADERS = \
daemon.h
daemon.h \
watch.h
transmission_daemon_SOURCES = daemon.c watch.c

View File

@ -130,7 +130,9 @@ static void
stop_service (void)
{
if (service_stop_thread != NULL)
return;
{
return;
}
const DWORD wait_time = 30 * 1000;