1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 14:51:16 +02:00

Link the right issue about the bad AWS pkg-config

It is https://github.com/aws/aws-sdk-cpp/issues/2673
This commit is contained in:
John Ericson 2025-03-28 10:50:46 -04:00
parent 459fb59493
commit fb9c9ee35a

View file

@ -112,7 +112,8 @@ deps_public += nlohmann_json
sqlite = dependency('sqlite3', 'sqlite', version : '>=3.6.19') sqlite = dependency('sqlite3', 'sqlite', version : '>=3.6.19')
deps_private += sqlite 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) aws_s3 = dependency('aws-cpp-sdk-s3', required : false)
configdata.set('ENABLE_S3', aws_s3.found().to_int()) configdata.set('ENABLE_S3', aws_s3.found().to_int())
if aws_s3.found() if aws_s3.found()