From 5ab12b36cf2106865897b4e7da9b6b28486840f4 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Fri, 1 Mar 2013 15:19:30 -0700 Subject: [PATCH] openssl: remove special handling of OpenBSD This special handling is now built into `ffi-lib'. --- collects/openssl/libcrypto.rkt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/collects/openssl/libcrypto.rkt b/collects/openssl/libcrypto.rkt index 64d12bc0d2..616d0cc334 100644 --- a/collects/openssl/libcrypto.rkt +++ b/collects/openssl/libcrypto.rkt @@ -19,9 +19,4 @@ (with-handlers ([exn:fail? (lambda (x) (set! libcrypto-load-fail-reason (exn-message x)) #f)]) - (ffi-lib libcrypto-so '("" "1.0.0" "1.0" "0.9.8b" "0.9.8" "0.9.7") - ;; On OpenBSD, libssl is linked in a way that requires libcrypto - ;; to be opened as global: - #:global? (member (path->bytes (system-library-subpath #f)) - '(#"i386-openbsd" - #"x86_64-openbsd"))))) + (ffi-lib libcrypto-so '("" "1.0.0" "1.0" "0.9.8b" "0.9.8" "0.9.7"))))