From: Sage Weil Date: Fri, 5 May 2017 17:59:35 +0000 (-0400) Subject: CMakeLists.txt: WITH_BLKIN off for now X-Git-Tag: v12.0.3~73^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=b4eab62c5ef8aee28f0ac111daf5084d6d02a80d;p=ceph.git CMakeLists.txt: WITH_BLKIN off for now We are unconditionally linking lttng-ust, which make selinux complain. We should either - fix selinux rules and unconditionally link - dlopen at runtime based on an option (like we do for the current tracepoints) - ??? Signed-off-by: Sage Weil --- diff --git a/CMakeLists.txt b/CMakeLists.txt index af26681a01a66..e33cf17744dda 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -337,7 +337,7 @@ find_package(dpdk) set(HAVE_DPDK ${DPDK_FOUND}) endif(WITH_DPDK) -option(WITH_BLKIN "Use blkin to emit LTTng tracepoints for Zipkin" ON) +option(WITH_BLKIN "Use blkin to emit LTTng tracepoints for Zipkin" OFF) if(WITH_BLKIN) set(BLKIN_LIBRARIES blkin lttng-ust) include_directories(src/blkin/blkin-lib)