From 6326fec9f14f8b4288fc1822007ef7cd06339f7a Mon Sep 17 00:00:00 2001 From: OBATA Akio Date: Mon, 11 Feb 2019 18:11:07 +0900 Subject: Port HAVE_SYS_TIME_H to CMake It is used, but not checked with CMake. Signed-off-by: OBATA Akio --- ConfigureChecks.cmake | 6 ++++++ config.h.cmake | 3 +++ 2 files changed, 9 insertions(+) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 85ecd47bc..8969b6789 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -67,6 +67,12 @@ if( BUILD_DRKONQI OR BUILD_TDEIOSLAVES ) endif( ) +# sys/time.h (tdeioslave/sftp, ksmserver, ksplashml) +if( BUILD_KSMSERVER OR BUILD_KSPLASHML OR BUILD_TDEIOSLAVES) + check_include_file( sys/time.h HAVE_SYS_TIME_H ) +endif( ) + + # pam if( WITH_PAM AND (BUILD_KCHECKPASS OR BUILD_TDM) ) check_library_exists( pam pam_start "" HAVE_PAM ) diff --git a/config.h.cmake b/config.h.cmake index 30828ca62..96c81a785 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -50,6 +50,9 @@ // tdm, tdeioslave #cmakedefine HAVE_TERMIOS_H 1 +// tdeioslave/sftp, ksmserver, ksplashml +#cmakedefine HAVE_SYS_TIME_H 1 + // drkonqi #cmakedefine HAVE_STDINT_H 1 #cmakedefine HAVE_SYS_BITYPES_H -- cgit v1.2.3