diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2016-11-06 11:52:12 +0100 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2016-11-06 11:52:12 +0100 |
commit | 528b9c5323c61e65877c5fa0dd0f5444edccc981 (patch) | |
tree | 978e1a64765f31bb5bb1a7bb365449dab0b060bb /ConfigureChecks.cmake | |
parent | fab85b495e1bb023017b8da916d679e52f39c3f4 (diff) | |
download | libssh-528b9c5323c61e65877c5fa0dd0f5444edccc981.tar.gz libssh-528b9c5323c61e65877c5fa0dd0f5444edccc981.tar.xz libssh-528b9c5323c61e65877c5fa0dd0f5444edccc981.zip |
cmake: Correctly check for sys/[u]time.h
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 56822f35..f290a6f1 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -59,6 +59,7 @@ check_include_file(unistd.h HAVE_UNISTD_H) check_include_file(util.h HAVE_UTIL_H) check_include_file(libutil.h HAVE_LIBUTIL_H) check_include_file(sys/time.h HAVE_SYS_TIME_H) +check_include_file(sys/utime.h HAVE_SYS_UTIME_H) check_include_file(sys/param.h HAVE_SYS_PARAM_H) check_include_file(arpa/inet.h HAVE_ARPA_INET_H) check_include_file(byteswap.h HAVE_BYTESWAP_H) |