From: Nathan Cutler Date: Sat, 21 Jul 2018 06:30:03 +0000 (+0200) Subject: example/librados: remove dependency on Boost system library X-Git-Tag: v14.0.1~801^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F23159%2Fhead;p=ceph.git 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 --- diff --git a/examples/librados/Makefile b/examples/librados/Makefile index 90fe7ecb55d..e51c045a65d 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)