aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>2020-06-02 08:53:26 +0800
committerGitHub <noreply@github.com>2020-06-01 17:53:26 -0700
commitc967db5c7048ea8a05ca33482ea1797d53568eca (patch)
treec08bd7b7b125aef42020de7860c66c00071a09a2
parentd0751cde80631eba0e061f915e96c44ed17bcece (diff)
downloadvcpkg-c967db5c7048ea8a05ca33482ea1797d53568eca.tar.gz
vcpkg-c967db5c7048ea8a05ca33482ea1797d53568eca.zip
[quickfix] Fix build failure on arm64-windows (#11604)
-rw-r--r--ports/quickfix/CONTROL2
-rw-r--r--ports/quickfix/portfile.cmake11
2 files changed, 6 insertions, 7 deletions
diff --git a/ports/quickfix/CONTROL b/ports/quickfix/CONTROL
index 03989a169..5a3fe30c2 100644
--- a/ports/quickfix/CONTROL
+++ b/ports/quickfix/CONTROL
@@ -1,5 +1,5 @@
Source: quickfix
-Version: 1.15.1-3
+Version: 1.15.1-4
Build-Depends: openssl
Homepage: https://github.com/quickfix/quickfix
Description: QuickFIX is a free and open source implementation of the FIX protocol.
diff --git a/ports/quickfix/portfile.cmake b/ports/quickfix/portfile.cmake
index 6af17a211..d41a13c7c 100644
--- a/ports/quickfix/portfile.cmake
+++ b/ports/quickfix/portfile.cmake
@@ -1,5 +1,3 @@
-include(vcpkg_common_functions)
-
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
vcpkg_from_github(
@@ -8,8 +6,9 @@ vcpkg_from_github(
REF v1.15.1
SHA512 6c3dc53f25932c9b7516ab9228f634511ae0f399719f87f0ec2b38c380c0a7d1c808f0f9a14a70a063e1956118550d1121222283a9139f23cd4f8f038f595f70
HEAD_REF master
- PATCHES 00001-fix-build.patch
- fix_wsl_symlink_error.patch
+ PATCHES
+ 00001-fix-build.patch
+ fix_wsl_symlink_error.patch
)
file(GLOB_RECURSE SRC_FILES RELATIVE ${SOURCE_PATH}
@@ -47,5 +46,5 @@ vcpkg_fixup_cmake_targets(CONFIG_PATH share/cmake/quickfix)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
-configure_file(${SOURCE_PATH}/LICENSE ${CURRENT_PACKAGES_DIR}/share/quickfix/copyright COPYONLY)
-file(COPY ${CMAKE_CURRENT_LIST_DIR}/usage DESTINATION ${CURRENT_PACKAGES_DIR}/share/quickfix)
+configure_file(${SOURCE_PATH}/LICENSE ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY)
+file(COPY ${CMAKE_CURRENT_LIST_DIR}/usage DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})