|
|
@ -9,24 +9,30 @@
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#################################################
|
|
|
|
#################################################
|
|
|
|
|
|
|
|
|
|
|
|
check_include_file( "sys/stropts.h" HAVE_SYS_STROPTS_H )
|
|
|
|
# required stuff
|
|
|
|
check_function_exists( "mkfifo" HAVE_MKFIFO )
|
|
|
|
|
|
|
|
|
|
|
|
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 #########
|
|
|
|
##### check for gcc visibility support #########
|
|
|
|
# FIXME
|
|
|
|
|
|
|
|
# This should check for [T]Qt3 visibility support
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if( WITH_GCC_VISIBILITY )
|
|
|
|
if( WITH_GCC_VISIBILITY )
|
|
|
|
if( NOT UNIX )
|
|
|
|
tde_setup_gcc_visibility( )
|
|
|
|
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")
|
|
|
|
|
|
|
|
endif( )
|
|
|
|
endif( )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
check_include_file( "sys/stropts.h" HAVE_SYS_STROPTS_H )
|
|
|
|
|
|
|
|
check_function_exists( "mkfifo" HAVE_MKFIFO )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
##### check for berkeley db ####################
|
|
|
|
##### check for berkeley db ####################
|
|
|
|
# we need at least bdb 4.1, but I do not check for version
|
|
|
|
# we need at least bdb 4.1, but I do not check for version
|
|
|
|
# because this is really old and trinity will not
|
|
|
|
# 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" )
|
|
|
|
tde_message_fatal( "tar with GNU extensions is required but not found on your system" )
|
|
|
|
endif( )
|
|
|
|
endif( )
|
|
|
|
endif( )
|
|
|
|
endif( )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# required stuff
|
|
|
|
|
|
|
|
find_package( TQt )
|
|
|
|
|
|
|
|
find_package( TDE )
|
|
|
|
|
|
|
|