aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-08-10 13:52:47 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-08-10 13:52:47 +0000
commita7029c10cccdf2b0d4597eb79fb58d2f11d167f1 (patch)
treed11d1941b64fd11f3e4d3b9f462facaa011af520 /src/microhttpd
parentf1316455d7f9abbf68cb227d4df1124e6a979454 (diff)
downloadlibmicrohttpd-a7029c10cccdf2b0d4597eb79fb58d2f11d167f1.tar.gz
libmicrohttpd-a7029c10cccdf2b0d4597eb79fb58d2f11d167f1.zip
configure.ac: added --disable-thread-names parameter
Diffstat (limited to 'src/microhttpd')
-rw-r--r--src/microhttpd/daemon.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index f493d19d..4845d60a 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -4905,6 +4905,12 @@ MHD_is_feature_supported(enum MHD_FEATURE feature)
4905#else 4905#else
4906 return (sizeof(uint64_t) > sizeof(off_t)) ? MHD_NO : MHD_YES; 4906 return (sizeof(uint64_t) > sizeof(off_t)) ? MHD_NO : MHD_YES;
4907#endif 4907#endif
4908 case MHD_THREAD_NAMES:
4909#if defined(MHD_USE_THREAD_NAME_)
4910 return MHD_YES;
4911#else
4912 return MHD_NO;
4913#endif
4908 } 4914 }
4909 return MHD_NO; 4915 return MHD_NO;
4910} 4916}