summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2019-02-08 12:17:46 +0100
committerSlávek Banko <slavek.banko@axis.cz>2019-02-08 12:17:46 +0100
commitbd87db0c6ddffd437ba39acbcc9aa92db5c906c0 (patch)
treeccd8fd44692782e5b144d295a15e5aa7f58c368c
parent78f585f6243485113bdace2a59d4b70dc92d4d1f (diff)
downloadtdevelop-bd87db0c6ddffd437ba39acbcc9aa92db5c906c0.tar.gz
tdevelop-bd87db0c6ddffd437ba39acbcc9aa92db5c906c0.zip
Use common CMake tests.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--CMakeLists.txt1
-rw-r--r--ConfigureChecks.cmake31
2 files changed, 17 insertions, 15 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2828f057..72be575f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -23,6 +23,7 @@ set( VERSION R14.1.0 )
include( CheckCSourceCompiles )
include( CheckCXXSourceCompiles )
include( CheckFunctionExists )
+include( CheckSymbolExists )
include( CheckIncludeFile )
include( CheckIncludeFileCXX )
include( CheckLibraryExists )
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 592f0c57..d46b7e33 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -9,24 +9,30 @@
#
#################################################
-check_include_file( "sys/stropts.h" HAVE_SYS_STROPTS_H )
-check_function_exists( "mkfifo" HAVE_MKFIFO )
+# required stuff
+
+tde_setup_architecture_flags( )
+
+include(TestBigEndian)
+test_big_endian(WORDS_BIGENDIAN)
+
+tde_setup_largefiles( )
+
+find_package( TQt )
+find_package( TDE )
##### check for gcc visibility support #########
-# FIXME
-# This should check for [T]Qt3 visibility support
if( WITH_GCC_VISIBILITY )
- if( NOT UNIX )
- tde_message_fatal(FATAL_ERROR "\ngcc visibility support was requested, but your system is not *NIX" )
- endif( NOT UNIX )
- set( __KDE_HAVE_GCC_VISIBILITY 1 )
- set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fvisibility=hidden -fvisibility-inlines-hidden")
- set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden -fvisibility-inlines-hidden")
+ tde_setup_gcc_visibility( )
endif( )
+check_include_file( "sys/stropts.h" HAVE_SYS_STROPTS_H )
+check_function_exists( "mkfifo" HAVE_MKFIFO )
+
+
##### check for berkeley db ####################
# we need at least bdb 4.1, but I do not check for version
# because this is really old and trinity will not
@@ -91,8 +97,3 @@ if( NOT TAR )
tde_message_fatal( "tar with GNU extensions is required but not found on your system" )
endif( )
endif( )
-
-
-# required stuff
-find_package( TQt )
-find_package( TDE )