diff options
Diffstat (limited to 'src/microhttpd/daemon.c')
-rw-r--r-- | src/microhttpd/daemon.c | 6 |
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) #else return (sizeof(uint64_t) > sizeof(off_t)) ? MHD_NO : MHD_YES; #endif + case MHD_THREAD_NAMES: +#if defined(MHD_USE_THREAD_NAME_) + return MHD_YES; +#else + return MHD_NO; +#endif } return MHD_NO; } |