Warning, /frameworks/kinit/ConfigureChecks.cmake is written in an unsupported language. File is not indexed.

0001 include(CheckFunctionExists)
0002 include(CheckIncludeFiles)
0003 include(CheckVariableExists)
0004 include(CheckLibraryExists)
0005 
0006 check_variable_exists(__progname HAVE___PROGNAME)
0007 check_include_files(sys/pstat.h HAVE_SYS_PSTAT_H)
0008 check_include_files(sys/select.h  HAVE_SYS_SELECT_H)
0009 check_function_exists(pstat HAVE_PSTAT)
0010 check_function_exists(setproctitle HAVE_SETPROCTITLE)
0011 check_library_exists(socket connect "" HAVE_SOCKET_LIBRARY)
0012 
0013 if(CMAKE_SYSTEM_NAME STREQUAL "Linux" OR CMAKE_SYSTEM_NAME STREQUAL "Darwin")
0014     set(CAN_CLOBBER_ARGV TRUE)
0015 else()
0016     set(CAN_CLOBBER_ARGV FALSE)
0017 endif()