libmicrohttpd

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

commit 756e2da3811719b8142813a48e3da4a0e2ffcb9e
parent ac8e483fa39551f894a4d76bd8d756625cfda477
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon, 24 Feb 2014 22:33:49 +0000

version bumping

Diffstat:
MChangeLog | 8++++++--
Mconfigure.ac | 8++++----
Msrc/include/microhttpd.h | 4++--
3 files changed, 12 insertions(+), 8 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,9 +1,13 @@ +Mon Feb 24 23:13:53 CET 2014 + Added support for TCP FASTOPEN. -SHT + Releasing 0.9.34. -CG + Tue Feb 18 19:46:45 CET 2014 Removed dependency on plibc for simpler compilation for W32. Added configure option "--disable-pipes" to use socketpairs - instead of pipes for signalling to child threads. Pipes are + instead of pipes for signalling to child threads. Pipes are always disabled on W32. - Some code refactoring. - EG + Some code refactoring. -EG Sat Feb 8 15:08:35 CET 2014 Corrected some uses of 'int' vs. 'size_t'. -EG/CG diff --git a/configure.ac b/configure.ac @@ -1,5 +1,5 @@ # This file is part of libmicrohttpd. -# (C) 2006-2013 Christian Grothoff (and other contributing authors) +# (C) 2006-2014 Christian Grothoff (and other contributing authors) # # libmicrohttpd is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published @@ -22,15 +22,15 @@ # AC_PREREQ(2.57) LT_PREREQ([2.4.0]) -AC_INIT([libmicrohttpd], [0.9.33],[libmicrohttpd@gnu.org]) +AC_INIT([libmicrohttpd], [0.9.34],[libmicrohttpd@gnu.org]) AM_INIT_AUTOMAKE([silent-rules] [subdir-objects]) AC_CONFIG_HEADERS([MHD_config.h]) AC_CONFIG_MACRO_DIR([m4]) AH_TOP([#define _GNU_SOURCE 1]) -LIB_VERSION_CURRENT=32 +LIB_VERSION_CURRENT=33 LIB_VERSION_REVISION=0 -LIB_VERSION_AGE=22 +LIB_VERSION_AGE=23 AC_SUBST(LIB_VERSION_CURRENT) AC_SUBST(LIB_VERSION_REVISION) AC_SUBST(LIB_VERSION_AGE) diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h @@ -1,6 +1,6 @@ /* This file is part of libmicrohttpd - (C) 2006-2013 Christian Grothoff (and other contributing authors) + (C) 2006-2014 Christian Grothoff (and other contributing authors) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -126,7 +126,7 @@ extern "C" * Current version of the library. * 0x01093001 = 1.9.30-1. */ -#define MHD_VERSION 0x00093302 +#define MHD_VERSION 0x00093400 /** * MHD-internal return code for "YES".