libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit cb1fabe87897c4d080d0a95373a08d6068dff635
parent 9b39de8d9eb11807d13ff7fd8e7a27ab84c12454
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri, 10 Jul 2020 15:08:23 +0200

version bump

Diffstat:
Msrc/include/microhttpd.h | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h @@ -132,7 +132,7 @@ typedef intptr_t ssize_t; * Current version of the library. * 0x01093001 = 1.9.30-1. */ -#define MHD_VERSION 0x00097002 +#define MHD_VERSION 0x00097101 /** * Operational results from MHD calls. @@ -180,7 +180,7 @@ enum MHD_Result #define _MHD_EXTERN extern #elif defined (_WIN32) && defined(MHD_W32DLL) /* Define MHD_W32DLL when using MHD as W32 .DLL to speed up linker a little */ -#define _MHD_EXTERN __declspec(dllimport) +#define _MHD_EXTERN __declspec (dllimport) #else #define _MHD_EXTERN extern #endif @@ -262,10 +262,10 @@ typedef SOCKET MHD_socket; #ifndef _MHD_DEPR_FUNC #if defined(_MSC_FULL_VER) && _MSC_VER + 0 >= 1400 /* VS 2005 or later */ -#define _MHD_DEPR_FUNC(msg) __declspec(deprecated (msg)) +#define _MHD_DEPR_FUNC(msg) __declspec (deprecated (msg)) #elif defined(_MSC_FULL_VER) && _MSC_VER + 0 >= 1310 /* VS .NET 2003 deprecation do not support custom messages */ -#define _MHD_DEPR_FUNC(msg) __declspec(deprecated) +#define _MHD_DEPR_FUNC(msg) __declspec (deprecated) #elif (__GNUC__ + 0 >= 5) || (defined (__clang__) && \ (__clang_major__ + 0 > 2 || (__clang_major__ + 0 == 2 && __clang_minor__ >= \ 9))) /* FIXME: earlier versions not tested */