Makefile: allow static linking against libcurl
This requires more flags than can be guessed with the old-style CURLDIR and related options, so is only supported when curl-config is present. Signed-off-by: Dave Borowitz <dborowitz@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
61a64fff4f
commit
d5067112db
16
Makefile
16
Makefile
@ -37,6 +37,9 @@ all::
|
|||||||
# Define CURL_CONFIG to the path to a curl-config binary other than the
|
# Define CURL_CONFIG to the path to a curl-config binary other than the
|
||||||
# default 'curl-config'.
|
# default 'curl-config'.
|
||||||
#
|
#
|
||||||
|
# Define CURL_STATIC to statically link libcurl. Only applies if
|
||||||
|
# CURL_CONFIG is used.
|
||||||
|
#
|
||||||
# Define CURLDIR=/foo/bar if your curl header and library files are in
|
# Define CURLDIR=/foo/bar if your curl header and library files are in
|
||||||
# /foo/bar/include and /foo/bar/lib directories. This overrides CURL_CONFIG,
|
# /foo/bar/include and /foo/bar/lib directories. This overrides CURL_CONFIG,
|
||||||
# but is less robust.
|
# but is less robust.
|
||||||
@ -1139,9 +1142,16 @@ else
|
|||||||
else
|
else
|
||||||
CURL_CONFIG ?= curl-config
|
CURL_CONFIG ?= curl-config
|
||||||
BASIC_CFLAGS += $(shell $(CURL_CONFIG) --cflags)
|
BASIC_CFLAGS += $(shell $(CURL_CONFIG) --cflags)
|
||||||
CURL_LIBCURL = $(shell $(CURL_CONFIG) --libs)
|
ifdef CURL_STATIC
|
||||||
ifeq "$(CURL_LIBCURL)" ""
|
CURL_LIBCURL = $(shell $(CURL_CONFIG) --static-libs)
|
||||||
$(error curl not detected; try setting CURLDIR)
|
ifeq "$(CURL_LIBCURL)" ""
|
||||||
|
$(error libcurl not detected or not compiled with static support)
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
CURL_LIBCURL = $(shell $(CURL_CONFIG) --libs)
|
||||||
|
ifeq "$(CURL_LIBCURL)" ""
|
||||||
|
$(error libcurl not detected; try setting CURLDIR)
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user