commit f84c4d60a419628e657ccb6ad9797d6b20e7c159
parent 06336118eb5dd3b54b4d8ae424b9f767d9f1f9c7
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Sun, 1 May 2022 14:30:10 +0300
microhttpd.h: fixed list of required types
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
@@ -96,12 +96,12 @@ extern "C"
* they are parsed as decimal numbers.
* Example: 0x01093001 = 1.9.30-1.
*/
-#define MHD_VERSION 0x00097510
+#define MHD_VERSION 0x00097511
/* If generic headers don't work on your platform, include headers
- which define 'va_list', 'size_t', 'ssize_t', 'intptr_t',
- 'uint16_t', 'uint32_t', 'uint64_t', 'int64_t', 'off_t', 'struct sockaddr',
- 'socklen_t', 'fd_set' and "#define MHD_PLATFORM_H" before
+ which define 'va_list', 'size_t', 'ssize_t', 'intptr_t', 'off_t',
+ 'uint8_t', 'uint16_t', 'int32_t', 'uint32_t', 'int64_t', 'uint64_t',
+ 'struct sockaddr', 'socklen_t', 'fd_set' and "#define MHD_PLATFORM_H" before
including "microhttpd.h". Then the following "standard"
includes won't be used (which might be a good idea, especially
on platforms where they do not exist).