libmicrohttpd

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

commit 4d24fb764b7fc0e2edf60a6bba7dc9280f81b667
parent cff0854d514681d2b74db46975c25d7b1f1434bc
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed, 29 Apr 2015 22:09:21 +0000

-version bumping

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

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,6 @@ +Thu Apr 30 00:03::49 CEST 2015 + Releasing libmicrohttpd 0.9.41. -CG + Thu Apr 30 00:02:33 CEST 2015 Fix issue where resumed connections would not continue unless other requests are active in certain diff --git a/configure.ac b/configure.ac @@ -22,15 +22,15 @@ # AC_PREREQ([2.60]) LT_PREREQ([2.4.0]) -AC_INIT([libmicrohttpd],[0.9.40],[libmicrohttpd@gnu.org]) +AC_INIT([libmicrohttpd],[0.9.41],[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=40 +LIB_VERSION_CURRENT=41 LIB_VERSION_REVISION=0 -LIB_VERSION_AGE=30 +LIB_VERSION_AGE=31 AC_SUBST(LIB_VERSION_CURRENT) AC_SUBST(LIB_VERSION_REVISION) AC_SUBST(LIB_VERSION_AGE) @@ -675,7 +675,7 @@ AC_ARG_WITH([[gnutls]], AS_IF([test "x$with_gnutls" != "xno" && test "x$have_gnutls" != "xyes"], [ - PKG_CHECK_MODULES(GNUTLS, [[gnutls]], + PKG_CHECK_MODULES(GNUTLS, [[gnutls]], [ have_gnutls_pkgcfg='yes' SAVE_CPPFLAGS="$CPPFLAGS" @@ -722,9 +722,9 @@ AS_IF([test "x$with_gnutls" != "xno" && test "x$have_gnutls" != "xyes"], CFLAGS="$SAVE_CFLAGS" LDFLAGS="$SAVE_LDFLAGS" LIBS="$SAVE_LIBS" - ], + ], [ - have_gnutls_pkgcfg='no' + have_gnutls_pkgcfg='no' AC_CHECK_HEADERS([gnutls/gnutls.h], [AC_CHECK_LIB([gnutls], [gnutls_priority_set], [ @@ -834,7 +834,7 @@ AC_SUBST(MHD_LIB_CFLAGS) AC_SUBST(MHD_LIB_LDFLAGS) # for pkg-config -AS_IF([[test "x$enable_https" = "xyes" && test "x$have_gnutls_pkgcfg" = "xyes" ]], +AS_IF([[test "x$enable_https" = "xyes" && test "x$have_gnutls_pkgcfg" = "xyes" ]], [ # remove GnuTLS from private libs in .pc file as it defined in Requires.private MHD_REQ_PRIVATE='gnutls' MHD_LIBDEPS_PKGCFG="${MHD_LIBDEPS//$GNUTLS_LIBS/}" diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h @@ -130,7 +130,7 @@ typedef intptr_t ssize_t; * Current version of the library. * 0x01093001 = 1.9.30-1. */ -#define MHD_VERSION 0x00094005 +#define MHD_VERSION 0x00094100 /** * MHD-internal return code for "YES".