aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/daemon.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/daemon.c')
-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 90a49e91..c5aa3d9d 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -8747,6 +8747,12 @@ MHD_is_feature_supported (enum MHD_FEATURE feature)
8747#else 8747#else
8748 return MHD_NO; 8748 return MHD_NO;
8749#endif 8749#endif
8750 case MHD_FEATURE_DEBUG_BUILD:
8751#ifdef _DEBUG
8752 return MHD_YES;
8753#else
8754 return MHD_NO;
8755#endif
8750 8756
8751 default: 8757 default:
8752 break; 8758 break;