libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 15e3b096a4d41fe22a40cbbfd12e4cdc661a6f14
parent 3f2b73dd803bb776ff890d4f22a1df982c231417
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu, 19 Jul 2012 19:56:54 +0000

-releasing 0.9.21

Diffstat:
MChangeLog | 3+++
MINSTALL | 9+++++++--
Mconfigure.ac | 6+++---
Mdoc/Makefile.am | 2++
Msrc/include/microhttpd.h | 2+-
5 files changed, 16 insertions(+), 6 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,6 @@ +Thu Jul 19 21:48:42 CEST 2012 + Releasing libmicrohttpd 0.9.21. -CG + Thu Jul 19 11:34:50 CEST 2012 Consistently use 'panic' function instead of ever directly calling 'abort ()'. Eliminating unused mutex in SSL mode. diff --git a/INSTALL b/INSTALL @@ -1,8 +1,8 @@ Installation Instructions ************************* -Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, -2006, 2007, 2008, 2009 Free Software Foundation, Inc. +Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation, +Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright @@ -226,6 +226,11 @@ order to use an ANSI C compiler: and if that doesn't work, install pre-built binaries of GCC for HP-UX. + HP-UX `make' updates targets which have the same time stamps as +their prerequisites, which makes it generally unusable when shipped +generated files such as `configure' are involved. Use GNU `make' +instead. + On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `<wchar.h>' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended diff --git a/configure.ac b/configure.ac @@ -21,15 +21,15 @@ # # AC_PREREQ(2.57) -AC_INIT([libmicrohttpd], [0.9.20],[libmicrohttpd@gnu.org]) +AC_INIT([libmicrohttpd], [0.9.21],[libmicrohttpd@gnu.org]) AM_INIT_AUTOMAKE([silent-rules]) AM_CONFIG_HEADER([MHD_config.h]) AC_CONFIG_MACRO_DIR([m4]) AH_TOP([#define _GNU_SOURCE 1]) -LIB_VERSION_CURRENT=25 +LIB_VERSION_CURRENT=26 LIB_VERSION_REVISION=0 -LIB_VERSION_AGE=15 +LIB_VERSION_AGE=16 AC_SUBST(LIB_VERSION_CURRENT) AC_SUBST(LIB_VERSION_REVISION) AC_SUBST(LIB_VERSION_AGE) diff --git a/doc/Makefile.am b/doc/Makefile.am @@ -19,6 +19,7 @@ microhttpd_TEXINFOS = \ chapters/processingpost.inc \ chapters/responseheaders.inc \ chapters/tlsauthentication.inc \ + chapters/sessions.inc \ examples/basicauthentication.c \ examples/hellobrowser.c \ examples/largepost.c \ @@ -26,6 +27,7 @@ microhttpd_TEXINFOS = \ examples/responseheaders.c \ examples/simplepost.c \ examples/tlsauthentication.c \ + examples/sessions.c \ fdl-1.3.texi \ lgpl.texi \ ecos.texi diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h @@ -106,7 +106,7 @@ extern "C" /** * Current version of the library. */ -#define MHD_VERSION 0x00091401 +#define MHD_VERSION 0x00091500 /** * MHD-internal return code for "YES".