diff options
author | Guy Harris <guy@alum.mit.edu> | 2017-09-14 21:56:07 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2017-09-14 21:56:07 -0700 |
commit | d524c36a5f1baca5a973dacc6479633b21811f5d (patch) | |
tree | 8dc4e298a5caec416dbbb6bea851d35910f2e42d | |
parent | 441214e5df5a45eff82ecae61d67ba6a2a83452a (diff) |
We have to check for sys/sockio.h, at least on Solaris.
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4bbd08d2..376becf9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -141,6 +141,7 @@ if(NOT HAVE_UNISTD_H) endif(NOT HAVE_UNISTD_H) check_include_file(bitypes.h HAVE_SYS_BITYPES_H) check_include_file(sys/ioccom.h HAVE_SYS_IOCCOM_H) +check_include_file(sys/sockio.h HAVE_SYS_SOCKIO_H) check_include_file(sys/select.h HAVE_SYS_SELECT_H) check_include_file(limits.h HAVE_LIMITS_H) check_include_file(netpacket/packet.h HAVE_NETPACKET_PACKET_H) |