aboutsummaryrefslogtreecommitdiff
path: root/ports/xmlsec
diff options
context:
space:
mode:
authorJackBoosY <yuzaiyang@beyondsoft.com>2020-01-13 23:55:59 -0800
committerJackBoosY <yuzaiyang@beyondsoft.com>2020-01-13 23:55:59 -0800
commit2514481b42ebdeec28649582fc666955cf206c84 (patch)
tree60c9809a5c3c8adbad240a40b1088a6f8e42c019 /ports/xmlsec
parentb751326c91c9a307aaf5e340b61ab9f2d1ad45a4 (diff)
parent28eee51adb36f2165be846e77ef7b3ee5b3f8789 (diff)
downloadvcpkg-2514481b42ebdeec28649582fc666955cf206c84.tar.gz
vcpkg-2514481b42ebdeec28649582fc666955cf206c84.zip
Merge branch 'master' of https://github.com/Microsoft/vcpkg into dev/jack/upgrade_libi
Diffstat (limited to 'ports/xmlsec')
-rw-r--r--ports/xmlsec/CMakeLists.txt2
-rw-r--r--ports/xmlsec/CONTROL2
2 files changed, 3 insertions, 1 deletions
diff --git a/ports/xmlsec/CMakeLists.txt b/ports/xmlsec/CMakeLists.txt
index 75b10f887..43664633a 100644
--- a/ports/xmlsec/CMakeLists.txt
+++ b/ports/xmlsec/CMakeLists.txt
@@ -146,7 +146,9 @@ if(INSTALL_HEADERS_TOOLS)
if(BUILD_SHARED_LIBS)
target_compile_definitions(xmlsec PRIVATE -DXMLSEC_CRYPTO_DYNAMIC_LOADING)
else()
+ find_package(Threads REQUIRED)
target_compile_definitions(xmlsec PRIVATE -DLIBXML_STATIC -DLIBXSLT_STATIC -DXMLSEC_STATIC)
+ target_link_libraries(xmlsec PUBLIC Threads::Threads)
endif()
install(TARGETS xmlsec DESTINATION tools/xmlsec)
endif()
diff --git a/ports/xmlsec/CONTROL b/ports/xmlsec/CONTROL
index 6e0dbe9b3..a4512a967 100644
--- a/ports/xmlsec/CONTROL
+++ b/ports/xmlsec/CONTROL
@@ -1,5 +1,5 @@
Source: xmlsec
-Version: 1.2.29
+Version: 1.2.29-1
Homepage: https://www.aleksey.com/xmlsec/
Description: XML Security Library is a C library based on LibXML2. The library supports major XML security standards.
Build-Depends: libxml2, openssl