From 01edfbbfcfbe13b8bf74df00681d6187d0f3d9af Mon Sep 17 00:00:00 2001 From: Alexander McLin Date: Mon, 4 Mar 2019 17:27:53 -0500 Subject: [PATCH] *BSD: add "111" to libcrypto.rkt Allows `libcrypto.so.111` to be discovered by racket on FreeBSD variants such as TrueOS. --- racket/collects/openssl/libcrypto.rkt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/racket/collects/openssl/libcrypto.rkt b/racket/collects/openssl/libcrypto.rkt index 091d26f2a8..cfa2b946f9 100644 --- a/racket/collects/openssl/libcrypto.rkt +++ b/racket/collects/openssl/libcrypto.rkt @@ -46,7 +46,10 @@ ;; Other specific known versions "1.0.1k" "1.0.1j" "1.0.1g" "1.0.1e" "1.0" "1.0.0" "1.0.0e" "1.0.0d" "1.0.0c" "1.0.0b" "1.0.0a" - "0.9.8e" "0.9.8b" "0.9.8" "0.9.7")) + "0.9.8e" "0.9.8b" "0.9.8" "0.9.7" + + ;; Known versions for *BSD variants + "111")) (define libcrypto-load-fail-reason #f)