aboutsummaryrefslogtreecommitdiff
path: root/w32
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-12-11 10:06:21 +0100
committerChristian Grothoff <christian@grothoff.org>2018-12-11 10:06:42 +0100
commit273a6df932af73d7c84fef8668a53b2e65311e24 (patch)
tree4f562f84988aa6bc512a5d88c4bdc79e4c77180c /w32
parente13c79ee3b5208c8b94538144abe58eab099b3f8 (diff)
downloadlibmicrohttpd-273a6df932af73d7c84fef8668a53b2e65311e24.tar.gz
libmicrohttpd-273a6df932af73d7c84fef8668a53b2e65311e24.zip
remove requirement for VLA in digestauth.c logic
Diffstat (limited to 'w32')
-rw-r--r--w32/common/MHD_config.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/w32/common/MHD_config.h b/w32/common/MHD_config.h
index 21db7eae..964df10d 100644
--- a/w32/common/MHD_config.h
+++ b/w32/common/MHD_config.h
@@ -9,6 +9,9 @@
9/* Define if MS VC compiler is used */ 9/* Define if MS VC compiler is used */
10#define MSVC 1 10#define MSVC 1
11 11
12/* Define that MS VC does not support VLAs */
13#define __STDC_NO_VLA__ 1
14
12/* Define to 1 if your C compiler supports inline functions. */ 15/* Define to 1 if your C compiler supports inline functions. */
13#define INLINE_FUNC 1 16#define INLINE_FUNC 1
14 17