diff options
author | baali <shantanu@senic.com> | 2017-09-26 00:50:34 +0530 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-09-26 11:05:01 +0100 |
commit | 471951c7ed2904f39dcc3581d93de279de9fbd6a (patch) | |
tree | 18a85caacf4c392e877802693f9275090613b1e1 /meta/recipes-support | |
parent | 6550d66de338ed34de536e8c79ef66135cc88317 (diff) | |
download | poky-471951c7ed2904f39dcc3581d93de279de9fbd6a.tar.gz |
curl: Added option to enable http2 protocol.
With default --without-nghttp2 flag set there was no way to get
http2 protocol support using nghttp2 library. Instead moved it to
PACKAGECONFIG options
(From OE-Core rev: bcc8560300c8b1218b1f3709f5a7732e17fbfa46)
Signed-off-by: baali <shantanu@senic.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/curl/curl_7.54.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/curl/curl_7.54.1.bb b/meta/recipes-support/curl/curl_7.54.1.bb index 54f3b667c8..04aeee72d1 100644 --- a/meta/recipes-support/curl/curl_7.54.1.bb +++ b/meta/recipes-support/curl/curl_7.54.1.bb | |||
@@ -48,13 +48,13 @@ PACKAGECONFIG[tftp] = "--enable-tftp,--disable-tftp," | |||
48 | PACKAGECONFIG[threaded-resolver] = "--enable-threaded-resolver,--disable-threaded-resolver" | 48 | PACKAGECONFIG[threaded-resolver] = "--enable-threaded-resolver,--disable-threaded-resolver" |
49 | PACKAGECONFIG[zlib] = "--with-zlib=${STAGING_LIBDIR}/../,--without-zlib,zlib" | 49 | PACKAGECONFIG[zlib] = "--with-zlib=${STAGING_LIBDIR}/../,--without-zlib,zlib" |
50 | PACKAGECONFIG[krb5] = "--with-gssapi,--without-gssapi,krb5" | 50 | PACKAGECONFIG[krb5] = "--with-gssapi,--without-gssapi,krb5" |
51 | PACKAGECONFIG[nghttp2] = "--with-nghttp2,--without-nghttp2,nghttp2" | ||
51 | 52 | ||
52 | EXTRA_OECONF = " \ | 53 | EXTRA_OECONF = " \ |
53 | --enable-crypto-auth \ | 54 | --enable-crypto-auth \ |
54 | --with-ca-bundle=${sysconfdir}/ssl/certs/ca-certificates.crt \ | 55 | --with-ca-bundle=${sysconfdir}/ssl/certs/ca-certificates.crt \ |
55 | --without-libmetalink \ | 56 | --without-libmetalink \ |
56 | --without-libpsl \ | 57 | --without-libpsl \ |
57 | --without-nghttp2 \ | ||
58 | " | 58 | " |
59 | 59 | ||
60 | do_install_append() { | 60 | do_install_append() { |