]> gitweb.factorcode.org Git - factor.git/commitdiff
Use our MD5 library instead of OpenSSL so that we can run builder without OpenSSL...
authorunknown <Administrator@.(none)>
Tue, 18 Nov 2008 00:43:59 +0000 (18:43 -0600)
committerunknown <Administrator@.(none)>
Tue, 18 Nov 2008 00:43:59 +0000 (18:43 -0600)
basis/bootstrap/image/download/download.factor

index 71aa2e8adc6d7e56c4b4eea0853ba3d19f97cbeb..f9b7b56779a0d2243c7feae0abd0fd496ae5976c 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: http.client checksums checksums.openssl splitting assocs
+USING: http.client checksums checksums.md5 splitting assocs
 kernel io.files bootstrap.image sequences io urls ;
 IN: bootstrap.image.download
 
@@ -13,7 +13,7 @@ IN: bootstrap.image.download
 : need-new-image? ( image -- ? )
     dup exists?
     [
-        [ openssl-md5 checksum-file hex-string ]
+        [ md5 checksum-file hex-string ]
         [ download-checksums at ]
         bi = not
     ] [ drop t ] if ;