aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac8
-rw-r--r--src/include/microhttpd.h6
3 files changed, 10 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index d295e795..c8e1f976 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
1Thu May 31 13:33:45 CEST 2012
2 Releasing 0.9.20. -CG
3
1Tue May 29 13:55:03 CEST 2012 4Tue May 29 13:55:03 CEST 2012
2 Fixed some testcase build issues with disabled post processor. -CG 5 Fixed some testcase build issues with disabled post processor. -CG
3 6
diff --git a/configure.ac b/configure.ac
index 27385c9a..41d54722 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.19],[libmicrohttpd@gnu.org]) 24AC_INIT([libmicrohttpd], [0.9.20],[libmicrohttpd@gnu.org])
25AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.19]) 25AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.20])
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=24 30LIB_VERSION_CURRENT=25
31LIB_VERSION_REVISION=0 31LIB_VERSION_REVISION=0
32LIB_VERSION_AGE=14 32LIB_VERSION_AGE=15
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/include/microhttpd.h b/src/include/microhttpd.h
index cf5ca9ff..226ab65a 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 0x00091302 109#define MHD_VERSION 0x00091400
110 110
111/** 111/**
112 * MHD-internal return code for "YES". 112 * MHD-internal return code for "YES".
@@ -1414,7 +1414,7 @@ typedef void (*MHD_UpgradeHandler)(void *cls,
1414 void **con_cls, 1414 void **con_cls,
1415 int upgrade_socket); 1415 int upgrade_socket);
1416 1416
1417 1417#if 0
1418/** 1418/**
1419 * Create a response object that can be used for 101 UPGRADE 1419 * Create a response object that can be used for 101 UPGRADE
1420 * responses, for example to implement websockets. After sending the 1420 * responses, for example to implement websockets. After sending the
@@ -1447,7 +1447,7 @@ typedef void (*MHD_UpgradeHandler)(void *cls,
1447struct MHD_Response * 1447struct MHD_Response *
1448MHD_create_response_for_upgrade (MHD_UpgradeHandler upgrade_handler, 1448MHD_create_response_for_upgrade (MHD_UpgradeHandler upgrade_handler,
1449 void *upgrade_handler_cls); 1449 void *upgrade_handler_cls);
1450 1450#endif
1451 1451
1452/** 1452/**
1453 * Destroy a response object and associated resources. Note that 1453 * Destroy a response object and associated resources. Note that