mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 05:29:32 +00:00
curl: control ipv6 support based on DISTRO feature
By default ipv6 is auto detected for native builds but disabled when cross compiling. This commit adds a PACKAGECONFIG option, unconditionally enabled for native and nativesdk builds and controlled by the ipv6 DISTRO feature for target builds. (From OE-Core rev: f8377e96b353f8cf4a5812fa14c1c0405f769096) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
d76e718fee
commit
a7d0c856db
@@ -40,6 +40,12 @@ CURLGNUTLS = " --with-gnutls=${STAGING_LIBDIR}/../ --without-ssl"
|
|||||||
CURLGNUTLS_class-native = "--without-gnutls --with-ssl"
|
CURLGNUTLS_class-native = "--without-gnutls --with-ssl"
|
||||||
CURLGNUTLS_class-nativesdk = "--without-gnutls --without-ssl"
|
CURLGNUTLS_class-nativesdk = "--without-gnutls --without-ssl"
|
||||||
|
|
||||||
|
PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", "", d)}"
|
||||||
|
PACKAGECONFIG_class-native = "ipv6"
|
||||||
|
PACKAGECONFIG_class-nativesdk = "ipv6"
|
||||||
|
|
||||||
|
PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
|
||||||
|
|
||||||
do_configure_prepend() {
|
do_configure_prepend() {
|
||||||
sed -i s:OPT_GNUTLS/bin:OPT_GNUTLS:g ${S}/configure.ac
|
sed -i s:OPT_GNUTLS/bin:OPT_GNUTLS:g ${S}/configure.ac
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user