]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
example/librados: remove dependency on Boost system library 23159/head
authorNathan Cutler <ncutler@suse.com>
Sat, 21 Jul 2018 06:30:03 +0000 (08:30 +0200)
committerNathan Cutler <ncutler@suse.com>
Sat, 21 Jul 2018 10:22:49 +0000 (12:22 +0200)
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 <ncutler@suse.com>
examples/librados/Makefile

index 90fe7ecb55d1bdef7105345635970e2e7e7153ca..e51c045a65d5d2a728b27b276bc06bca45e7fd2b 100644 (file)
@@ -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)