Skip to content

Commit

Permalink
openssl: add warning for building versions earlier than 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Doekin committed Dec 31, 2024
1 parent c86fa6e commit dbe0b01
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/o/openssl/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ package("openssl")
"If you encounter build issues, ensure you have the correct Perl installed "..
"and it takes priority in your system.")
end

if not package:gitref() and package:version():lt("1.1.1") then
wprint("package(openssl): Building OpenSSL versions earlier than 1.1.1 may fail due to unresolved bugs. If you encounter build issues, please consider using a newer version.")
end
end)
end

Expand Down

0 comments on commit dbe0b01

Please sign in to comment.