diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-09 16:44:20 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-09 16:44:20 -0600 |
commit | b2b96a5ed3e8deccde46148bbb1d50f69f585bd9 (patch) | |
tree | 0cc8534ed51d78ffedb5cda69ff859d5c2392ee2 | |
parent | 398f6a122a0bb13043681d7f331e45d5ece56bdb (diff) | |
download | tdebase-b2b96a5ed3e8deccde46148bbb1d50f69f585bd9.tar.gz tdebase-b2b96a5ed3e8deccde46148bbb1d50f69f585bd9.zip |
Add gcc visibility option to tdebase
-rw-r--r-- | CMakeLists.txt | 1 | ||||
-rw-r--r-- | ConfigureChecks.cmake | 14 | ||||
-rw-r--r-- | config.h.cmake | 3 |
3 files changed, 18 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a09f04014..b832a923e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -75,6 +75,7 @@ option( WITH_XINERAMA "Enable xinerama extension support" OFF ) option( WITH_ARTS "Enable aRts support" OFF ) option( WITH_I8K "Enable Dell laptop support (ksysguard)" OFF ) option( WITH_HAL "Enable HAL support" OFF ) +option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" OFF ) ##### user requested modules #################### diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 259da26e1..7b7a1b449 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -44,6 +44,20 @@ if( WITH_HAL ) endif( ) +##### 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( ) + + # xrender (kdesktop, konsole, kcontrol, kicker, twin) if( WITH_XRENDER OR BUILD_KDESKTOP OR BUILD_KONSOLE OR BUILD_KCONTROL OR BUILD_KICKER ) pkg_search_module( XRENDER xrender ) diff --git a/config.h.cmake b/config.h.cmake index cdf1db888..d72a96c33 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -1,5 +1,8 @@ #define VERSION "@VERSION@" +// Defined if you have fvisibility and fvisibility-inlines-hidden support. +#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1 + // konsole #cmakedefine HAVE_PROC_CWD 1 |