How is this possible?
Ron Garret <[email protected]>
| Newsgroups | gmane.lisp.openmcl.devel |
|---|---|
| Message-ID | <[email protected]> |
Clozure Common Lisp Version 1.12.1 (v1.12.1-10-gca107b94) DarwinX8664
...
? (require :cl+ssl)
Loading CL+SSL NILTo load "cl+ssl":
Load 1 ASDF system:
cl+ssl
; Loading "cl+ssl"
:CL+SSL
NIL
? (pprint ccl::*shared-libraries*)
(#<SHLIB /usr/lib/libssl.48.dylib #x3020014FFE9D>
#<SHLIB /usr/lib/libcrypto.46.dylib #x3020014FFF6D>
...
At this point, cl+ssl is working, and I can make foreign calls to routines in libcrypto. However, back in the terminal...
ron@RMBA1 ~ % ls /usr/lib/libssl*
zsh: no matches found: /usr/lib/libssl*
ron@RMBA1 ~ % ls /usr/lib/libcrypto*
zsh: no matches found: /usr/lib/libcrypto*
And using spotlight, I can't find libssl.48.dylib or libcrypto.46.dylib anywhere.
And yet, cl+ssl is working. How???
rg