diff options
author | Radoslaw Zarzynski <rzarzynski@mirantis.com> | 2015-05-12 14:13:45 +0200 |
---|---|---|
committer | Yehuda Sadeh <yehuda@redhat.com> | 2015-08-27 19:39:25 +0200 |
commit | 7675aca5d5d0b0d243574d34819321a301818204 (patch) | |
tree | bfa0be767b7d2efc583069a8e495d5cb6dfd8a17 /src/cls/Makefile-client.am | |
parent | rgw: define attribute for storing object expiration info. (diff) | |
download | ceph-7675aca5d5d0b0d243574d34819321a301818204.tar.xz ceph-7675aca5d5d0b0d243574d34819321a301818204.zip |
cls: add timeindex class for radosgw's objects expiration.
Fixes: #4099
Signed-off-by: Radoslaw Zarzynski <rzarzynski@mirantis.com>
Diffstat (limited to 'src/cls/Makefile-client.am')
-rw-r--r-- | src/cls/Makefile-client.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/cls/Makefile-client.am b/src/cls/Makefile-client.am index aa4a4e6054b..21bd7e546bf 100644 --- a/src/cls/Makefile-client.am +++ b/src/cls/Makefile-client.am @@ -24,6 +24,9 @@ noinst_LIBRARIES += libcls_log_client.a libcls_statelog_client_a_SOURCES = cls/statelog/cls_statelog_client.cc noinst_LIBRARIES += libcls_statelog_client.a +libcls_timeindex_client_a_SOURCES = cls/timeindex/cls_timeindex_client.cc +noinst_LIBRARIES += libcls_timeindex_client.a + libcls_replica_log_client_a_SOURCES = \ cls/replica_log/cls_replica_log_types.cc \ cls/replica_log/cls_replica_log_ops.cc \ @@ -68,6 +71,9 @@ noinst_HEADERS += \ cls/statelog/cls_statelog_types.h \ cls/statelog/cls_statelog_ops.h \ cls/statelog/cls_statelog_client.h \ + cls/timeindex/cls_timeindex_types.h \ + cls/timeindex/cls_timeindex_ops.h \ + cls/timeindex/cls_timeindex_client.h \ cls/replica_log/cls_replica_log_types.h \ cls/replica_log/cls_replica_log_ops.h \ cls/replica_log/cls_replica_log_client.h \ |