From 8efbc6c8bc8527a884c707d3077cbbc8e3d49dfe Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Fri, 20 Feb 2026 16:28:22 +0100 Subject: [PATCH 1/2] Upgrade vcpkg * .github/workflows/windows.yml: --- .github/workflows/windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index d052ffd4..71842273 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -67,7 +67,7 @@ jobs: - name: Install vcpkg uses: lukka/run-vcpkg@v11 with: - vcpkgGitCommitId: c82f74667287d3dc386bce81e44964370c91a289 + vcpkgGitCommitId: 66c0373dc7fca549e5803087b9487edfe3aca0a1 runVcpkgInstall: true - name: create $ACE_ROOT/ace/config.h run: | From 53a784a64adeac47b2fba567893073e4c5e00074 Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Fri, 20 Feb 2026 16:35:11 +0100 Subject: [PATCH 2/2] Add missing -append * .github/workflows/windows.yml: --- .github/workflows/windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 71842273..b5c32953 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -76,7 +76,7 @@ jobs: - name: create $ACE_ROOT/bin/MakeProjectCreator/config/default.features run: | echo "ipv6=1" | out-file -encoding ASCII ${env:ACE_ROOT}/bin/MakeProjectCreator/config/default.features - echo "xerces3=1" | out-file -encoding ASCII ${env:ACE_ROOT}/bin/MakeProjectCreator/config/default.features + echo "xerces3=1" | out-file -append -encoding ASCII ${env:ACE_ROOT}/bin/MakeProjectCreator/config/default.features echo "ssl=1" | out-file -append -encoding ASCII ${env:ACE_ROOT}/bin/MakeProjectCreator/config/default.features echo "openssl11=1" | out-file -append -encoding ASCII ${env:ACE_ROOT}/bin/MakeProjectCreator/config/default.features echo "versioned_namespace=1" | out-file -append -encoding ASCII ${env:ACE_ROOT}/bin/MakeProjectCreator/config/default.features