aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/giop
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-09-24 20:41:34 +0000
committerGuy Harris <guy@alum.mit.edu>2010-09-24 20:41:34 +0000
commitac3ac6c476d0d92a16db0e840af96ba3e43c68a0 (patch)
treec6918a98de58abd1144cd9002f1a4c3c43dc815c /plugins/giop
parent9ba7c5f9dfc4a067569e1527285a0067845a3375 (diff)
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/giop')
-rw-r--r--plugins/giop/CMakeLists.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/giop/CMakeLists.txt b/plugins/giop/CMakeLists.txt
index 1ee4908bd5..90b80f9ede 100644
--- a/plugins/giop/CMakeLists.txt
+++ b/plugins/giop/CMakeLists.txt
@@ -57,7 +57,6 @@ add_library(cosnaming ${LINK_MODE_MODULE}
${COSNAMING_SRC}
)
set_target_properties(cosnaming PROPERTIES PREFIX "")
-set_target_properties(cosnaming PROPERTIES SOVERSION ${CPACK_PACKAGE_VERSION})
set_target_properties(cosnaming PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}")
target_link_libraries(cosnaming epan)
@@ -72,7 +71,6 @@ add_library(coseventcomm ${LINK_MODE_MODULE}
${COSEVENTCOMM_SRC}
)
set_target_properties(coseventcomm PROPERTIES PREFIX "")
-set_target_properties(coseventcomm PROPERTIES SOVERSION ${CPACK_PACKAGE_VERSION})
set_target_properties(coseventcomm PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}")
target_link_libraries(coseventcomm epan)
@@ -87,7 +85,6 @@ add_library(tango ${LINK_MODE_MODULE}
${TANGO_SRC}
)
set_target_properties(tango PROPERTIES PREFIX "")
-set_target_properties(tango PROPERTIES SOVERSION ${CPACK_PACKAGE_VERSION})
set_target_properties(tango PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}")
target_link_libraries(tango epan)
@@ -102,7 +99,6 @@ add_library(parlay ${LINK_MODE_MODULE}
${PARLAY_SRC}
)
set_target_properties(parlay PROPERTIES PREFIX "")
-set_target_properties(parlay PROPERTIES SOVERSION ${CPACK_PACKAGE_VERSION})
set_target_properties(parlay PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}")
target_link_libraries(parlay epan)