Skip to content
Snippets Groups Projects
Commit a4b4b9cd authored by Tim D. Smith's avatar Tim D. Smith Committed by GitHub
Browse files

Catch LibreSSL libtls as well

Update the description to reflect that we may be talking about either crypto library and neither is okay. :)
parent bf188089
No related branches found
No related tags found
No related merge requests found
......@@ -29,13 +29,14 @@ module FormulaCellarChecks
keg = Keg.new(formula.prefix)
system_openssl = keg.mach_o_files.select do |obj|
dlls = obj.dynamically_linked_libraries
dlls.any? { |dll| %r{/usr/lib/lib(crypto|ssl)\..*dylib}.match dll }
dlls.any? { |dll| %r{/usr/lib/lib(crypto|ssl|tls)\..*dylib}.match dll }
end
return if system_openssl.empty?
<<-EOS.undent
object files were linked against system openssl
These object files were linked against the deprecated system OpenSSL.
These object files were linked against the deprecated system OpenSSL or
the system's private LibreSSL.
Adding `depends_on "openssl"` to the formula may help.
#{system_openssl * "\n "}
EOS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment