Use our MD5 library instead of OpenSSL so that we can run builder without OpenSSL being installed
parent
b8487ffcb0
commit
93c8f5a2f4
|
@ -1,6 +1,6 @@
|
||||||
! Copyright (C) 2008 Slava Pestov.
|
! Copyright (C) 2008 Slava Pestov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! 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 ;
|
kernel io.files bootstrap.image sequences io urls ;
|
||||||
IN: bootstrap.image.download
|
IN: bootstrap.image.download
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ IN: bootstrap.image.download
|
||||||
: need-new-image? ( image -- ? )
|
: need-new-image? ( image -- ? )
|
||||||
dup exists?
|
dup exists?
|
||||||
[
|
[
|
||||||
[ openssl-md5 checksum-file hex-string ]
|
[ md5 checksum-file hex-string ]
|
||||||
[ download-checksums at ]
|
[ download-checksums at ]
|
||||||
bi = not
|
bi = not
|
||||||
] [ drop t ] if ;
|
] [ drop t ] if ;
|
||||||
|
|
Loading…
Reference in New Issue