version bumping

This commit is contained in:
Christian Grothoff
2014-02-24 22:33:49 +00:00
parent ac8e483fa3
commit 756e2da381
3 changed files with 12 additions and 8 deletions
+6 -2
View File
@@ -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
+4 -4
View File
@@ -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)
+2 -2
View File
@@ -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".