From 7e32dd482b2573d3b929a0000e6a47409a7fa4b2 Mon Sep 17 00:00:00 2001 From: hyunho kang Date: Wed, 9 Sep 2015 23:46:55 +0900 Subject: [PATCH] Make symbolic link for 2.x compatibility. Change-Id: I7490d86268505828bb8e87d8a5636803b88c1c05 Signed-off-by: hyunho kang --- packaging/message-port.spec | 2 ++ src/CMakeLists.txt | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/packaging/message-port.spec b/packaging/message-port.spec index 96f4dd8..89d8ce7 100644 --- a/packaging/message-port.spec +++ b/packaging/message-port.spec @@ -47,6 +47,7 @@ rm -rf %{buildroot} %make_install + %post -p /sbin/ldconfig %postun -p /sbin/ldconfig @@ -54,6 +55,7 @@ rm -rf %{buildroot} %files %manifest %{name}.manifest %attr(0644,root,root) %{_libdir}/lib%{name}.so.* +%attr(0644,root,root) %{_libdir}/libcapi-message-port.so %license LICENSE.APLv2 %files devel diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8fe809e..c5fda02 100755 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -50,6 +50,11 @@ SET(PC_NAME ${this_target}) SET(PACKAGE_DESCRIPTION "Message Port internal library") SET(VERSION ${FULLVER}) SET(PC_REQUIRED ${${this_target}_requires}) + +ADD_CUSTOM_COMMAND( + TARGET ${this_target} POST_BUILD + COMMAND ln -s ${LIBRARY_OUTPUT_PATH}/libmessage-port.so.${MAJORVER} ${LIBRARY_OUTPUT_PATH}/libcapi-message-port.so) + CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/${this_target}.pc.in ${CMAKE_SOURCE_DIR}/${this_target}.pc @ONLY) INSTALL(FILES ${CMAKE_SOURCE_DIR}/${this_target}.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig) CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/capi-${this_target}.pc.in ${CMAKE_SOURCE_DIR}/capi-${this_target}.pc @ONLY) -- 2.7.4