1 parent 2650cf0 commit 7ddf606Copy full SHA for 7ddf606
2 files changed
ql-https.asd
@@ -9,7 +9,7 @@
9
:bug-tracker "https://github.com/rudolfochrist/ql-https/issues"
10
:source-control (:git "https://github.com/rudolfochrist/ql-https.git")
11
:version (:read-file-line "version")
12
- :depends-on ((:require "uiop"))
+ :depends-on ((:require "uiop") (:feature :sbcl :sb-md5))
13
:components ((:file "ql-https"))
14
:description "Enable HTTPS in Quicklisp"
15
:long-description
ql-https.lisp
@@ -51,7 +51,6 @@
51
#+sbcl
52
(defun md5 (file)
53
"Returns md5sum of FILE"
54
- (require 'sb-md5)
55
(format nil "~{~2,'0x~}" (coerce (sb-md5:md5sum-file file) 'list)))
56
57
#-sbcl
0 commit comments