aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-09-01 11:18:22 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-09-01 11:18:22 +0300
commit99f31f0547557d7bf119d7e93b877082b8ff34cd (patch)
tree265f1c8f652f12c2aa3d05551cd6f77245635fdb
parent2452f03c3f665079af4154b0b51c9e5fe276e0f9 (diff)
downloadlibmicrohttpd-99f31f0547557d7bf119d7e93b877082b8ff34cd.tar.gz
libmicrohttpd-99f31f0547557d7bf119d7e93b877082b8ff34cd.zip
configure: added stdint.h to the list of required headers
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index f08302de..b73f3cc3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1050,7 +1050,7 @@ fd = epoll_create1(EPOLL_CLOEXEC);]])],
1050 AC_DEFINE([[HAVE_EPOLL_CREATE1]], [[1]], [Define if you have epoll_create1 function.])])) 1050 AC_DEFINE([[HAVE_EPOLL_CREATE1]], [[1]], [Define if you have epoll_create1 function.])]))
1051 1051
1052# Check for headers that are ALWAYS required 1052# Check for headers that are ALWAYS required
1053AC_CHECK_HEADERS_ONCE([fcntl.h errno.h limits.h stdio.h], [], 1053AC_CHECK_HEADERS_ONCE([fcntl.h errno.h limits.h stdio.h stdint.h], [],
1054 [AC_MSG_ERROR([Compiling libmicrohttpd requires standard UNIX headers files])], [AC_INCLUDES_DEFAULT]) 1054 [AC_MSG_ERROR([Compiling libmicrohttpd requires standard UNIX headers files])], [AC_INCLUDES_DEFAULT])
1055 1055
1056# Check for optional headers 1056# Check for optional headers