]> gitweb.factorcode.org Git - factor.git/commitdiff
openssl.libcrypto: use non-versioned dylib on mac.
authorJohn Benediktsson <mrjbq7@gmail.com>
Thu, 14 Jan 2021 17:40:36 +0000 (09:40 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 14 Jan 2021 17:40:58 +0000 (09:40 -0800)
basis/openssl/libcrypto/libcrypto.factor

index e94144a73c8dabe1e1bb355fb0c40e5d3cadcbfc..d9edeba85c438865e6b56398a00390d33dc02677 100644 (file)
@@ -7,7 +7,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 >>