We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a9a35a + c323437 commit 3f8f2cdCopy full SHA for 3f8f2cd
deps/curl.mk
@@ -10,6 +10,12 @@ endif
10
11
CURL_LDFLAGS := $(RPATH_ESCAPED_ORIGIN)
12
13
+# On older Linuces (those that use OpenSSL < 1.1) we include `libpthread` explicitly.
14
+# It doesn't hurt to include it explicitly elsewhere, so we do so.
15
+ifeq ($(OS),Linux)
16
+CURL_LDFLAGS += -lpthread
17
+endif
18
+
19
$(SRCCACHE)/curl-$(CURL_VER).tar.bz2: | $(SRCCACHE)
20
$(JLDOWNLOAD) $@ https://curl.haxx.se/download/curl-$(CURL_VER).tar.bz2
21
0 commit comments