mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 08:14:09 -09:00
package/libcurl: unbreak threads + c-ares conditional
Commit0fce7a9623("package/libcurl: fix build w/ threads + c-ares") added a conditional for threads + c-ares, but ended up with a end-parenthesis too many - so the condition is never true. Fix that. Reported-by: Tibault Damman <tibault.damman@basalte.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Reviewed-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com> (cherry picked from commit17399baa7c) Signed-off-by: Thomas Perale <thomas.perale@mind.be>
This commit is contained in:
committed by
Thomas Perale
parent
f6f69ba11b
commit
6fb1518be0
@@ -38,7 +38,7 @@ LIBCURL_IGNORE_CVES += CVE-2024-32928
|
||||
|
||||
# threaded resolver cannot be used with c-ares
|
||||
# https://github.com/curl/curl/commit/d364f1347f05c53eea5d25a15b4ad8a62ecc85b8
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS)x$(BR2_PACKAGE_C_ARES)),yx)
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS)x$(BR2_PACKAGE_C_ARES),yx)
|
||||
LIBCURL_CONF_OPTS += --enable-threaded-resolver
|
||||
else
|
||||
LIBCURL_CONF_OPTS += --disable-threaded-resolver
|
||||
|
||||
Reference in New Issue
Block a user