From 83b4a31144fb49b3630a4aeb3876af497db908e5 Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Thu, 31 Jul 2025 21:37:05 -0400 Subject: [PATCH] build(vcpkg): use a minimal libqrencode build `libpng` in vcpkg doesn't have the right patches (libpng@ed68998) to build with universal binary support on macOS, so let's avoid building it (we need to bump our baseline for this too) Thanks for letting me know it was optional, Kode :) Signed-off-by: Seth Flynn --- vcpkg-configuration.json | 2 +- vcpkg.json | 15 ++++++++++++--- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/vcpkg-configuration.json b/vcpkg-configuration.json index 71db4bcca..b1b0996e2 100644 --- a/vcpkg-configuration.json +++ b/vcpkg-configuration.json @@ -1,7 +1,7 @@ { "default-registry": { "kind": "git", - "baseline": "0c4cf19224a049cf82f4521e29e39f7bd680440c", + "baseline": "1fddddc280dfed63956e15ef74f4321bc6a219c9", "repository": "https://github.com/microsoft/vcpkg" }, "registries": [ diff --git a/vcpkg.json b/vcpkg.json index c4ab81011..0399cdf27 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -2,9 +2,18 @@ "dependencies": [ "bzip2", "cmark", - { "name": "ecm", "host": true }, - "libqrencode", - { "name": "pkgconf", "host": true }, + { + "name": "ecm", + "host": true + }, + { + "name": "libqrencode", + "default-features": false + }, + { + "name": "pkgconf", + "host": true + }, "tomlplusplus", "zlib" ]