diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-08-27 17:06:24 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-08-27 17:06:24 +0000 |
commit | a63de8b17dfbc22786ed2626a5c9af2d0f9bb34f (patch) | |
tree | 109e66b986a0beb01a9c87d049819a9f1f69eef7 | |
parent | 8c7769fc5365ec762491dc93286773a9e36c32bc (diff) | |
download | libmicrohttpd-a63de8b17dfbc22786ed2626a5c9af2d0f9bb34f.tar.gz libmicrohttpd-a63de8b17dfbc22786ed2626a5c9af2d0f9bb34f.zip |
-releasing 0.9.51v0.9.51
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | m4/pkg.m4 | 217 | ||||
-rw-r--r-- | src/include/Makefile.am | 2 | ||||
-rw-r--r-- | src/include/microhttpd.h | 2 | ||||
-rw-r--r-- | src/microhttpd/Makefile.am | 1 |
6 files changed, 87 insertions, 146 deletions
@@ -1,3 +1,6 @@ | |||
1 | Sat Aug 27 18:20:38 CEST 2016 | ||
2 | Releasing libmicrohttpd 0.9.51. -CG | ||
3 | |||
1 | Tue Aug 23 22:54:07 MSK 2016 | 4 | Tue Aug 23 22:54:07 MSK 2016 |
2 | Internal refactoring: W32 compatibility layer was finally | 5 | Internal refactoring: W32 compatibility layer was finally |
3 | replaced with several specialized abstraction layers for | 6 | replaced with several specialized abstraction layers for |
@@ -25,7 +28,7 @@ Mon Aug 15 13:06:52 CEST 2016 | |||
25 | our connection limit. | 28 | our connection limit. |
26 | Avoid even accept()ing connections in certain thread modes | 29 | Avoid even accept()ing connections in certain thread modes |
27 | if we are at the connection limit and | 30 | if we are at the connection limit and |
28 | MHD_USE_PIPE_FOR_SHUTDOWN is available. | 31 | MHD_USE_PIPE_FOR_SHUTDOWN is available. -CG |
29 | 32 | ||
30 | Wed Aug 10 16:42:57 MSK 2016 | 33 | Wed Aug 10 16:42:57 MSK 2016 |
31 | Moved threads, locks and mutex abstraction to separate files, | 34 | Moved threads, locks and mutex abstraction to separate files, |
diff --git a/configure.ac b/configure.ac index 3c528754..c5b7e095 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -22,15 +22,15 @@ | |||
22 | # | 22 | # |
23 | AC_PREREQ([2.60]) | 23 | AC_PREREQ([2.60]) |
24 | LT_PREREQ([2.4.0]) | 24 | LT_PREREQ([2.4.0]) |
25 | AC_INIT([libmicrohttpd],[0.9.50],[libmicrohttpd@gnu.org]) | 25 | AC_INIT([libmicrohttpd],[0.9.51],[libmicrohttpd@gnu.org]) |
26 | AM_INIT_AUTOMAKE([silent-rules] [subdir-objects]) | 26 | AM_INIT_AUTOMAKE([silent-rules] [subdir-objects]) |
27 | AC_CONFIG_HEADERS([MHD_config.h]) | 27 | AC_CONFIG_HEADERS([MHD_config.h]) |
28 | AC_CONFIG_MACRO_DIR([m4]) | 28 | AC_CONFIG_MACRO_DIR([m4]) |
29 | AC_DEFINE([[_GNU_SOURCE]], [[1]], [Enable GNU-specific header features]) | 29 | AC_DEFINE([[_GNU_SOURCE]], [[1]], [Enable GNU-specific header features]) |
30 | 30 | ||
31 | LIB_VERSION_CURRENT=50 | 31 | LIB_VERSION_CURRENT=51 |
32 | LIB_VERSION_REVISION=0 | 32 | LIB_VERSION_REVISION=0 |
33 | LIB_VERSION_AGE=38 | 33 | LIB_VERSION_AGE=39 |
34 | AC_SUBST(LIB_VERSION_CURRENT) | 34 | AC_SUBST(LIB_VERSION_CURRENT) |
35 | AC_SUBST(LIB_VERSION_REVISION) | 35 | AC_SUBST(LIB_VERSION_REVISION) |
36 | AC_SUBST(LIB_VERSION_AGE) | 36 | AC_SUBST(LIB_VERSION_AGE) |
@@ -1,60 +1,29 @@ | |||
1 | dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- | 1 | # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- |
2 | dnl serial 11 (pkg-config-0.29.1) | 2 | # serial 1 (pkg-config-0.24) |
3 | dnl | 3 | # |
4 | dnl Copyright © 2004 Scott James Remnant <scott@netsplit.com>. | 4 | # Copyright © 2004 Scott James Remnant <scott@netsplit.com>. |
5 | dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com> | 5 | # |
6 | dnl | 6 | # This program is free software; you can redistribute it and/or modify |
7 | dnl This program is free software; you can redistribute it and/or modify | 7 | # it under the terms of the GNU General Public License as published by |
8 | dnl it under the terms of the GNU General Public License as published by | 8 | # the Free Software Foundation; either version 2 of the License, or |
9 | dnl the Free Software Foundation; either version 2 of the License, or | 9 | # (at your option) any later version. |
10 | dnl (at your option) any later version. | 10 | # |
11 | dnl | 11 | # This program is distributed in the hope that it will be useful, but |
12 | dnl This program is distributed in the hope that it will be useful, but | 12 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | dnl WITHOUT ANY WARRANTY; without even the implied warranty of | 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 14 | # General Public License for more details. |
15 | dnl General Public License for more details. | 15 | # |
16 | dnl | 16 | # You should have received a copy of the GNU General Public License |
17 | dnl You should have received a copy of the GNU General Public License | 17 | # along with this program; if not, write to the Free Software |
18 | dnl along with this program; if not, write to the Free Software | 18 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
19 | dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | 19 | # |
20 | dnl 02111-1307, USA. | 20 | # As a special exception to the GNU General Public License, if you |
21 | dnl | 21 | # distribute this file as part of a program that contains a |
22 | dnl As a special exception to the GNU General Public License, if you | 22 | # configuration script generated by Autoconf, you may include it under |
23 | dnl distribute this file as part of a program that contains a | 23 | # the same distribution terms that you use for the rest of that program. |
24 | dnl configuration script generated by Autoconf, you may include it under | 24 | |
25 | dnl the same distribution terms that you use for the rest of that | 25 | # PKG_PROG_PKG_CONFIG([MIN-VERSION]) |
26 | dnl program. | 26 | # ---------------------------------- |
27 | |||
28 | dnl PKG_PREREQ(MIN-VERSION) | ||
29 | dnl ----------------------- | ||
30 | dnl Since: 0.29 | ||
31 | dnl | ||
32 | dnl Verify that the version of the pkg-config macros are at least | ||
33 | dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's | ||
34 | dnl installed version of pkg-config, this checks the developer's version | ||
35 | dnl of pkg.m4 when generating configure. | ||
36 | dnl | ||
37 | dnl To ensure that this macro is defined, also add: | ||
38 | dnl m4_ifndef([PKG_PREREQ], | ||
39 | dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])]) | ||
40 | dnl | ||
41 | dnl See the "Since" comment for each macro you use to see what version | ||
42 | dnl of the macros you require. | ||
43 | m4_defun([PKG_PREREQ], | ||
44 | [m4_define([PKG_MACROS_VERSION], [0.29.1]) | ||
45 | m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1, | ||
46 | [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])]) | ||
47 | ])dnl PKG_PREREQ | ||
48 | |||
49 | dnl PKG_PROG_PKG_CONFIG([MIN-VERSION]) | ||
50 | dnl ---------------------------------- | ||
51 | dnl Since: 0.16 | ||
52 | dnl | ||
53 | dnl Search for the pkg-config tool and set the PKG_CONFIG variable to | ||
54 | dnl first found in the path. Checks that the version of pkg-config found | ||
55 | dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is | ||
56 | dnl used since that's the first version where most current features of | ||
57 | dnl pkg-config existed. | ||
58 | AC_DEFUN([PKG_PROG_PKG_CONFIG], | 27 | AC_DEFUN([PKG_PROG_PKG_CONFIG], |
59 | [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) | 28 | [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) |
60 | m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) | 29 | m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) |
@@ -76,19 +45,18 @@ if test -n "$PKG_CONFIG"; then | |||
76 | PKG_CONFIG="" | 45 | PKG_CONFIG="" |
77 | fi | 46 | fi |
78 | fi[]dnl | 47 | fi[]dnl |
79 | ])dnl PKG_PROG_PKG_CONFIG | 48 | ])# PKG_PROG_PKG_CONFIG |
80 | 49 | ||
81 | dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) | 50 | # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) |
82 | dnl ------------------------------------------------------------------- | 51 | # |
83 | dnl Since: 0.18 | 52 | # Check to see whether a particular set of modules exists. Similar |
84 | dnl | 53 | # to PKG_CHECK_MODULES(), but does not set variables or print errors. |
85 | dnl Check to see whether a particular set of modules exists. Similar to | 54 | # |
86 | dnl PKG_CHECK_MODULES(), but does not set variables or print errors. | 55 | # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) |
87 | dnl | 56 | # only at the first occurence in configure.ac, so if the first place |
88 | dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) | 57 | # it's called might be skipped (such as if it is within an "if", you |
89 | dnl only at the first occurence in configure.ac, so if the first place | 58 | # have to call PKG_CHECK_EXISTS manually |
90 | dnl it's called might be skipped (such as if it is within an "if", you | 59 | # -------------------------------------------------------------- |
91 | dnl have to call PKG_CHECK_EXISTS manually | ||
92 | AC_DEFUN([PKG_CHECK_EXISTS], | 60 | AC_DEFUN([PKG_CHECK_EXISTS], |
93 | [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl | 61 | [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl |
94 | if test -n "$PKG_CONFIG" && \ | 62 | if test -n "$PKG_CONFIG" && \ |
@@ -98,10 +66,8 @@ m4_ifvaln([$3], [else | |||
98 | $3])dnl | 66 | $3])dnl |
99 | fi]) | 67 | fi]) |
100 | 68 | ||
101 | dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) | 69 | # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) |
102 | dnl --------------------------------------------- | 70 | # --------------------------------------------- |
103 | dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting | ||
104 | dnl pkg_failed based on the result. | ||
105 | m4_define([_PKG_CONFIG], | 71 | m4_define([_PKG_CONFIG], |
106 | [if test -n "$$1"; then | 72 | [if test -n "$$1"; then |
107 | pkg_cv_[]$1="$$1" | 73 | pkg_cv_[]$1="$$1" |
@@ -113,11 +79,10 @@ m4_define([_PKG_CONFIG], | |||
113 | else | 79 | else |
114 | pkg_failed=untried | 80 | pkg_failed=untried |
115 | fi[]dnl | 81 | fi[]dnl |
116 | ])dnl _PKG_CONFIG | 82 | ])# _PKG_CONFIG |
117 | 83 | ||
118 | dnl _PKG_SHORT_ERRORS_SUPPORTED | 84 | # _PKG_SHORT_ERRORS_SUPPORTED |
119 | dnl --------------------------- | 85 | # ----------------------------- |
120 | dnl Internal check to see if pkg-config supports short errors. | ||
121 | AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], | 86 | AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], |
122 | [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) | 87 | [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) |
123 | if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then | 88 | if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then |
@@ -125,17 +90,19 @@ if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then | |||
125 | else | 90 | else |
126 | _pkg_short_errors_supported=no | 91 | _pkg_short_errors_supported=no |
127 | fi[]dnl | 92 | fi[]dnl |
128 | ])dnl _PKG_SHORT_ERRORS_SUPPORTED | 93 | ])# _PKG_SHORT_ERRORS_SUPPORTED |
129 | 94 | ||
130 | 95 | ||
131 | dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], | 96 | # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], |
132 | dnl [ACTION-IF-NOT-FOUND]) | 97 | # [ACTION-IF-NOT-FOUND]) |
133 | dnl -------------------------------------------------------------- | 98 | # |
134 | dnl Since: 0.4.0 | 99 | # |
135 | dnl | 100 | # Note that if there is a possibility the first call to |
136 | dnl Note that if there is a possibility the first call to | 101 | # PKG_CHECK_MODULES might not happen, you should be sure to include an |
137 | dnl PKG_CHECK_MODULES might not happen, you should be sure to include an | 102 | # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac |
138 | dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac | 103 | # |
104 | # | ||
105 | # -------------------------------------------------------------- | ||
139 | AC_DEFUN([PKG_CHECK_MODULES], | 106 | AC_DEFUN([PKG_CHECK_MODULES], |
140 | [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl | 107 | [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl |
141 | AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl | 108 | AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl |
@@ -189,40 +156,16 @@ else | |||
189 | AC_MSG_RESULT([yes]) | 156 | AC_MSG_RESULT([yes]) |
190 | $3 | 157 | $3 |
191 | fi[]dnl | 158 | fi[]dnl |
192 | ])dnl PKG_CHECK_MODULES | 159 | ])# PKG_CHECK_MODULES |
193 | |||
194 | |||
195 | dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], | ||
196 | dnl [ACTION-IF-NOT-FOUND]) | ||
197 | dnl --------------------------------------------------------------------- | ||
198 | dnl Since: 0.29 | ||
199 | dnl | ||
200 | dnl Checks for existence of MODULES and gathers its build flags with | ||
201 | dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags | ||
202 | dnl and VARIABLE-PREFIX_LIBS from --libs. | ||
203 | dnl | ||
204 | dnl Note that if there is a possibility the first call to | ||
205 | dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to | ||
206 | dnl include an explicit call to PKG_PROG_PKG_CONFIG in your | ||
207 | dnl configure.ac. | ||
208 | AC_DEFUN([PKG_CHECK_MODULES_STATIC], | ||
209 | [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl | ||
210 | _save_PKG_CONFIG=$PKG_CONFIG | ||
211 | PKG_CONFIG="$PKG_CONFIG --static" | ||
212 | PKG_CHECK_MODULES($@) | ||
213 | PKG_CONFIG=$_save_PKG_CONFIG[]dnl | ||
214 | ])dnl PKG_CHECK_MODULES_STATIC | ||
215 | 160 | ||
216 | 161 | ||
217 | dnl PKG_INSTALLDIR([DIRECTORY]) | 162 | # PKG_INSTALLDIR(DIRECTORY) |
218 | dnl ------------------------- | 163 | # ------------------------- |
219 | dnl Since: 0.27 | 164 | # Substitutes the variable pkgconfigdir as the location where a module |
220 | dnl | 165 | # should install pkg-config .pc files. By default the directory is |
221 | dnl Substitutes the variable pkgconfigdir as the location where a module | 166 | # $libdir/pkgconfig, but the default can be changed by passing |
222 | dnl should install pkg-config .pc files. By default the directory is | 167 | # DIRECTORY. The user can override through the --with-pkgconfigdir |
223 | dnl $libdir/pkgconfig, but the default can be changed by passing | 168 | # parameter. |
224 | dnl DIRECTORY. The user can override through the --with-pkgconfigdir | ||
225 | dnl parameter. | ||
226 | AC_DEFUN([PKG_INSTALLDIR], | 169 | AC_DEFUN([PKG_INSTALLDIR], |
227 | [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) | 170 | [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) |
228 | m4_pushdef([pkg_description], | 171 | m4_pushdef([pkg_description], |
@@ -233,18 +176,16 @@ AC_ARG_WITH([pkgconfigdir], | |||
233 | AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) | 176 | AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) |
234 | m4_popdef([pkg_default]) | 177 | m4_popdef([pkg_default]) |
235 | m4_popdef([pkg_description]) | 178 | m4_popdef([pkg_description]) |
236 | ])dnl PKG_INSTALLDIR | 179 | ]) dnl PKG_INSTALLDIR |
237 | 180 | ||
238 | 181 | ||
239 | dnl PKG_NOARCH_INSTALLDIR([DIRECTORY]) | 182 | # PKG_NOARCH_INSTALLDIR(DIRECTORY) |
240 | dnl -------------------------------- | 183 | # ------------------------- |
241 | dnl Since: 0.27 | 184 | # Substitutes the variable noarch_pkgconfigdir as the location where a |
242 | dnl | 185 | # module should install arch-independent pkg-config .pc files. By |
243 | dnl Substitutes the variable noarch_pkgconfigdir as the location where a | 186 | # default the directory is $datadir/pkgconfig, but the default can be |
244 | dnl module should install arch-independent pkg-config .pc files. By | 187 | # changed by passing DIRECTORY. The user can override through the |
245 | dnl default the directory is $datadir/pkgconfig, but the default can be | 188 | # --with-noarch-pkgconfigdir parameter. |
246 | dnl changed by passing DIRECTORY. The user can override through the | ||
247 | dnl --with-noarch-pkgconfigdir parameter. | ||
248 | AC_DEFUN([PKG_NOARCH_INSTALLDIR], | 189 | AC_DEFUN([PKG_NOARCH_INSTALLDIR], |
249 | [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) | 190 | [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) |
250 | m4_pushdef([pkg_description], | 191 | m4_pushdef([pkg_description], |
@@ -255,15 +196,13 @@ AC_ARG_WITH([noarch-pkgconfigdir], | |||
255 | AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) | 196 | AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) |
256 | m4_popdef([pkg_default]) | 197 | m4_popdef([pkg_default]) |
257 | m4_popdef([pkg_description]) | 198 | m4_popdef([pkg_description]) |
258 | ])dnl PKG_NOARCH_INSTALLDIR | 199 | ]) dnl PKG_NOARCH_INSTALLDIR |
259 | 200 | ||
260 | 201 | ||
261 | dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, | 202 | # PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, |
262 | dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) | 203 | # [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) |
263 | dnl ------------------------------------------- | 204 | # ------------------------------------------- |
264 | dnl Since: 0.28 | 205 | # Retrieves the value of the pkg-config variable for the given module. |
265 | dnl | ||
266 | dnl Retrieves the value of the pkg-config variable for the given module. | ||
267 | AC_DEFUN([PKG_CHECK_VAR], | 206 | AC_DEFUN([PKG_CHECK_VAR], |
268 | [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl | 207 | [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl |
269 | AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl | 208 | AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl |
@@ -272,4 +211,4 @@ _PKG_CONFIG([$1], [variable="][$3]["], [$2]) | |||
272 | AS_VAR_COPY([$1], [pkg_cv_][$1]) | 211 | AS_VAR_COPY([$1], [pkg_cv_][$1]) |
273 | 212 | ||
274 | AS_VAR_IF([$1], [""], [$5], [$4])dnl | 213 | AS_VAR_IF([$1], [""], [$5], [$4])dnl |
275 | ])dnl PKG_CHECK_VAR | 214 | ])# PKG_CHECK_VAR |
diff --git a/src/include/Makefile.am b/src/include/Makefile.am index 24102d94..a2222a7c 100644 --- a/src/include/Makefile.am +++ b/src/include/Makefile.am | |||
@@ -3,4 +3,4 @@ SUBDIRS = . | |||
3 | 3 | ||
4 | include_HEADERS = microhttpd.h | 4 | include_HEADERS = microhttpd.h |
5 | 5 | ||
6 | EXTRA_DIST = platform.h autoinit_funcs.h | 6 | EXTRA_DIST = platform.h autoinit_funcs.h mhd_options.h |
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h index 27576f5f..ff292280 100644 --- a/src/include/microhttpd.h +++ b/src/include/microhttpd.h | |||
@@ -126,7 +126,7 @@ typedef intptr_t ssize_t; | |||
126 | * Current version of the library. | 126 | * Current version of the library. |
127 | * 0x01093001 = 1.9.30-1. | 127 | * 0x01093001 = 1.9.30-1. |
128 | */ | 128 | */ |
129 | #define MHD_VERSION 0x00095009 | 129 | #define MHD_VERSION 0x00095100 |
130 | 130 | ||
131 | /** | 131 | /** |
132 | * MHD-internal return code for "YES". | 132 | * MHD-internal return code for "YES". |
diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am index cfd4799f..34a89984 100644 --- a/src/microhttpd/Makefile.am +++ b/src/microhttpd/Makefile.am | |||
@@ -58,7 +58,6 @@ libmicrohttpd_la_SOURCES = \ | |||
58 | daemon.c \ | 58 | daemon.c \ |
59 | internal.c internal.h \ | 59 | internal.c internal.h \ |
60 | memorypool.c memorypool.h \ | 60 | memorypool.c memorypool.h \ |
61 | mhd_options.h \ | ||
62 | mhd_mono_clock.c mhd_mono_clock.h \ | 61 | mhd_mono_clock.c mhd_mono_clock.h \ |
63 | mhd_limits.h mhd_byteorder.h \ | 62 | mhd_limits.h mhd_byteorder.h \ |
64 | sysfdsetsize.c sysfdsetsize.h \ | 63 | sysfdsetsize.c sysfdsetsize.h \ |