aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-05-28 23:30:32 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-05-28 23:30:32 +0300
commit69d990f4f8cf213132b361bb548986c6ce931d0b (patch)
tree9ced6e9ec7bb9772a085a7381c4d4617ad5071cd
parente03de7c2016df62e82a1c38226e12e2a2acda69e (diff)
downloadlibmicrohttpd-69d990f4f8cf213132b361bb548986c6ce931d0b.tar.gz
libmicrohttpd-69d990f4f8cf213132b361bb548986c6ce931d0b.zip
Releasing GNU libmicrohttpd 0.9.55v0.9.55
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac6
-rw-r--r--src/include/microhttpd.h2
3 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 1b18ab49..11eafd20 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
1Sun May 28 23:26:00 MSK 2017
2 Releasing GNU libmicrohttpd 0.9.55. -EG
3
1Sun May 21 18:48:00 MSK 2017 4Sun May 21 18:48:00 MSK 2017
2 Fixed build with disabled "UPGRADE". 5 Fixed build with disabled "UPGRADE".
3 Fixed possible null-dereference in HTTPS test. 6 Fixed possible null-dereference in HTTPS test.
diff --git a/configure.ac b/configure.ac
index afc3fed2..0fd671aa 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,14 +22,14 @@
22# 22#
23AC_PREREQ([2.64]) 23AC_PREREQ([2.64])
24LT_PREREQ([2.4.0]) 24LT_PREREQ([2.4.0])
25AC_INIT([GNU Libmicrohttpd],[0.9.54],[libmicrohttpd@gnu.org]) 25AC_INIT([GNU Libmicrohttpd],[0.9.55],[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])
29 29
30LIB_VERSION_CURRENT=54 30LIB_VERSION_CURRENT=55
31LIB_VERSION_REVISION=0 31LIB_VERSION_REVISION=0
32LIB_VERSION_AGE=42 32LIB_VERSION_AGE=43
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 d7b69136..40a723d6 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -126,7 +126,7 @@ typedef intptr_t ssize_t;
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 0x00095401 129#define MHD_VERSION 0x00095500
130 130
131/** 131/**
132 * MHD-internal return code for "YES". 132 * MHD-internal return code for "YES".