diff options
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 0c8966b..4b2708e 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -33,4 +33,10 @@ endif( WITH_GCC_VISIBILITY ) check_include_file( "sys/select.h" HAVE_SYS_SELECT_H ) check_include_file( "sys/time.h" HAVE_SYS_TIME_H ) -check_include_file( "time.h" TIME_WITH_SYS_TIME ) + +check_include_files( "sys/time.h;time.h" TIME_WITH_SYS_TIME ) + + +#### check for functions + +check_function_exists( strtoll HAVE_STRTOLL ) |