From 75d2492f20dc513337de3ef2d45e1d5c68c7dff8 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 4 May 2016 17:16:48 +0200 Subject: Make the aws-cpp-sdk dependency optional --- src/libstore/s3-binary-cache-store.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/libstore/s3-binary-cache-store.cc') diff --git a/src/libstore/s3-binary-cache-store.cc b/src/libstore/s3-binary-cache-store.cc index cffcb1bf214f..e64d0eb852aa 100644 --- a/src/libstore/s3-binary-cache-store.cc +++ b/src/libstore/s3-binary-cache-store.cc @@ -1,3 +1,7 @@ +#include "config.h" + +#if ENABLE_S3 + #include "s3-binary-cache-store.hh" #include "nar-info.hh" #include "nar-info-disk-cache.hh" @@ -251,3 +255,5 @@ static RegisterStoreImplementation regStore([]( }); } + +#endif -- cgit 1.4.1