From 602840bfd22ca8c38341e85d0b74abebf6e2f29c Mon Sep 17 00:00:00 2001 From: John Ericson Date: Fri, 28 Mar 2025 10:50:46 -0400 Subject: [PATCH] Link the right issue about the bad AWS pkg-config It is https://github.com/aws/aws-sdk-cpp/issues/2673 (cherry picked from commit fb9c9ee35ae5c020e683ca29ba743ef3e4ab9d4d) --- src/libstore/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libstore/meson.build b/src/libstore/meson.build index 496c5b10d..1ea1f57bc 100644 --- a/src/libstore/meson.build +++ b/src/libstore/meson.build @@ -112,7 +112,8 @@ deps_public += nlohmann_json sqlite = dependency('sqlite3', 'sqlite', version : '>=3.6.19') deps_private += sqlite -# AWS C++ SDK has bad pkg-config +# AWS C++ SDK has bad pkg-config. See +# https://github.com/aws/aws-sdk-cpp/issues/2673 for details. aws_s3 = dependency('aws-cpp-sdk-s3', required : false) configdata.set('ENABLE_S3', aws_s3.found().to_int()) if aws_s3.found()