Add support for other implementations (flexi-streams dependency).

This commit is contained in:
Daniel Kochmański
2015-07-07 12:56:11 +02:00
parent e7a9f9a812
commit 3c51661bd8
2 changed files with 6 additions and 2 deletions

View File

@ -15,5 +15,8 @@
:maintainer "Pierre R. Mai <pmai@pmsf.de>"
:licence "Public Domain"
:version "2.0.2"
#+sbcl :depends-on #+sbcl ("sb-rotate-byte")
:depends-on (#+sbcl "sb-rotate-byte"
#-(or :cmu :sbcl
(and :lispworks (not :lispworks4)) :ccl :allegro)
:flexi-streams)
:components ((:file "md5")))

View File

@ -711,7 +711,8 @@ determined by the underlying implementation."
#-(or :cmu :sbcl (and :lispworks (not :lispworks4)) :ccl :allegro)
(if (<= char-code-limit 256)
(md5sum-sequence string :start start :end end)
(error "md5:md5sum-string is not supported for your implementation."))))
(md5sum-sequence
(flexi-streams:string-to-octets string)))))
(eval-when (:compile-toplevel :load-toplevel :execute)
(defconstant +buffer-size+ (* 128 1024)