mirror of
https://github.com/moparisthebest/socat
synced 2024-12-21 22:48:48 -05:00
linux/errqueue.h may require linux/types.h
This commit is contained in:
parent
9585312903
commit
8371aa3dc0
3
CHANGES
3
CHANGES
@ -78,6 +78,9 @@ porting:
|
||||
The check for fips.h required stddef.h
|
||||
Thanks to Matt Hilt for reporting this issue and sending a patch
|
||||
|
||||
Check for linux/errqueue.h failed on some systems due to lack of
|
||||
linux/types.h inclusion. Thanks to Michael Vastola for sending a patch.
|
||||
|
||||
docu:
|
||||
libwrap always logs to syslog
|
||||
|
||||
|
@ -79,7 +79,8 @@ AC_HEADER_RESOLV()
|
||||
|
||||
AC_CHECK_HEADERS(termios.h linux/if_tun.h)
|
||||
AC_CHECK_HEADERS(net/if_dl.h)
|
||||
AC_CHECK_HEADERS(linux/types.h linux/errqueue.h)
|
||||
AC_CHECK_HEADERS(linux/types.h)
|
||||
AC_CHECK_HEADER(linux/errqueue.h, AC_DEFINE(HAVE_LINUX_ERRQUEUE_H), [], [#include <linux/types.h>])
|
||||
AC_CHECK_HEADERS(sys/utsname.h sys/select.h sys/file.h)
|
||||
AC_CHECK_HEADERS(util.h bsd/libutil.h libutil.h sys/stropts.h regex.h)
|
||||
AC_CHECK_HEADERS(linux/fs.h linux/ext2_fs.h)
|
||||
|
Loading…
Reference in New Issue
Block a user