Skip to content

Commit 7ddf606

Browse files
committed
depend on sb-md5 properly with asdf
1 parent 2650cf0 commit 7ddf606

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

ql-https.asd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
:bug-tracker "https://github.com/rudolfochrist/ql-https/issues"
1010
:source-control (:git "https://github.com/rudolfochrist/ql-https.git")
1111
:version (:read-file-line "version")
12-
:depends-on ((:require "uiop"))
12+
:depends-on ((:require "uiop") (:feature :sbcl :sb-md5))
1313
:components ((:file "ql-https"))
1414
:description "Enable HTTPS in Quicklisp"
1515
:long-description

ql-https.lisp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
#+sbcl
5252
(defun md5 (file)
5353
"Returns md5sum of FILE"
54-
(require 'sb-md5)
5554
(format nil "~{~2,'0x~}" (coerce (sb-md5:md5sum-file file) 'list)))
5655

5756
#-sbcl

0 commit comments

Comments
 (0)