openssl: macOS 10.15 beta needs explicit paths for these libraries.

10.14 has versions that are .2 lower than 10.15.
clean-macosx-x86-64
Doug Coleman 2019-09-27 17:17:22 -05:00
parent 0a155def04
commit bf719c4cca
2 changed files with 5 additions and 6 deletions

View File

@ -4,15 +4,14 @@
! Tested with OpenSSL 0.9.8a_0 on Mac OS X 10.4.9 PowerPC
!
! export LD_LIBRARY_PATH=/opt/local/lib
USING: alien alien.c-types alien.destructors alien.libraries
alien.syntax classes.struct combinators system ;
alien.libraries.finder alien.syntax classes.struct combinators system ;
IN: openssl.libcrypto
<< "libcrypto" {
{ [ os windows? ] [ "libcrypto-37.dll" ] }
{ [ os macosx? ] [ "libcrypto.dylib" ] }
{ [ os macosx? ] [ { "libcrypto.46.dylib" "libcrypto.44.dylib" } find-library-from-list ] }
{ [ os unix? ] [ "libcrypto.so" ] }
} cond cdecl add-library >>

View File

@ -2,14 +2,14 @@
! Portions copyright (C) 2008 Slava Pestov
! See http://factorcode.org/license.txt for BSD license.
USING: alien alien.c-types alien.destructors alien.libraries
alien.parser alien.syntax classes.struct combinators kernel literals
namespaces openssl.libcrypto system ;
alien.libraries.finder alien.parser alien.syntax classes.struct
combinators kernel literals namespaces openssl.libcrypto system ;
IN: openssl.libssl
<< "libssl" {
{ [ os windows? ] [ "libssl-38.dll" ] }
{ [ os macosx? ] [ "libssl.dylib" ] }
{ [ os macosx? ] [ { "libssl.44.dylib" "libssl.42.dylib" } find-library-from-list ] }
{ [ os unix? ] [ "libssl.so" ] }
} cond cdecl add-library >>