mirror of
https://github.com/curl/curl.git
synced 2026-07-28 05:53:11 +03:00
Delegate c-ares linking magic on libtool and auto-makefiles when using
the uninstalled c-ares libtool archive built from the CVS embedded tree.
This commit is contained in:
parent
2091fe530f
commit
cd5e6743f7
4 changed files with 33 additions and 12 deletions
|
|
@ -45,8 +45,14 @@ bin_PROGRAMS = curl
|
|||
|
||||
include Makefile.inc
|
||||
|
||||
curl_LDADD = ../lib/libcurl.la @CURL_LIBS@
|
||||
curl_DEPENDENCIES = ../lib/libcurl.la
|
||||
if USE_EMBEDDED_ARES
|
||||
EMBEDDEDARES = ../ares/libcares.la
|
||||
else
|
||||
EMBEDDEDARES =
|
||||
endif
|
||||
|
||||
curl_LDADD = ../lib/libcurl.la $(EMBEDDEDARES) @CURL_LIBS@
|
||||
curl_DEPENDENCIES = ../lib/libcurl.la $(EMBEDDEDARES)
|
||||
BUILT_SOURCES = hugehelp.c
|
||||
CLEANFILES = hugehelp.c
|
||||
# Use the C locale to ensure that only ASCII characters appear in the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue