aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac8
-rw-r--r--doc/Doxyfile2
-rw-r--r--doc/libmicrohttpd.35
-rw-r--r--src/include/microhttpd.h2
5 files changed, 10 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 78055fd1..dc7949ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
1Mon Jan 10 14:07:33 CET 2011
2 Releasing libmicrohttpd 0.9.5. -CG
3
1Wed Jan 5 15:20:11 CET 2011 4Wed Jan 5 15:20:11 CET 2011
2 Fixing double-locking on non-Linux platforms when using 5 Fixing double-locking on non-Linux platforms when using
3 MHD_create_response_from_fd (#1639). -CG 6 MHD_create_response_from_fd (#1639). -CG
diff --git a/configure.ac b/configure.ac
index 204d32ac..86557b0e 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.4],[libmicrohttpd@gnu.org]) 24AC_INIT([libmicrohttpd], [0.9.5],[libmicrohttpd@gnu.org])
25AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.4]) 25AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.5])
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=12 30LIB_VERSION_CURRENT=13
31LIB_VERSION_REVISION=0 31LIB_VERSION_REVISION=0
32LIB_VERSION_AGE=2 32LIB_VERSION_AGE=3
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/doc/Doxyfile b/doc/Doxyfile
index 1563b84c..ab2b6109 100644
--- a/doc/Doxyfile
+++ b/doc/Doxyfile
@@ -5,7 +5,7 @@
5#--------------------------------------------------------------------------- 5#---------------------------------------------------------------------------
6DOXYFILE_ENCODING = UTF-8 6DOXYFILE_ENCODING = UTF-8
7PROJECT_NAME = "GNU libmicrohttpd" 7PROJECT_NAME = "GNU libmicrohttpd"
8PROJECT_NUMBER = 0.4.2 8PROJECT_NUMBER = 0.9.5
9OUTPUT_DIRECTORY = doc/doxygen/ 9OUTPUT_DIRECTORY = doc/doxygen/
10CREATE_SUBDIRS = YES 10CREATE_SUBDIRS = YES
11OUTPUT_LANGUAGE = English 11OUTPUT_LANGUAGE = English
diff --git a/doc/libmicrohttpd.3 b/doc/libmicrohttpd.3
index 848c9aba..f69a1e6d 100644
--- a/doc/libmicrohttpd.3
+++ b/doc/libmicrohttpd.3
@@ -1,11 +1,8 @@
1.TH LIBMICROHTTPD "3" "10 Sep 2010 "libmicrohttpd" 1.TH LIBMICROHTTPD "3" "10 Jan 2011 "libmicrohttpd"
2.SH "NAME" 2.SH "NAME"
3GNU libmicrohttpd \- library for embedding HTTP servers 3GNU libmicrohttpd \- library for embedding HTTP servers
4.SH "SYNOPSIS" 4.SH "SYNOPSIS"
5 5
6 \fB#include <sys/types.h>
7 \fB#include <sys/select.h>
8 \fB#include <sys/socket.h>
9 \fB#include <microhttpd.h> 6 \fB#include <microhttpd.h>
10 7
11.SH "DESCRIPTION" 8.SH "DESCRIPTION"
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index c63e43bb..b2ab1c33 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 0x00090400 109#define MHD_VERSION 0x00090500
110 110
111/** 111/**
112 * MHD-internal return code for "YES". 112 * MHD-internal return code for "YES".