Skip to content

Commit

Permalink
curl: fix RPATH to find nghttp2 and libssh2 (JuliaLang#53894)
Browse files Browse the repository at this point in the history
Fixes JuliaLang#48820

I think this is the proper fix, and there might be a configure option to
curl or nghttp2 to set it, but I haven't been found it. So we'll do it
that way.
  • Loading branch information
fxcoudert authored Mar 29, 2024
1 parent e26d140 commit d10a0fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/curl.mk
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ $(BUILDDIR)/curl-$(CURL_VER)/build-configured: | $(build_prefix)/manifest/nghttp
endif

ifneq ($(USE_BINARYBUILDER_CURL),1)
CURL_LDFLAGS := $(RPATH_ESCAPED_ORIGIN)
CURL_LDFLAGS := $(RPATH_ESCAPED_ORIGIN) -Wl,-rpath,$(build_shlibdir)

# On older Linuces (those that use OpenSSL < 1.1) we include `libpthread` explicitly.
# It doesn't hurt to include it explicitly elsewhere, so we do so.
Expand Down

0 comments on commit d10a0fb

Please sign in to comment.