aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/Makefile.am
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-10-11 15:21:11 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-10-11 15:21:11 +0000
commitee182a0b2995f562637f8c97f4591f6d55c4a0fb (patch)
tree21178baa04b3afc25f90a3fc8e7e11f8f583b7bb /src/microhttpd/Makefile.am
parentec820265a0b7f40fda6be51fbd7b8b0264aab4e9 (diff)
downloadlibmicrohttpd-ee182a0b2995f562637f8c97f4591f6d55c4a0fb.tar.gz
libmicrohttpd-ee182a0b2995f562637f8c97f4591f6d55c4a0fb.zip
Use MHD_itc_activate_ macro for ITC signaling, move ITC types to separate
header. Separate header allow exclusion of heavy headers in internal.h, which is included by most source files. Fixed checking success of write() to eventFD by comparing result to 1. Fixed error when trying to signal on fully filled ITC (ITC is already in activated (signaled) state and those conditions are not an error). EventFD is signaled now by macro, not a function.
Diffstat (limited to 'src/microhttpd/Makefile.am')
-rw-r--r--src/microhttpd/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am
index 4d0f81ce..11030731 100644
--- a/src/microhttpd/Makefile.am
+++ b/src/microhttpd/Makefile.am
@@ -67,7 +67,7 @@ libmicrohttpd_la_SOURCES = \
67 mhd_threads.c mhd_threads.h \ 67 mhd_threads.c mhd_threads.h \
68 mhd_locks.h mhd_sem.c \ 68 mhd_locks.h mhd_sem.c \
69 mhd_sockets.c mhd_sockets.h \ 69 mhd_sockets.c mhd_sockets.h \
70 mhd_itc.c mhd_itc.h \ 70 mhd_itc.c mhd_itc.h mhd_itc_types.h \
71 mhd_compat.h \ 71 mhd_compat.h \
72 response.c response.h 72 response.c response.h
73if HAVE_W32 73if HAVE_W32