mirror of
https://repo.or.cz/socat.git
synced 2024-12-23 07:52:32 +00:00
linux/errqueue.h may require linux/types.h
This commit is contained in:
parent
bf6ab907d3
commit
2893ae4d03
2 changed files with 5 additions and 1 deletions
3
CHANGES
3
CHANGES
|
@ -168,6 +168,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.
|
||||||
|
|
||||||
libwrap always logs to syslog
|
libwrap always logs to syslog
|
||||||
|
|
||||||
added actual text version of GPLv2
|
added actual text version of GPLv2
|
||||||
|
|
|
@ -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 a new issue