You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
#################################################
|
|
#
|
|
# (C) 2010-2011 Serghei Amelian
|
|
# serghei (DOT) amelian (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
check_include_file( sys/types.h HAVE_SYS_TYPES_H )
|
|
check_include_file( sys/stat.h HAVE_SYS_STAT_H )
|
|
check_include_file( sys/file.h HAVE_SYS_FILE_H )
|
|
check_include_file( unistd.h HAVE_UNISTD_H )
|
|
check_include_file( utmp.h HAVE_UTMP_H )
|
|
check_include_file( utmpx.h HAVE_UTMPX_H )
|
|
|
|
check_function_exists( vsnprintf HAVE_VSNPRINTF )
|
|
check_function_exists( strerror HAVE_STRERROR )
|
|
check_symbol_exists( strerror "string.h" HAVE_STRERROR_PROTO )
|
|
check_symbol_exists( fdopen "stdio.h" HAVE_FDOPEN_PROTO )
|
|
|
|
if( ${CMAKE_SYSTEM_NAME} STREQUAL "Linux" )
|
|
set( PROC_FIND_USER 1 CACHE INTERNAL "" FORCE )
|
|
set( UTMP_AND_PROC_FIND_USER 1 CACHE INTERNAL "" FORCE )
|
|
set( ALL_PROCESSES_AND_PROC_FIND_USER 1 CACHE INTERNAL "" FORCE )
|
|
endif( )
|
|
|
|
check_c_source_compiles("
|
|
#include <dirent.h>
|
|
int select_process(const struct dirent *d) { return 0; }
|
|
|
|
int main(int argc, char *argv[]) {
|
|
struct dirent **namelist;
|
|
(void) scandir(\"/proc\", &namelist, select_process, 0 /*no sort*/);
|
|
}"
|
|
SCANDIR_NEEDS_CONST
|
|
)
|