Revert "openssl: Fix bootstrap for macOS 10.15 beta."

This reverts commit 3eda5056c7.
modern-harvey3
Doug Coleman 2019-09-27 17:24:51 -05:00
parent fdf13141bc
commit 1ce3b72760
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.44.dylib" ] }
{ [ os macosx? ] [ "libcrypto.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.46.dylib" ] }
{ [ os macosx? ] [ "libssl.dylib" ] }
{ [ os unix? ] [ "libssl.so" ] }
} cond cdecl add-library >>