cloudflare / keyless

Cloudflare's Keyless SSL Server Reference Implementation
Other
276 stars 78 forks source link

makefile error: openssl and libuv url need update #102

Closed GhostZCH closed 8 years ago

GhostZCH commented 8 years ago

Affter make failed, I try update MakeFile as this.

diff --git a/Makefile b/Makefile
index f0dd02e..3d2e09d 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ LIBUV_LOG := $(TMP)libuv.log

 # This is the version of OpenSSL to link against.

-OPENSSL_VERSION := 1.0.2e
+OPENSSL_VERSION := 1.0.2f

 OPENSSL_ROOT := $(TMP)openssl-$(OPENSSL_VERSION)

@@ -84,7 +84,7 @@ $(LIBUV_A): $(call marker,$(TMP)) $(LIBUV_DIR)

 $(LIBUV_DIR): $(call marker,$(TMP))
    @rm -rf $(LIBUV_ROOT)
-       @wget -qO $(TMP)$(LIBUV_SHA).zip http://github.com/joyent/libuv/archive/$(LIBUV_SHA).zip
+       @wget -qO $(TMP)$(LIBUV_SHA).zip http://github.com/libuv/libuv/archive/$(LIBUV_SHA).zip
    @unzip -d $(TMP) $(TMP)$(LIBUV_SHA).zip
    @touch $@

A update of MakeFile may needed.

grittygrease commented 8 years ago

thanks, I've corrected the makefile in https://github.com/cloudflare/keyless/pull/103