From: Sage Weil Date: Sat, 13 Jul 2013 21:02:41 +0000 (-0700) Subject: Makefile: fix cls_refcount linkage X-Git-Tag: v0.67-rc1~74^2~6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=cda17fd1a9b7ba00ad85c9fff6e95434de3cf1a4;p=ceph.git Makefile: fix cls_refcount linkage Broken by d0bee5d85c1c862639450bad69c0ad20a98ef5c9. Fixes: #5622 Signed-off-by: Sage Weil --- diff --git a/src/Makefile.am b/src/Makefile.am index 6527f2a2da26..401ada5c8ed6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -552,7 +552,13 @@ libcls_lock_la_LDFLAGS = ${AM_LDFLAGS} -version-info 1:0:0 -export-symbols-regex radoslib_LTLIBRARIES += libcls_lock.la # refcount class -libcls_refcount_la_SOURCES = cls/refcount/cls_refcount.cc cls/refcount/cls_refcount_ops.cc +libcls_refcount_la_SOURCES = \ + cls/refcount/cls_refcount.cc \ + cls/refcount/cls_refcount_ops.cc \ + common/ceph_json.cc \ + json_spirit/json_spirit_reader.cpp \ + json_spirit/json_spirit_writer.cpp \ + json_spirit/json_spirit_value.cpp libcls_refcount_la_CFLAGS = ${AM_CFLAGS} libcls_refcount_la_CXXFLAGS= ${AM_CXXFLAGS} libcls_refcount_la_LIBADD = $(PTHREAD_LIBS) $(EXTRALIBS)