diff options
| -rw-r--r-- | ConfigureChecks.cmake | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 76e3bef1..44870f9f 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -13,6 +13,20 @@ check_include_file( "sys/stropts.h" HAVE_SYS_STROPTS_H )  check_function_exists( "mkfifo" HAVE_MKFIFO ) +##### 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") +endif( ) + +  # 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 | 
