openssl: Fix bootstrap for macOS 10.15 beta.

modern-harvey3
Doug Coleman 2019-09-27 16:02:27 -05:00
parent e7c10e22b7
commit 3eda5056c7
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ IN: openssl.libcrypto
<< "libcrypto" {
{ [ os windows? ] [ "libcrypto-37.dll" ] }
{ [ os macosx? ] [ "libcrypto.dylib" ] }
{ [ os macosx? ] [ "libcrypto.44.dylib" ] }
{ [ os unix? ] [ "libcrypto.so" ] }
} cond cdecl add-library >>

View File

@ -9,7 +9,7 @@ IN: openssl.libssl
<< "libssl" {
{ [ os windows? ] [ "libssl-38.dll" ] }
{ [ os macosx? ] [ "libssl.dylib" ] }
{ [ os macosx? ] [ "libssl.46.dylib" ] }
{ [ os unix? ] [ "libssl.so" ] }
} cond cdecl add-library >>