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: v13.2.2~109^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4246d382ff5392a866b012fc08ac3f304cf4a38a;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 (cherry picked from commit ed76f04c6852064235152ca85e5bf7b2e5b47994) --- 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)