sharplispers / ironclad

A cryptographic toolkit written in Common Lisp
BSD 3-Clause "New" or "Revised" License
166 stars 28 forks source link

Support gray streams on ABCL. #2

Closed Ferada closed 7 years ago

Ferada commented 7 years ago

As said in https://github.com/glv2/ironclad/pull/4#issuecomment-328262983 already, gray streams on ABCL are working fine, with all tests (still) running through.

glv2 commented 7 years ago

I tried this PR with abcl 1.5.0, and it didn't compile as is because the gray-streams package was not found.

Could you add the following code at the beginning of octet-stream.lisp in your patch?

#+abcl
(eval-when (:compile-toplevel :load-toplevel :execute)
  (require :gray-streams))
Ferada commented 7 years ago

I misunderstood at first, but yes, seems like some dependency pulls this in my default configuration automatically, I'll have to remember to try things on --noinit before doing a PR.