aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-03-29 12:22:48 +0000
committerChristian Grothoff <christian@grothoff.org>2011-03-29 12:22:48 +0000
commit17461f1978058cc58f1824d78f18ace4365a77f7 (patch)
tree3379bb240f83a281a35c08521103ad56ae464dde
parentb41f753a6d0aa55ca5ef7f9e160813c007c03167 (diff)
downloadlibmicrohttpd-17461f1978058cc58f1824d78f18ace4365a77f7.tar.gz
libmicrohttpd-17461f1978058cc58f1824d78f18ace4365a77f7.zip
release 0.9.9
-rw-r--r--ChangeLog7
-rw-r--r--README1
-rw-r--r--configure.ac10
-rw-r--r--src/include/microhttpd.h4
4 files changed, 12 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index d2f2128b..b556867b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
1Tue Mar 29 14:15:13 CEST 2011
2 Releasing libmicrohttpd 0.9.9. -CG
3
1Tue Mar 29 14:11:19 CEST 2011 4Tue Mar 29 14:11:19 CEST 2011
2 Fixed call to mmap for memory pool, extended testcase to cover 5 Fixed call to mmap for memory pool, extended testcase to cover
3 POLL. -CG 6 POLL. -CG
@@ -33,12 +36,12 @@ Fri Mar 4 10:07:18 CET 2011
33 socket shutdown (also for thread-per-connection). -CG 36 socket shutdown (also for thread-per-connection). -CG
34 37
35Thu Mar 3 21:42:47 CET 2011 38Thu Mar 3 21:42:47 CET 2011
36 Fixing issue where Base64 decode fails when char is defined 39 Fixing issue where Base64 decode fails when char is defined
37 as unsigned char (Mantis 1666). -CG/tmayer 40 as unsigned char (Mantis 1666). -CG/tmayer
38 41
39Tue Mar 1 13:58:04 CET 2011 42Tue Mar 1 13:58:04 CET 2011
40 Allow use of 'poll' in combination with the external select mode. 43 Allow use of 'poll' in combination with the external select mode.
41 Avoid using pthread signals (SIGALRM), use pipe instead. 44 Avoid using pthread signals (SIGALRM), use pipe instead.
42 Corrected timeout calculation (s vs. ms). -CG 45 Corrected timeout calculation (s vs. ms). -CG
43 46
44Wed Feb 23 14:21:44 CET 2011 47Wed Feb 23 14:21:44 CET 2011
diff --git a/README b/README
index 048e88f8..40aa7d73 100644
--- a/README
+++ b/README
@@ -99,7 +99,6 @@ Functions not covered by "make check":
99====================================== 99======================================
100- file_reader (response.c); special case (sendfile) 100- file_reader (response.c); special case (sendfile)
101- mhd_panic_std (daemon.c); special case (abort) 101- mhd_panic_std (daemon.c); special case (abort)
102- MHD_poll (daemon.c)
103- parse_options (daemon.c) 102- parse_options (daemon.c)
104- MHD_set_panic_func (daemon.c) 103- MHD_set_panic_func (daemon.c)
105- MHD_get_version (daemon.c) 104- MHD_get_version (daemon.c)
diff --git a/configure.ac b/configure.ac
index 83219454..893d019e 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, 2007, 2008, 2009, 2010 Christian Grothoff (and other contributing authors) 2# (C) 2006, 2007, 2008, 2009, 2010, 2011 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
@@ -21,15 +21,15 @@
21# 21#
22# 22#
23AC_PREREQ(2.57) 23AC_PREREQ(2.57)
24AC_INIT([libmicrohttpd], [0.9.8],[libmicrohttpd@gnu.org]) 24AC_INIT([libmicrohttpd], [0.9.9],[libmicrohttpd@gnu.org])
25AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.8]) 25AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.9])
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=16 30LIB_VERSION_CURRENT=17
31LIB_VERSION_REVISION=0 31LIB_VERSION_REVISION=0
32LIB_VERSION_AGE=6 32LIB_VERSION_AGE=7
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 d4dd9042..fa5f6c95 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 0x00090800 109#define MHD_VERSION 0x00090900
110 110
111/** 111/**
112 * MHD-internal return code for "YES". 112 * MHD-internal return code for "YES".
@@ -1629,7 +1629,7 @@ const union MHD_DaemonInfo *MHD_get_daemon_info (struct MHD_Daemon *daemon,
1629/** 1629/**
1630 * Obtain the version of this library 1630 * Obtain the version of this library
1631 * 1631 *
1632 * @return static version string, e.g. "0.4.1" 1632 * @return static version string, e.g. "0.9.9"
1633 */ 1633 */
1634const char* MHD_get_version(void); 1634const char* MHD_get_version(void);
1635 1635