Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Makefile.mk: always set CURL_STATICLIB for lib (Windows) #11924

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/Makefile.mk
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,9 @@ distclean vclean: clean
ifdef LOCAL

CPPFLAGS += -DBUILDING_LIBCURL
ifdef WIN32
CPPFLAGS += -DCURL_STATICLIB
endif

### Sources and targets

Expand All @@ -388,7 +391,9 @@ ifdef WIN32
CURL_DLL_SUFFIX ?=
libcurl_dll_LIBRARY := libcurl$(CURL_DLL_SUFFIX).dll
libcurl_dll_a_LIBRARY := libcurl.dll.a
ifeq ($(findstring -trackmem,$(CFG)),)
CURL_LDFLAGS_LIB += $(PROOT)/libcurl.def
endif
ifdef MAP
libcurl_map_LIBRARY := libcurl$(CURL_DLL_SUFFIX).map
CURL_LDFLAGS_LIB += -Wl,-Map,$(libcurl_map_LIBRARY)
Expand Down