summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/curl
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/curl')
-rw-r--r--meta/recipes-support/curl/curl_8.8.0.bb7
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/recipes-support/curl/curl_8.8.0.bb b/meta/recipes-support/curl/curl_8.8.0.bb
index 2b058e4e82..533c2ac199 100644
--- a/meta/recipes-support/curl/curl_8.8.0.bb
+++ b/meta/recipes-support/curl/curl_8.8.0.bb
@@ -25,9 +25,10 @@ inherit autotools pkgconfig binconfig multilib_header ptest
25# Entropy source for random PACKAGECONFIG option 25# Entropy source for random PACKAGECONFIG option
26RANDOM ?= "/dev/urandom" 26RANDOM ?= "/dev/urandom"
27 27
28PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)} aws basic-auth bearer-auth digest-auth negotiate-auth libidn openssl proxy random threaded-resolver verbose zlib" 28COMMON_PACKAGECONFIG = "basic-auth bearer-auth digest-auth negotiate-auth openssl proxy random threaded-resolver verbose zlib"
29PACKAGECONFIG:class-native = "ipv6 openssl proxy random threaded-resolver verbose zlib" 29PACKAGECONFIG ??= "${COMMON_PACKAGECONFIG} ${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)} aws libidn"
30PACKAGECONFIG:class-nativesdk = "ipv6 openssl proxy random threaded-resolver verbose zlib" 30PACKAGECONFIG:class-native = "${COMMON_PACKAGECONFIG} ipv6"
31PACKAGECONFIG:class-nativesdk = "${COMMON_PACKAGECONFIG} ipv6"
31 32
32# 'ares' and 'threaded-resolver' are mutually exclusive 33# 'ares' and 'threaded-resolver' are mutually exclusive
33PACKAGECONFIG[ares] = "--enable-ares,--disable-ares,c-ares,,,threaded-resolver" 34PACKAGECONFIG[ares] = "--enable-ares,--disable-ares,c-ares,,,threaded-resolver"