summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorDenis Kozadaev <[email protected]>2023-05-18 21:41:25 +0300
committerMichele Calgaro <[email protected]>2023-05-23 10:14:51 +0900
commitd984205f2e2e53941bce2efb99252feb6a4c046e (patch)
tree71092a76f19990d9072233a2c02e687ee518da64 /ConfigureChecks.cmake
parentf3f71a018f383fe1cdf2d7e402c95325ba81c6a3 (diff)
downloadtdebase-d984205f2e2e53941bce2efb99252feb6a4c046e.tar.gz
tdebase-d984205f2e2e53941bce2efb99252feb6a4c046e.zip
SunOS specific patches
Signed-off-by: Denis Kozadaev <[email protected]> (cherry picked from commit 4d58a4ea8daf1a3cb91b7d8c6e574dd6f5bdb685)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake15
1 files changed, 15 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index a637df137..fff59ab29 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -575,3 +575,18 @@ if( BUILD_KXKB )
endif( )
endif( )
+
+if( BUILD_KCONTROL OR BUILD_TDM )
+ # SunOS kstat
+ check_library_exists( kstat kstat_open "" HAVE_KSTAT )
+ if( HAVE_KSTAT )
+ set( KSTAT_LIBRARIES kstat )
+ else()
+ if( ${CMAKE_SYSTEM_NAME} MATCHES "SunOS" )
+ tde_message_fatal( "libkstat not found on SunOS platform!" )
+ endif()
+ set( KSTAT_LIBRARIES "" )
+ endif( )
+endif( BUILD_KCONTROL OR BUILD_TDM )
+
+check_include_files( "sys/time.h;sys/loadavg.h" HAVE_SYS_LOADAVG_H )