Merge pull request #4900 from unisonweb/topic/jit-ffi

This commit is contained in:
Arya Irani 2024-04-25 20:41:41 -04:00 committed by GitHub
commit 0162c99659
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,16 +21,11 @@
hashBytes
hmacBytes)))
(define libcrypto
(with-handlers [[exn:fail? exn->string]]
(ffi-lib "libcrypto" openssl-lib-versions)))
(define-runtime-path libb2-so
'(so "libb2" ("" "1" #f)))
(define-runtime-path libb2-so '(so "libb2" ("1" #f)))
(define libb2
(with-handlers [[exn:fail? exn->string]]
(ffi-lib libb2-so)))
(ffi-lib libb2-so '("1" #f))))
(define _EVP-pointer (_cpointer 'EVP))