diff options
-rw-r--r-- | meta/recipes-support/curl/curl_7.81.0.bb | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/meta/recipes-support/curl/curl_7.81.0.bb b/meta/recipes-support/curl/curl_7.81.0.bb index 30bd928751..c22a13cfea 100644 --- a/meta/recipes-support/curl/curl_7.81.0.bb +++ b/meta/recipes-support/curl/curl_7.81.0.bb | |||
@@ -17,9 +17,12 @@ CVE_PRODUCT = "haxx:curl haxx:libcurl curl:curl curl:libcurl libcurl:libcurl dan | |||
17 | 17 | ||
18 | inherit autotools pkgconfig binconfig multilib_header | 18 | inherit autotools pkgconfig binconfig multilib_header |
19 | 19 | ||
20 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)} ssl libidn proxy threaded-resolver verbose zlib" | 20 | # Entropy source for random PACKAGECONFIG option |
21 | PACKAGECONFIG:class-native = "ipv6 proxy ssl threaded-resolver verbose zlib" | 21 | RANDOM = "/dev/urandom" |
22 | PACKAGECONFIG:class-nativesdk = "ipv6 proxy ssl threaded-resolver verbose zlib" | 22 | |
23 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)} libidn openssl proxy random threaded-resolver verbose zlib" | ||
24 | PACKAGECONFIG:class-native = "ipv6 openssl proxy random threaded-resolver verbose zlib" | ||
25 | PACKAGECONFIG:class-nativesdk = "ipv6 openssl proxy random threaded-resolver verbose zlib" | ||
23 | 26 | ||
24 | # 'ares' and 'threaded-resolver' are mutually exclusive | 27 | # 'ares' and 'threaded-resolver' are mutually exclusive |
25 | PACKAGECONFIG[ares] = "--enable-ares,--disable-ares,c-ares,,,threaded-resolver" | 28 | PACKAGECONFIG[ares] = "--enable-ares,--disable-ares,c-ares,,,threaded-resolver" |
@@ -39,13 +42,14 @@ PACKAGECONFIG[libssh2] = "--with-libssh2,--without-libssh2,libssh2" | |||
39 | PACKAGECONFIG[mbedtls] = "--with-mbedtls=${STAGING_DIR_TARGET},--without-mbedtls,mbedtls" | 42 | PACKAGECONFIG[mbedtls] = "--with-mbedtls=${STAGING_DIR_TARGET},--without-mbedtls,mbedtls" |
40 | PACKAGECONFIG[mqtt] = "--enable-mqtt,--disable-mqtt," | 43 | PACKAGECONFIG[mqtt] = "--enable-mqtt,--disable-mqtt," |
41 | PACKAGECONFIG[nghttp2] = "--with-nghttp2,--without-nghttp2,nghttp2" | 44 | PACKAGECONFIG[nghttp2] = "--with-nghttp2,--without-nghttp2,nghttp2" |
45 | PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl" | ||
42 | PACKAGECONFIG[pop3] = "--enable-pop3,--disable-pop3," | 46 | PACKAGECONFIG[pop3] = "--enable-pop3,--disable-pop3," |
43 | PACKAGECONFIG[proxy] = "--enable-proxy,--disable-proxy," | 47 | PACKAGECONFIG[proxy] = "--enable-proxy,--disable-proxy," |
48 | PACKAGECONFIG[random] = "--with-random=${RANDOM},--without-random" | ||
44 | PACKAGECONFIG[rtmpdump] = "--with-librtmp,--without-librtmp,rtmpdump" | 49 | PACKAGECONFIG[rtmpdump] = "--with-librtmp,--without-librtmp,rtmpdump" |
45 | PACKAGECONFIG[rtsp] = "--enable-rtsp,--disable-rtsp," | 50 | PACKAGECONFIG[rtsp] = "--enable-rtsp,--disable-rtsp," |
46 | PACKAGECONFIG[smb] = "--enable-smb,--disable-smb," | 51 | PACKAGECONFIG[smb] = "--enable-smb,--disable-smb," |
47 | PACKAGECONFIG[smtp] = "--enable-smtp,--disable-smtp," | 52 | PACKAGECONFIG[smtp] = "--enable-smtp,--disable-smtp," |
48 | PACKAGECONFIG[ssl] = "--with-ssl --with-random=/dev/urandom,--without-ssl,openssl" | ||
49 | PACKAGECONFIG[nss] = "--with-nss,--without-nss,nss" | 53 | PACKAGECONFIG[nss] = "--with-nss,--without-nss,nss" |
50 | PACKAGECONFIG[telnet] = "--enable-telnet,--disable-telnet," | 54 | PACKAGECONFIG[telnet] = "--enable-telnet,--disable-telnet," |
51 | PACKAGECONFIG[tftp] = "--enable-tftp,--disable-tftp," | 55 | PACKAGECONFIG[tftp] = "--enable-tftp,--disable-tftp," |