Skip to content

Commit fc5f010

Browse files
author
grothoff
committed
-releasing 0.9.25
git-svn-id: https://gnunet.org/svn/libmicrohttpd@26036 140774ce-b5e7-0310-ab8b-a85725594a96
1 parent 8ac3cb0 commit fc5f010

File tree

6 files changed

+311
-160
lines changed

6 files changed

+311
-160
lines changed

ChangeLog

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Wed Feb 6 01:51:52 CET 2013
2+
Releasing libmicrohttpd 0.9.25. -CG
3+
14
Fri Feb 1 10:19:44 CET 2013
25
Handle case where POST data contains "key=" without value
36
at the end and is not new-line terminated by invoking the

INSTALL

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Installation Instructions
22
*************************
33

4-
Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation,
4+
Copyright (C) 1994-1996, 1999-2002, 2004-2012 Free Software Foundation,
55
Inc.
66

77
Copying and distribution of this file, with or without modification,
@@ -309,9 +309,10 @@ causes the specified `gcc' to be used as the C compiler (unless it is
309309
overridden in the site shell script).
310310

311311
Unfortunately, this technique does not work for `CONFIG_SHELL' due to
312-
an Autoconf bug. Until the bug is fixed you can use this workaround:
312+
an Autoconf limitation. Until the limitation is lifted, you can use
313+
this workaround:
313314

314-
CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash
315+
CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
315316

316317
`configure' Invocation
317318
======================
@@ -367,4 +368,3 @@ operates.
367368

368369
`configure' also accepts some other, not widely useful, options. Run
369370
`configure --help' for more details.
370-

config.sub

+10-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
55
# 2011, 2012 Free Software Foundation, Inc.
66

7-
timestamp='2012-02-10'
7+
timestamp='2012-04-18'
88

99
# This file is (in principle) common to ALL GNU software.
1010
# The presence of a machine in this file suggests that SOME GNU software
@@ -225,6 +225,12 @@ case $os in
225225
-isc*)
226226
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
227227
;;
228+
-lynx*178)
229+
os=-lynxos178
230+
;;
231+
-lynx*5)
232+
os=-lynxos5
233+
;;
228234
-lynx*)
229235
os=-lynxos
230236
;;
@@ -1537,6 +1543,9 @@ case $basic_machine in
15371543
c4x-* | tic4x-*)
15381544
os=-coff
15391545
;;
1546+
hexagon-*)
1547+
os=-elf
1548+
;;
15401549
tic54x-*)
15411550
os=-coff
15421551
;;

configure.ac

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is part of libmicrohttpd.
2-
# (C) 2006-2012 Christian Grothoff (and other contributing authors)
2+
# (C) 2006-2013 Christian Grothoff (and other contributing authors)
33
#
44
# libmicrohttpd is free software; you can redistribute it and/or modify
55
# it under the terms of the GNU General Public License as published
@@ -21,14 +21,14 @@
2121
#
2222
#
2323
AC_PREREQ(2.57)
24-
AC_INIT([libmicrohttpd], [0.9.24],[[email protected]])
24+
AC_INIT([libmicrohttpd], [0.9.25],[[email protected]])
2525
AM_INIT_AUTOMAKE([silent-rules])
2626
AM_CONFIG_HEADER([MHD_config.h])
2727
AC_CONFIG_MACRO_DIR([m4])
2828
AH_TOP([#define _GNU_SOURCE 1])
2929

3030
LIB_VERSION_CURRENT=26
31-
LIB_VERSION_REVISION=2
31+
LIB_VERSION_REVISION=3
3232
LIB_VERSION_AGE=16
3333
AC_SUBST(LIB_VERSION_CURRENT)
3434
AC_SUBST(LIB_VERSION_REVISION)

0 commit comments

Comments
 (0)