mirror of
https://github.com/moparisthebest/socat
synced 2024-12-22 06:58:47 -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
|
The check for fips.h required stddef.h
|
||||||
Thanks to Matt Hilt for reporting this issue and sending a patch
|
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:
|
docu:
|
||||||
libwrap always logs to syslog
|
libwrap always logs to syslog
|
||||||
|
|
||||||
|
@ -79,7 +79,8 @@ AC_HEADER_RESOLV()
|
|||||||
|
|
||||||
AC_CHECK_HEADERS(termios.h linux/if_tun.h)
|
AC_CHECK_HEADERS(termios.h linux/if_tun.h)
|
||||||
AC_CHECK_HEADERS(net/if_dl.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(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(util.h bsd/libutil.h libutil.h sys/stropts.h regex.h)
|
||||||
AC_CHECK_HEADERS(linux/fs.h linux/ext2_fs.h)
|
AC_CHECK_HEADERS(linux/fs.h linux/ext2_fs.h)
|
||||||
|
Loading…
Reference in New Issue
Block a user