From 141452369116b2f8f9cfd08361082e4914e88d7e Mon Sep 17 00:00:00 2001 From: Omri Zeneva Date: Thu, 20 Jan 2022 03:58:29 -0500 Subject: [PATCH] cmake: set WITH_JAEGER=ON by default Signed-off-by: Omri Zeneva --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ca084f376ef4e1..cae08f62ce48f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -382,7 +382,7 @@ if(WITH_BLKIN) include_directories(SYSTEM src/blkin/blkin-lib) endif(WITH_BLKIN) -option(WITH_JAEGER "Enable jaegertracing and it's dependent libraries" OFF) +option(WITH_JAEGER "Enable jaegertracing and it's dependent libraries" ON) if(WITH_JAEGER) set(HAVE_JAEGER TRUE) endif()