summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorgregory guy <g-gregory@gmx.fr>2018-08-14 12:12:18 +0200
committerSlávek Banko <slavek.banko@axis.cz>2018-09-01 18:41:34 +0200
commit164c86e45f1e2d500335b11e08d1b5cfd797f018 (patch)
treeb37461536716254845f48ded18b3a96d57060c7e /ConfigureChecks.cmake
parentccdb7527d79725837a6954c2eef88d727598f3bf (diff)
downloadtdeadmin-164c86e45f1e2d500335b11e08d1b5cfd797f018.tar.gz
tdeadmin-164c86e45f1e2d500335b11e08d1b5cfd797f018.zip
add headers check to ConfigureChecks.cmake
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake57
1 files changed, 37 insertions, 20 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 426dc7a..27bd908 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -1,11 +1,8 @@
#################################################
#
-# (C) 2013 Alexander Golubev
-# fatzer2 (AT) gmail.com
-#
# Improvements and feedback are welcome
#
-# This file is released under GPL >= 2
+# This file is released under GPL >= 3
#
#################################################
@@ -21,22 +18,42 @@ endif( WITH_GCC_VISIBILITY )
tde_setup_architecture_flags( )
-
-##### kcron
-
-if( BUILD_KCRON )
- check_include_file( "sstream" HAVE_SSTREAM )
-endif( BUILD_KCRON )
-
-
-##### kuser
-
-if( BUILD_KUSER )
- check_include_file( "unistd.h" HAVE_UNISTD_H )
- check_include_file( "sys/stat.h" HAVE_SYS_STAT_H )
-endif( BUILD_KUSER )
-
-
+#### check for headers
+check_include_file( "unistd.h" HAVE_UNISTD_H )
+check_include_file( "sys/stat.h" HAVE_SYS_STAT_H )
+check_include_file( "Carbon/Carbon.h" HAVE_CARBON_CARBON_H )
+check_include_file( "crt_externs.h" HAVE_CRT_EXTERNS_H )
+check_include_file( "crypt.h" HAVE_CRYPT_H )
+check_include_file( "dirent.h" HAVE_DIRENT_H )
+check_include_file( "dlfcn.h" HAVE_DLFCN_H )
+check_include_file( "fcntl.h" HAVE_FCNTL_H )
+check_include_file( "inttypes.h" HAVE_INTTYPES_H )
+check_include_file( "linux/quota.h" HAVE_LINUX_QUOTA_H )
+check_include_file( "linux/unistd.h" HAVE_LINUX_UNISTD_H )
+check_include_file( "memory.h" HAVE_MEMORY_H )
+check_include_file( "mntent.h" HAVE_MNTENT_H )
+check_include_file( "ndir.h" HAVE_NDIR_H )
+check_include_file( "paths.h" HAVE_PATHS_H )
+check_include_file( "signal.h" HAVE_SIGNAL_H )
+check_include_file( "stdint.h" HAVE_STDINT_H )
+check_include_file( "stdlib.h" HAVE_STDLIB_H )
+check_include_file( "strings.h" HAVE_STRINGS_H )
+check_include_file( "string.h" HAVE_STRING_H )
+check_include_file( "stropts.h" HAVE_STROPTS_H )
+check_include_file( "sys/bitypes.h" HAVE_SYS_BITYPES_H )
+check_include_file( "sys/dir.h" HAVE_SYS_DIR_H )
+check_include_file( "sys/fcntl.h" HAVE_SYS_FCNTL_H )
+check_include_file( "sys/fs/ufs_quota.h" HAVE_SYS_FS_UFS_QUOTA_H )
+check_include_file( "sys/mntent.h" HAVE_SYS_MNTENT_H )
+check_include_file( "sys/mnttab.h" HAVE_SYS_MNTTAB_H )
+check_include_file( "sys/mount.h" HAVE_SYS_MOUNT_H )
+check_include_file( "sys/ndir.h" HAVE_SYS_NDIR_H )
+check_include_file( "sys/params.h" HAVE_SYS_PARAMS_H )
+check_include_file( "sys/param.h" HAVE_SYS_PARAM_H )
+check_include_file( "sys/quota.h" HAVE_SYS_QUOTA_H )
+check_include_file( "sys/stropts.h" HAVE_SYS_STROPTS_H )
+check_include_file( "sys/time.h" HAVE_SYS_TIME_H )
+check_include_file( "sys/types.h" HAVE_SYS_TYPES_H )
# required stuff
find_package( TQt )