recognize "1.0.1e" for openssl libraries

(cherry picked from commit 791ec4cfb1)
This commit is contained in:
Matthew Flatt 2014-01-26 07:47:55 -07:00 committed by Ryan Culpepper
parent 7a497a5bd5
commit 821da4524b
2 changed files with 7 additions and 2 deletions

View File

@ -19,4 +19,7 @@
(with-handlers ([exn:fail? (lambda (x) (with-handlers ([exn:fail? (lambda (x)
(set! libcrypto-load-fail-reason (exn-message x)) (set! libcrypto-load-fail-reason (exn-message x))
#f)]) #f)])
(ffi-lib libcrypto-so '("" "1.0.0" "1.0" "0.9.8b" "0.9.8" "0.9.7")))) (ffi-lib libcrypto-so '(""
"1.0.1e"
"1.0.0" "1.0"
"0.9.8b" "0.9.8" "0.9.7"))))

View File

@ -23,5 +23,7 @@
(set! libssl-load-fail-reason (exn-message x)) (set! libssl-load-fail-reason (exn-message x))
#f)]) #f)])
(ffi-lib libssl-so (ffi-lib libssl-so
'("" "1.0" "1.0.0" "1.0.0e" "1.0.0d" "1.0.0c" "1.0.0b" "1.0.0a" '(""
"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")))))