diff options
Diffstat (limited to 'src/microhttpd/Makefile.am')
-rw-r--r-- | src/microhttpd/Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am index 0f2672de..d89f3c19 100644 --- a/src/microhttpd/Makefile.am +++ b/src/microhttpd/Makefile.am | |||
@@ -166,6 +166,10 @@ endif | |||
166 | 166 | ||
167 | TESTS = $(check_PROGRAMS) | 167 | TESTS = $(check_PROGRAMS) |
168 | 168 | ||
169 | # Do not test trigger of select by shutdown of listen socket | ||
170 | # on Cygwin as this ability is deliberately ignored on Cygwin | ||
171 | # to improve compatibility with core OS. | ||
172 | if !CYGWIN_TARGET | ||
169 | if HAVE_LISTEN_SHUTDOWN | 173 | if HAVE_LISTEN_SHUTDOWN |
170 | check_PROGRAMS += \ | 174 | check_PROGRAMS += \ |
171 | test_shutdown_select \ | 175 | test_shutdown_select \ |
@@ -175,6 +179,7 @@ check_PROGRAMS += \ | |||
175 | test_shutdown_select_ignore \ | 179 | test_shutdown_select_ignore \ |
176 | test_shutdown_poll_ignore | 180 | test_shutdown_poll_ignore |
177 | endif | 181 | endif |
182 | endif | ||
178 | 183 | ||
179 | test_start_stop_SOURCES = \ | 184 | test_start_stop_SOURCES = \ |
180 | test_start_stop.c | 185 | test_start_stop.c |