[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[libmicrohttpd] 06/08: configure: moved sys/stat.h to optional headers
From: |
gnunet |
Subject: |
[libmicrohttpd] 06/08: configure: moved sys/stat.h to optional headers |
Date: |
Wed, 01 Sep 2021 10:23:39 +0200 |
This is an automated email from the git hooks/post-receive script.
karlson2k pushed a commit to branch master
in repository libmicrohttpd.
commit b21d5bbac143440864eddad5be63f27774e055fe
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Wed Sep 1 10:57:20 2021 +0300
configure: moved sys/stat.h to optional headers
sys/stat.h is not actually used by MHD code at the moment
---
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index a470acf7..c2c5e44d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1050,14 +1050,14 @@ fd = epoll_create1(EPOLL_CLOEXEC);]])],
AC_DEFINE([[HAVE_EPOLL_CREATE1]], [[1]], [Define if you have epoll_create1
function.])]))
# Check for headers that are ALWAYS required
-AC_CHECK_HEADERS_ONCE([fcntl.h errno.h limits.h stdio.h sys/stat.h
sys/types.h], [],
+AC_CHECK_HEADERS_ONCE([fcntl.h errno.h limits.h stdio.h sys/types.h], [],
[AC_MSG_ERROR([Compiling libmicrohttpd requires standard UNIX headers
files])], [AC_INCLUDES_DEFAULT])
# Check for optional headers
AC_CHECK_HEADERS([sys/types.h sys/time.h sys/msg.h time.h sys/mman.h
sys/ioctl.h \
sys/socket.h sys/select.h netdb.h netinet/in.h netinet/ip.h netinet/tcp.h
arpa/inet.h \
endian.h machine/endian.h sys/endian.h sys/param.h sys/machine.h
sys/byteorder.h machine/param.h sys/isa_defs.h \
- signal.h \
+ signal.h sys/stat.h \
inttypes.h stddef.h stdlib.h unistd.h \
sockLib.h inetLib.h net/if.h], [], [], [AC_INCLUDES_DEFAULT])
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [libmicrohttpd] branch master updated (e42ec8f5 -> 99f31f05), gnunet, 2021/09/01
- [libmicrohttpd] 01/08: mhd_mono_clock: clarified doxy, gnunet, 2021/09/01
- [libmicrohttpd] 03/08: Guard stddef.h includes with '#ifdef HAVE_STDDEF_H', gnunet, 2021/09/01
- [libmicrohttpd] 06/08: configure: moved sys/stat.h to optional headers,
gnunet <=
- [libmicrohttpd] 04/08: configure: removed check for unused math.h header, gnunet, 2021/09/01
- [libmicrohttpd] 07/08: configure: removed sys/types.h duplicated check, gnunet, 2021/09/01
- [libmicrohttpd] 05/08: configure: removed check for unused locale.h header, gnunet, 2021/09/01
- [libmicrohttpd] 08/08: configure: added stdint.h to the list of required headers, gnunet, 2021/09/01
- [libmicrohttpd] 02/08: Test for stdlib.h presence, gnunet, 2021/09/01