summaryrefslogtreecommitdiff
path: root/storage.c
diff options
context:
space:
mode:
authordormando <dormando@rydia.net>2017-10-17 23:35:05 -0700
committerdormando <dormando@rydia.net>2017-11-28 14:18:05 -0800
commit603c1bb32304b107b468dae00ef083de1189762f (patch)
tree3a564b93898061e07bf45eb181aea02bd8e581fe /storage.c
parent76d0a13a1e49caf5bbaea4e6165a3568090b5366 (diff)
downloadmemcached-603c1bb32304b107b468dae00ef083de1189762f.tar.gz
extstore: fix a few more missing ifdefs
Diffstat (limited to 'storage.c')
-rw-r--r--storage.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/storage.c b/storage.c
index 8a68bbe..cf2f7fb 100644
--- a/storage.c
+++ b/storage.c
@@ -1,5 +1,7 @@
/* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
#include "memcached.h"
+#ifdef EXTSTORE
+
#include "storage.h"
#include <stdlib.h>
#include <string.h>
@@ -433,3 +435,4 @@ int start_storage_compact_thread(void *arg) {
return 0;
}
+#endif