X Tutup
Skip to content

Commit 9577eb6

Browse files
author
Sebastiano Merlino
committed
Update libmicrohttpd dependency to version 0.9.37
1 parent 68f00fc commit 9577eb6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ used per connection to avoid resource exhaustion.
132132
Requirements
133133
============
134134
* g++ >= 4.1.2
135-
* libmicrohttpd >= 0.9.7
135+
* libmicrohttpd >= 0.9.37
136136
* doxygen (if you want to build code reference)
137137

138138
Additionally, for MinGW on windows you will need:

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ AC_CHECK_HEADER([signal.h],[],[AC_MSG_ERROR("signal.h not found")])
9494
AC_CHECK_HEADER([gnutls/gnutls.h],[have_gnutls="yes"],[AC_MSG_WARN("gnutls/gnutls.h not found. TLS will be disabled"); have_gnutls="no"])
9595

9696
# Checks for libmicrohttpd
97-
PKG_CHECK_MODULES([LIBMICROHTTPD],[libmicrohttpd >= 0.9.7],[],[AC_MSG_ERROR("libmicrohttpd not present or too old - install libmicrohttpd >= 0.9.7")])
97+
PKG_CHECK_MODULES([LIBMICROHTTPD],[libmicrohttpd >= 0.9.37],[],[AC_MSG_ERROR("libmicrohttpd not present or too old - install libmicrohttpd >= 0.9.37")])
9898
#AC_CHECK_HEADER([microhttpd.h],[],[AC_MSG_ERROR("Microhttpd header files not found. Please use a version >= 0.9.9.")])
9999
#AC_CHECK_LIB([microhttpd],[MHD_start_daemon],[],[AC_MSG_ERROR("Microhttpd header files not found. Please use a version >= 0.9.9.")])
100100

libhttpserver.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ includedir=@includedir@
66
Name: libhttpserver
77
Description: A C++ library for creating an embedded Rest HTTP server
88
Version: @VERSION@
9-
Requires: libmicrohttpd >= 0.9.7
9+
Requires: libmicrohttpd >= 0.9.37
1010
Conflicts:
1111
Libs: -L${libdir} -lmicrohttpd
1212
Libs.private: @LHT_LIBDEPS@

0 commit comments

Comments
 (0)
X Tutup