Skip to content

Commit

Permalink
[deps] Fix build systems of curl and openssl
Browse files Browse the repository at this point in the history
* Curl was missing a dependency on OpenSSL after JuliaLang#56708
* openssl is missing configuration target for riscv64
  • Loading branch information
giordano committed Jan 5, 2025
1 parent d848e2e commit bd7d5d6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deps/curl.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## CURL ##
include $(SRCDIR)/curl.version

ifeq ($(USE_SYSTEM_OPENSSL), 0)
$(BUILDDIR)/curl-$(CURL_VER)/build-configured: | $(build_prefix)/manifest/openssl
endif

ifeq ($(USE_SYSTEM_LIBSSH2), 0)
$(BUILDDIR)/curl-$(CURL_VER)/build-configured: | $(build_prefix)/manifest/libssh2
endif
Expand Down
2 changes: 2 additions & 0 deletions deps/openssl.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ else ifeq ($(ARCH),ppc64le)
OPENSSL_TARGET := linux-ppc64le
else ifeq ($(ARCH),powerpc64le)
OPENSSL_TARGET := linux-ppc64le
else ifeq ($(ARCH),riscv64)
OPENSSL_TARGET := linux64-riscv64
endif
else
OPENSSL_TARGET := unknown
Expand Down

0 comments on commit bd7d5d6

Please sign in to comment.