Skip to content
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
4 changes: 3 additions & 1 deletion ports/libffi/libffiConfig.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ file(READ "${CMAKE_CURRENT_LIST_DIR}/usage" usage)
message(WARNING "find_package(libffi) is deprecated.\n${usage}")
include(CMakeFindDependencyMacro)
find_dependency(unofficial-libffi CONFIG REQUIRED)
add_library(libffi ALIAS unofficial::libffi::libffi)
if(NOT TARGET libffi)
add_library(libffi ALIAS unofficial::libffi::libffi)
endif()
2 changes: 1 addition & 1 deletion ports/libffi/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "libffi",
"version": "3.4.4",
"port-version": 4,
"port-version": 5,
"description": "Portable, high level programming interface to various calling conventions",
"homepage": "https://github.com/libffi/libffi",
"license": "MIT",
Expand Down
1 change: 1 addition & 0 deletions ports/xmlsec/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "xmlsec",
"version": "1.3.1",
"port-version": 1,
"description": "XML Security Library is a C library based on LibXML2. The library supports major XML security standards.",
"homepage": "https://www.aleksey.com/xmlsec/",
"license": "X11 AND MPL-1.1",
Expand Down
8 changes: 6 additions & 2 deletions ports/xmlsec/xmlsec-config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@ file(READ "${CMAKE_CURRENT_LIST_DIR}/usage" usage)
message(WARNING "find_package(xmlsec) is deprecated.\n${usage}")
include(CMakeFindDependencyMacro)
find_dependency(unofficial-xmlsec CONFIG REQUIRED)
add_library(xmlsec1 ALIAS unofficial::xmlsec::xmlsec1)
add_library(xmlsec1-openssl ALIAS unofficial::xmlsec::xmlsec1-openssl)
if(NOT TARGET xmlsec1)
add_library(xmlsec1 ALIAS unofficial::xmlsec::xmlsec1)
endif()
if(NOT TARGET xmlsec1-openssl)
add_library(xmlsec1-openssl ALIAS unofficial::xmlsec::xmlsec1-openssl)
endif()
4 changes: 2 additions & 2 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -4094,7 +4094,7 @@
},
"libffi": {
"baseline": "3.4.4",
"port-version": 4
"port-version": 5
},
"libfido2": {
"baseline": "1.13.0",
Expand Down Expand Up @@ -8942,7 +8942,7 @@
},
"xmlsec": {
"baseline": "1.3.1",
"port-version": 0
"port-version": 1
},
"xnnpack": {
"baseline": "2022-02-17",
Expand Down
5 changes: 5 additions & 0 deletions versions/l-/libffi.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "db85488447cfda7bcc5e08452d8581ac0295b4c9",
"version": "3.4.4",
"port-version": 5
},
{
"git-tree": "d189744d6e4f29ab0a2f88f3c75f01d0c3719618",
"version": "3.4.4",
Expand Down
5 changes: 5 additions & 0 deletions versions/x-/xmlsec.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "9152aec5099de6e629c31adc81bd07fc6f87607e",
"version": "1.3.1",
"port-version": 1
},
{
"git-tree": "3ca82fa3b389ead91f8abe51fb628fc1959cf29b",
"version": "1.3.1",
Expand Down