aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/Makefile.am
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-08-10 13:52:38 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-08-10 13:52:38 +0000
commite18185c55f8d1b6d6efe1b6a35b4c8c7bd48754a (patch)
treef0944fff5d0918803b202eb40da58b9b942982c3 /src/microhttpd/Makefile.am
parenteb46a43bc014b1d5e151fc53996aef14c29fec55 (diff)
downloadlibmicrohttpd-e18185c55f8d1b6d6efe1b6a35b4c8c7bd48754a.tar.gz
libmicrohttpd-e18185c55f8d1b6d6efe1b6a35b4c8c7bd48754a.zip
Moved thread abstraction to mhd_threads.h/mhd_threads.c,
minor bugs fixed.
Diffstat (limited to 'src/microhttpd/Makefile.am')
-rw-r--r--src/microhttpd/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am
index 6cc40a87..e4b173ca 100644
--- a/src/microhttpd/Makefile.am
+++ b/src/microhttpd/Makefile.am
@@ -67,6 +67,7 @@ libmicrohttpd_la_SOURCES = \
67 mhd_limits.h mhd_byteorder.h \ 67 mhd_limits.h mhd_byteorder.h \
68 sysfdsetsize.c sysfdsetsize.h \ 68 sysfdsetsize.c sysfdsetsize.h \
69 mhd_str.c mhd_str.h \ 69 mhd_str.c mhd_str.h \
70 mhd_threads.c mhd_threads.h \
70 response.c response.h 71 response.c response.h
71libmicrohttpd_la_CPPFLAGS = \ 72libmicrohttpd_la_CPPFLAGS = \
72 $(AM_CPPFLAGS) $(MHD_LIB_CPPFLAGS) \ 73 $(AM_CPPFLAGS) $(MHD_LIB_CPPFLAGS) \
@@ -200,7 +201,7 @@ test_shutdown_select_LDADD = \
200endif 201endif
201 202
202test_shutdown_poll_SOURCES = \ 203test_shutdown_poll_SOURCES = \
203 test_shutdown_select.c 204 test_shutdown_select.c mhd_threads.h
204if USE_POSIX_THREADS 205if USE_POSIX_THREADS
205test_shutdown_poll_CFLAGS = \ 206test_shutdown_poll_CFLAGS = \
206 $(AM_CFLAGS) $(PTHREAD_CFLAGS) 207 $(AM_CFLAGS) $(PTHREAD_CFLAGS)