From: Kefu Chai Date: Fri, 29 Jul 2016 04:11:14 +0000 (+0800) Subject: cmake: remove uuid X-Git-Tag: ses5-milestone5~253^2~6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ce1d2e47ed2f060b340eeb2db76effc87e87fb87;p=ceph.git cmake: remove uuid as it is replaced by the boost implementation, and not detected in cmake anymore. Signed-off-by: Kefu Chai --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 2ed57d665fde..e457b84b7ab1 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -197,7 +197,7 @@ else(INTEL_SSE4_1) endif(INTEL_SSE4_1) -set(EXTRALIBS uuid rt ${CMAKE_DL_LIBS} ${ATOMIC_OPS_LIBRARIES}) +set(EXTRALIBS rt ${CMAKE_DL_LIBS} ${ATOMIC_OPS_LIBRARIES}) option(WITH_PROFILER "build extra profiler binaries" OFF) if(WITH_PROFILER) @@ -521,7 +521,7 @@ endif(HAVE_ARMV8_CRC) add_library(common_utf8 STATIC common/utf8.c) -target_link_libraries(common json_spirit erasure_code rt uuid resolv ${CRYPTO_LIBS} ${Boost_LIBRARIES} ${BLKID_LIBRARIES} ${Backtrace_LIBRARIES}) +target_link_libraries(common json_spirit erasure_code rt resolv ${CRYPTO_LIBS} ${Boost_LIBRARIES} ${BLKID_LIBRARIES} ${Backtrace_LIBRARIES}) if(${WITH_LTTNG}) add_subdirectory(tracing)