diff options
author | Tobias Mayer <tobim@fastmail.fm> | 2022-11-10 08:59:23 +0100 |
---|---|---|
committer | Tobias Mayer <tobim@fastmail.fm> | 2022-11-12 14:34:23 +0100 |
commit | 07f2cb1e8f03784041475c27c2ba0aac7be6c0b7 (patch) | |
tree | 618a7f63ef2eaa2d2a4b33a0131f2621909d2066 /src | |
parent | f225f4307662fe9a57543d0c86c28aa9fddaf0d2 (diff) |
libstore: link to aws-crt-cpp
This change is needed to support aws-sdk-cpp 1.10 and newer.
I opted not to make this dependent on the sdk version because
the crt dependency has been in the interface of the older
sdk as well, and it was only coincidence that libstore didn't
make use of any privately defined symbols directly.
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local.mk b/src/libstore/local.mk index 1d26ac918..8f28bec6c 100644 --- a/src/libstore/local.mk +++ b/src/libstore/local.mk @@ -20,7 +20,7 @@ endif $(foreach file,$(libstore_FILES),$(eval $(call install-data-in,$(d)/$(file),$(datadir)/nix/sandbox))) ifeq ($(ENABLE_S3), 1) - libstore_LDFLAGS += -laws-cpp-sdk-transfer -laws-cpp-sdk-s3 -laws-cpp-sdk-core + libstore_LDFLAGS += -laws-cpp-sdk-transfer -laws-cpp-sdk-s3 -laws-cpp-sdk-core -laws-crt-cpp endif ifdef HOST_SOLARIS |