Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[qca] making softstore plugin a feature #43182

Merged
merged 1 commit into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion ports/qca/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,18 @@ vcpkg_execute_required_process(
)
message(STATUS "Importing certstore done")

set(PLUGINS gnupg logger softstore wincrypto)
set(PLUGINS gnupg logger wincrypto)
if("botan" IN_LIST FEATURES)
list(APPEND PLUGINS botan)
endif()
if ("ossl" IN_LIST FEATURES)
list(APPEND PLUGINS ossl)
endif()
if (VCPKG_TARGET_IS_OSX AND VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
message(STATUS "Building with an osx-dynamic triplet: 'softstore' disabled.")
else()
list(APPEND PLUGINS softstore)
endif()

# Configure and build
vcpkg_cmake_configure(
Expand Down
2 changes: 1 addition & 1 deletion ports/qca/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "qca",
"version": "2.3.7",
"port-version": 2,
"port-version": 3,
"description": "Qt Cryptographic Architecture (QCA).",
"homepage": "https://userbase.kde.org/QCA",
"dependencies": [
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -7334,7 +7334,7 @@
},
"qca": {
"baseline": "2.3.7",
"port-version": 2
"port-version": 3
},
"qcoro": {
"baseline": "0.11.0",
Expand Down
5 changes: 5 additions & 0 deletions versions/q-/qca.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "ea6eaf031e8b46b5ef65ea43cc0a72115d1962c1",
"version": "2.3.7",
"port-version": 3
},
{
"git-tree": "ed1a64051112c5fb71752955396dbe9a74a97cb7",
"version": "2.3.7",
Expand Down
Loading