Browse Source

-releasing 0.9.21

Christian Grothoff 13 years ago
parent
commit
15e3b096a4
5 changed files with 16 additions and 6 deletions
  1. 3 0
      ChangeLog
  2. 7 2
      INSTALL
  3. 3 3
      configure.ac
  4. 2 0
      doc/Makefile.am
  5. 1 1
      src/include/microhttpd.h

+ 3 - 0
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.

+ 7 - 2
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

+ 3 - 3
configure.ac

@@ -21,15 +21,15 @@
 #
 #
 AC_PREREQ(2.57)
-AC_INIT([libmicrohttpd], [0.9.20],[[email protected]])
+AC_INIT([libmicrohttpd], [0.9.21],[[email protected]])
 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)

+ 2 - 0
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

+ 1 - 1
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".