Azat Khuzhin 2016-08-07 22:19:39 +03:00
parent 1810857425
commit bb09535bda
3 changed files with 8 additions and 1 deletions

View File

@ -142,10 +142,14 @@ include test/include.am
if BUILD_WIN32 if BUILD_WIN32
SYS_LIBS = -lws2_32 -lshell32 -ladvapi32 SYS_LIBS = -lws2_32 -lshell32 -ladvapi32
SYS_SRC = win32select.c evthread_win32.c buffer_iocp.c event_iocp.c \ SYS_SRC = win32select.c buffer_iocp.c event_iocp.c \
bufferevent_async.c bufferevent_async.c
SYS_INCLUDES = -IWIN32-Code -IWIN32-Code/nmake SYS_INCLUDES = -IWIN32-Code -IWIN32-Code/nmake
if THREADS
SYS_SRC += evthread_win32.c
endif
else else
SYS_LIBS = SYS_LIBS =

View File

@ -749,6 +749,7 @@ if test x$bwin32 != xtrue && test "$enable_thread_support" != "no"; then
#include <pthread.h> ] #include <pthread.h> ]
) )
fi fi
AM_CONDITIONAL(THREADS, [test "$enable_thread_support" != "no"])
AM_CONDITIONAL(PTHREADS, [test "$have_pthreads" != "no" && test "$enable_thread_support" != "no"]) AM_CONDITIONAL(PTHREADS, [test "$have_pthreads" != "no" && test "$enable_thread_support" != "no"])
# check if we should compile locking into the library # check if we should compile locking into the library

View File

@ -101,8 +101,10 @@ regress_thread_SOURCES = test/regress_thread.c
PTHREAD_LIBS += libevent_pthreads.la PTHREAD_LIBS += libevent_pthreads.la
endif endif
if BUILD_WIN32 if BUILD_WIN32
if THREADS
regress_thread_SOURCES = test/regress_thread.c regress_thread_SOURCES = test/regress_thread.c
endif endif
endif
if ZLIB_REGRESS if ZLIB_REGRESS
regress_zlib_SOURCES = test/regress_zlib.c regress_zlib_SOURCES = test/regress_zlib.c
endif endif