aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-01-25 13:15:43 +0000
committerChristian Grothoff <christian@grothoff.org>2011-01-25 13:15:43 +0000
commitc7729110a0f784a2ba3a847586e0b418725db696 (patch)
treefc8462fa5c4a3b356b95c8125ca91e9ea8f3e4e4
parent67bd27b5c1827e9a1c4d122ef21e5371623da990 (diff)
downloadlibmicrohttpd-c7729110a0f784a2ba3a847586e0b418725db696.tar.gz
libmicrohttpd-c7729110a0f784a2ba3a847586e0b418725db696.zip
release
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac8
-rw-r--r--src/daemon/connection.c2
-rw-r--r--src/include/microhttpd.h2
4 files changed, 9 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index f60ab13f..f7a9b6d4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
1Tue Jan 25 14:10:45 CET 2011
2 Releasing libmicrohttpd 0.9.6. -CG
3
1Mon Jan 24 16:36:35 CET 2011 4Mon Jan 24 16:36:35 CET 2011
2 Fixing compilation error if DAUTH_SUPPORT was 0 (#1646). -CG/bplant 5 Fixing compilation error if DAUTH_SUPPORT was 0 (#1646). -CG/bplant
3 6
diff --git a/configure.ac b/configure.ac
index 86557b0e..427a99c3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,15 +21,15 @@
21# 21#
22# 22#
23AC_PREREQ(2.57) 23AC_PREREQ(2.57)
24AC_INIT([libmicrohttpd], [0.9.5],[libmicrohttpd@gnu.org]) 24AC_INIT([libmicrohttpd], [0.9.6],[libmicrohttpd@gnu.org])
25AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.5]) 25AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.6])
26AM_CONFIG_HEADER([MHD_config.h]) 26AM_CONFIG_HEADER([MHD_config.h])
27AC_CONFIG_MACRO_DIR([m4]) 27AC_CONFIG_MACRO_DIR([m4])
28AH_TOP([#define _GNU_SOURCE 1]) 28AH_TOP([#define _GNU_SOURCE 1])
29 29
30LIB_VERSION_CURRENT=13 30LIB_VERSION_CURRENT=14
31LIB_VERSION_REVISION=0 31LIB_VERSION_REVISION=0
32LIB_VERSION_AGE=3 32LIB_VERSION_AGE=4
33AC_SUBST(LIB_VERSION_CURRENT) 33AC_SUBST(LIB_VERSION_CURRENT)
34AC_SUBST(LIB_VERSION_REVISION) 34AC_SUBST(LIB_VERSION_REVISION)
35AC_SUBST(LIB_VERSION_AGE) 35AC_SUBST(LIB_VERSION_AGE)
diff --git a/src/daemon/connection.c b/src/daemon/connection.c
index 6740cc23..8cc6e946 100644
--- a/src/daemon/connection.c
+++ b/src/daemon/connection.c
@@ -342,7 +342,7 @@ try_ready_normal_body (struct MHD_Connection *connection)
342 return MHD_YES; 342 return MHD_YES;
343 } 343 }
344#endif 344#endif
345 345
346 ret = response->crc (response->crc_cls, 346 ret = response->crc (response->crc_cls,
347 connection->response_write_position, 347 connection->response_write_position,
348 response->data, 348 response->data,
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 0bc8902e..2dc1811c 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -106,7 +106,7 @@ extern "C"
106/** 106/**
107 * Current version of the library. 107 * Current version of the library.
108 */ 108 */
109#define MHD_VERSION 0x00090500 109#define MHD_VERSION 0x00090600
110 110
111/** 111/**
112 * MHD-internal return code for "YES". 112 * MHD-internal return code for "YES".