aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-09-28 06:41:03 +0000
committerChristian Grothoff <christian@grothoff.org>2011-09-28 06:41:03 +0000
commitb6f6b9a5cc5d2459efd18cd206e79ffa976d5a3d (patch)
treec3c47866923e4fcf23421bffa15c4ea8e8e08aa8
parent01541405d99549b3f973729ebc4fc1f48521f9d3 (diff)
downloadlibmicrohttpd-b6f6b9a5cc5d2459efd18cd206e79ffa976d5a3d.tar.gz
libmicrohttpd-b6f6b9a5cc5d2459efd18cd206e79ffa976d5a3d.zip
release0.9.15
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac8
-rw-r--r--src/include/microhttpd.h2
3 files changed, 8 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 5d06db54..c3020a4c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
1Wed Sep 28 08:37:55 CEST 2011
2 Releasing libmicrohttpd 0.9.15. -CG
3
1Tue Sep 27 13:07:36 CEST 2011 4Tue Sep 27 13:07:36 CEST 2011
2 Added ability to access URL arguments of the form 'url?foo' (without 5 Added ability to access URL arguments of the form 'url?foo' (without
3 '='). Added testcase and updated documentation accordingly. -CG 6 '='). Added testcase and updated documentation accordingly. -CG
diff --git a/configure.ac b/configure.ac
index 39853e20..109c184b 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.14],[libmicrohttpd@gnu.org]) 24AC_INIT([libmicrohttpd], [0.9.15],[libmicrohttpd@gnu.org])
25AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.14]) 25AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.15])
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=22 30LIB_VERSION_CURRENT=23
31LIB_VERSION_REVISION=0 31LIB_VERSION_REVISION=0
32LIB_VERSION_AGE=12 32LIB_VERSION_AGE=13
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 9e09652e..1afe831d 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 0x00090E00 109#define MHD_VERSION 0x00090F00
110 110
111/** 111/**
112 * MHD-internal return code for "YES". 112 * MHD-internal return code for "YES".