diff options
author | João Valverde <joao.valverde@tecnico.ulisboa.pt> | 2017-11-01 20:22:32 +0000 |
---|---|---|
committer | João Valverde <j@v6e.pt> | 2017-11-19 20:16:50 +0000 |
commit | 262a84c384353b2a88a6e81cdc499ab94a8316c2 (patch) | |
tree | 759ed52d7d81ce9e5ef21e338d235f94f53d77b0 /CMakeLists.txt | |
parent | 61bd626d5d10a7cd0e2dac667bbb262452fe906f (diff) | |
download | wireshark-262a84c384353b2a88a6e81cdc499ab94a8316c2.tar.gz wireshark-262a84c384353b2a88a6e81cdc499ab94a8316c2.tar.bz2 wireshark-262a84c384353b2a88a6e81cdc499ab94a8316c2.zip |
Fix (and chop) static build option
This sets the scope of the static build option to Wireshark support
libraries only.
Before the patch:
Static plugins don't work with CMake and autotools.
autotools static build is broken, and most likely will always be, as
building Wireshark all-static is difficult and time-consuming.
After the patch:
For CMake Wireshark will be built with static or shared libraries and
dynamic plugins. Everything just works. CMake apparently doesn't want
you building static and shared libraries at the same time.
For autotools Wireshark will be built with shared libraries by default.
--disable-shared and --enable-static options work as usual. Dlopened
plugins are not built if --disable-shared is given to configure (to
disable shared libraries). This is a limitations imposed by libtool.
Tested on Linux. This removes broken support for building plugins
statically.
Change-Id: Ib8e8176976f136eea93a2ce8f9857b6cf9bec64c
Reviewed-on: https://code.wireshark.org/review/24241
Petri-Dish: João Valverde <j@v6e.pt>
Tested-by: Petri Dish Buildbot
Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5987f47405..b0a0ecfdaf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -638,12 +638,8 @@ include(CheckCXXCompilerFlag) if(ENABLE_STATIC) set(BUILD_SHARED_LIBS 0) - set(LINK_MODE_LIB STATIC) - set(LINK_MODE_MODULE STATIC) else() set(BUILD_SHARED_LIBS 1) - set(LINK_MODE_LIB SHARED) - set(LINK_MODE_MODULE MODULE) endif() # Sigh: Have to use THIS_FLAG instead of ${F} for some reason @@ -1670,7 +1666,6 @@ endif() set(LIBEPAN_LIBS epan -# $(plugin_ldadd) # in case of static ${AIRPCAP_LIBRARIES} ${PCAP_LIBRARIES} ${CARES_LIBRARIES} |