Skip to content

Commit

Permalink
openssl: use .35 version on macos for now, should work on > 10.11.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjbq7 committed Jan 14, 2021
1 parent 06d2b4c commit 527567a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion basis/openssl/libcrypto/libcrypto.factor
Expand Up @@ -7,7 +7,7 @@ IN: openssl.libcrypto

<< "libcrypto" {
{ [ os windows? ] [ "libcrypto-37.dll" ] }
{ [ os macosx? ] [ "libcrypto.44.dylib" ] }
{ [ os macosx? ] [ "libcrypto.35.dylib" ] }
{ [ os unix? ] [ "libcrypto.so" ] }
} cond cdecl add-library >>

Expand Down
2 changes: 1 addition & 1 deletion basis/openssl/libssl/libssl.factor
Expand Up @@ -9,7 +9,7 @@ IN: openssl.libssl

<< "libssl" {
{ [ os windows? ] [ "libssl-38.dll" ] }
{ [ os macosx? ] [ "libssl.44.dylib" ] }
{ [ os macosx? ] [ "libssl.35.dylib" ] }
{ [ os unix? ] [ "libssl.so" ] }
} cond cdecl add-library >>

Expand Down

0 comments on commit 527567a

Please sign in to comment.