From ed76f04c6852064235152ca85e5bf7b2e5b47994 Mon Sep 17 00:00:00 2001 From: Nathan Cutler Date: Sat, 21 Jul 2018 08:30:03 +0200 Subject: [PATCH] example/librados: remove dependency on Boost system library 109e6022beb0920f2a4746bd8c541e975494f251 introduced "-lboost_system" into example/librados/Makefile but the Boost system library is no longer required to compile and link hello_world.cc. Fixes: http://tracker.ceph.com/issues/25054 Signed-off-by: Nathan Cutler --- examples/librados/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/librados/Makefile b/examples/librados/Makefile index 90fe7ecb55d1..e51c045a65d5 100644 --- a/examples/librados/Makefile +++ b/examples/librados/Makefile @@ -1,7 +1,7 @@ CXX?=g++ CXX_FLAGS?=-std=c++11 -Wall -Wextra -Werror -g -CXX_LIBS?=-lboost_system -lrados -lradosstriper +CXX_LIBS?=-lrados -lradosstriper CXX_INC?=$(LOCAL_LIBRADOS_INC) CXX_CC=$(CXX) $(CXX_FLAGS) $(CXX_INC) $(LOCAL_LIBRADOS) -- 2.47.3