diff options
author | Guy Harris <guy@alum.mit.edu> | 2010-09-24 20:41:34 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2010-09-24 20:41:34 +0000 |
commit | ac3ac6c476d0d92a16db0e840af96ba3e43c68a0 (patch) | |
tree | c6918a98de58abd1144cd9002f1a4c3c43dc815c /plugins/stats_tree | |
parent | 9ba7c5f9dfc4a067569e1527285a0067845a3375 (diff) | |
download | wireshark-ac3ac6c476d0d92a16db0e840af96ba3e43c68a0.tar.gz wireshark-ac3ac6c476d0d92a16db0e840af96ba3e43c68a0.tar.bz2 wireshark-ac3ac6c476d0d92a16db0e840af96ba3e43c68a0.zip |
Plugins are not shared libraries, so:
1) don't set thei SOVERSION - run-time-loaded modules don't have
an SOVERSION;
2) build them with link mode MODULE, not SHARED, on all
platforms.
(Fixing 1) also fixes the problem with building them as MODULE on OS X.)
svn path=/trunk/; revision=34243
Diffstat (limited to 'plugins/stats_tree')
-rw-r--r-- | plugins/stats_tree/CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/stats_tree/CMakeLists.txt b/plugins/stats_tree/CMakeLists.txt index 9ed2b63e38..4552cba4eb 100644 --- a/plugins/stats_tree/CMakeLists.txt +++ b/plugins/stats_tree/CMakeLists.txt @@ -42,7 +42,6 @@ add_library(stats_tree ${LINK_MODE_MODULE} ${TAP_SRC} ) set_target_properties(stats_tree PROPERTIES PREFIX "") -set_target_properties(stats_tree PROPERTIES SOVERSION ${CPACK_PACKAGE_VERSION}) set_target_properties(stats_tree PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}") target_link_libraries(stats_tree epan) |