aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--configure.ac8
-rw-r--r--src/include/microhttpd.h4
3 files changed, 12 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 1ee14e29..dd4379a1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,13 @@
1Mon Feb 24 23:13:53 CET 2014
2 Added support for TCP FASTOPEN. -SHT
3 Releasing 0.9.34. -CG
4
1Tue Feb 18 19:46:45 CET 2014 5Tue Feb 18 19:46:45 CET 2014
2 Removed dependency on plibc for simpler compilation for W32. 6 Removed dependency on plibc for simpler compilation for W32.
3 Added configure option "--disable-pipes" to use socketpairs 7 Added configure option "--disable-pipes" to use socketpairs
4 instead of pipes for signalling to child threads. Pipes are 8 instead of pipes for signalling to child threads. Pipes are
5 always disabled on W32. 9 always disabled on W32.
6 Some code refactoring. - EG 10 Some code refactoring. -EG
7 11
8Sat Feb 8 15:08:35 CET 2014 12Sat Feb 8 15:08:35 CET 2014
9 Corrected some uses of 'int' vs. 'size_t'. -EG/CG 13 Corrected some uses of 'int' vs. 'size_t'. -EG/CG
diff --git a/configure.ac b/configure.ac
index 050ff222..81f881c0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
1# This file is part of libmicrohttpd. 1# This file is part of libmicrohttpd.
2# (C) 2006-2013 Christian Grothoff (and other contributing authors) 2# (C) 2006-2014 Christian Grothoff (and other contributing authors)
3# 3#
4# libmicrohttpd is free software; you can redistribute it and/or modify 4# libmicrohttpd is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published 5# it under the terms of the GNU General Public License as published
@@ -22,15 +22,15 @@
22# 22#
23AC_PREREQ(2.57) 23AC_PREREQ(2.57)
24LT_PREREQ([2.4.0]) 24LT_PREREQ([2.4.0])
25AC_INIT([libmicrohttpd], [0.9.33],[libmicrohttpd@gnu.org]) 25AC_INIT([libmicrohttpd], [0.9.34],[libmicrohttpd@gnu.org])
26AM_INIT_AUTOMAKE([silent-rules] [subdir-objects]) 26AM_INIT_AUTOMAKE([silent-rules] [subdir-objects])
27AC_CONFIG_HEADERS([MHD_config.h]) 27AC_CONFIG_HEADERS([MHD_config.h])
28AC_CONFIG_MACRO_DIR([m4]) 28AC_CONFIG_MACRO_DIR([m4])
29AH_TOP([#define _GNU_SOURCE 1]) 29AH_TOP([#define _GNU_SOURCE 1])
30 30
31LIB_VERSION_CURRENT=32 31LIB_VERSION_CURRENT=33
32LIB_VERSION_REVISION=0 32LIB_VERSION_REVISION=0
33LIB_VERSION_AGE=22 33LIB_VERSION_AGE=23
34AC_SUBST(LIB_VERSION_CURRENT) 34AC_SUBST(LIB_VERSION_CURRENT)
35AC_SUBST(LIB_VERSION_REVISION) 35AC_SUBST(LIB_VERSION_REVISION)
36AC_SUBST(LIB_VERSION_AGE) 36AC_SUBST(LIB_VERSION_AGE)
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 0f854cb5..121662ef 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 (C) 2006-2013 Christian Grothoff (and other contributing authors) 3 (C) 2006-2014 Christian Grothoff (and other contributing authors)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
@@ -126,7 +126,7 @@ extern "C"
126 * Current version of the library. 126 * Current version of the library.
127 * 0x01093001 = 1.9.30-1. 127 * 0x01093001 = 1.9.30-1.
128 */ 128 */
129#define MHD_VERSION 0x00093302 129#define MHD_VERSION 0x00093400
130 130
131/** 131/**
132 * MHD-internal return code for "YES". 132 * MHD-internal return code for "YES".