diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-08-24 17:43:32 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-08-24 17:43:32 +0300 |
commit | b84aa64dcbfb92d31cef10f2f45025a67f2418e4 (patch) | |
tree | bd7509540538801bdde233b24c0a130fbd6d757a /auto/sources | |
parent | 8b4b52ae3b3c9400b3d7040a591203a0c1b74ec3 (diff) | |
download | unit-b84aa64dcbfb92d31cef10f2f45025a67f2418e4.tar.gz unit-b84aa64dcbfb92d31cef10f2f45025a67f2418e4.tar.bz2 |
Removed configure option --no-threads.
Diffstat (limited to 'auto/sources')
-rw-r--r-- | auto/sources | 29 |
1 files changed, 9 insertions, 20 deletions
diff --git a/auto/sources b/auto/sources index 6ef8b5fe..1eba9e68 100644 --- a/auto/sources +++ b/auto/sources @@ -50,8 +50,10 @@ NXT_LIB_DEPS=" \ src/nxt_buf_filter.h \ src/nxt_recvbuf.h \ src/nxt_sendbuf.h \ + src/nxt_semaphore.h \ src/nxt_thread_log.h \ src/nxt_thread_time.h \ + src/nxt_thread_pool.h \ src/nxt_work_queue.h \ src/nxt_service.h \ src/nxt_fiber.h \ @@ -114,6 +116,13 @@ NXT_LIB_SRCS=" \ src/nxt_buf_pool.c \ src/nxt_recvbuf.c \ src/nxt_sendbuf.c \ + src/nxt_thread.c \ + src/nxt_thread_id.c \ + src/nxt_thread_mutex.c \ + src/nxt_thread_cond.c \ + src/nxt_spinlock.c \ + src/nxt_semaphore.c \ + src/nxt_thread_pool.c \ src/nxt_thread_time.c \ src/nxt_time_parse.c \ src/nxt_work_queue.c \ @@ -165,20 +174,6 @@ NXT_LIB_SRC0=" \ src/nxt_mem_pool_cleanup.c \ " -NXT_LIB_THREAD_DEPS=" \ - src/nxt_semaphore.h \ - src/nxt_thread_pool.h \ -" - -NXT_LIB_THREAD_SRCS=" \ - src/nxt_thread.c \ - src/nxt_thread_id.c \ - src/nxt_thread_mutex.c \ - src/nxt_thread_cond.c \ - src/nxt_spinlock.c \ - src/nxt_semaphore.c \ - src/nxt_thread_pool.c \ -" NXT_LIB_SSLTLS_DEPS="src/nxt_ssltls.h" NXT_LIB_SSLTLS_SRCS="src/nxt_ssltls.c" @@ -231,12 +226,6 @@ NXT_LIB_UTF8_FILE_NAME_TEST_SRCS=" \ " -if [ $NXT_THREADS = YES ]; then - NXT_LIB_DEPS="$NXT_LIB_DEPS $NXT_LIB_THREAD_DEPS" - NXT_LIB_SRCS="$NXT_LIB_SRCS $NXT_LIB_THREAD_SRCS" -fi - - if [ $NXT_SSLTLS = YES ]; then nxt_have=NXT_SSLTLS . auto/have NXT_LIB_DEPS="$NXT_LIB_DEPS $NXT_LIB_SSLTLS_DEPS" |