We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Configurations
1 parent 5220256 commit 8519e49Copy full SHA for 8519e49
packages/o/openssl/configure/patch.lua
@@ -1,4 +1,9 @@
1
function _fix_overlong_make_recipe(package)
2
+ -- Skip when OpenSSL version <= 1.1.0 as they don't have the `Configurations` directory
3
+ -- see: https://github.com/xmake-io/xmake-repo/issues/8282
4
+ if package:version():le("1.1.0") then
5
+ return
6
+ end
7
-- In the MSYS environment, the make recipe can be too long to execute.
8
-- This patch is adapted from OpenSSL 3.
9
-- For more details, see: https://github.com/openssl/openssl/issues/12116
0 commit comments