diff options
author | André Draszik <git@andred.net> | 2019-11-07 11:44:02 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-11-07 17:43:44 -0800 |
commit | 0c6c10873a449c9b9c54c157dc7fb00ea280c7a9 (patch) | |
tree | e867ba53af1414ab8939f0e9282266a8cdda158e | |
parent | 98d1225cb12d2c73007800a5d9a3f2586780b27f (diff) | |
download | meta-openembedded-0c6c10873a449c9b9c54c157dc7fb00ea280c7a9.tar.gz |
nghttp2: allow to build a -native package
This will e.g. enable us to use it from nodejs-native.
Signed-off-by: André Draszik <git@andred.net>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-networking/recipes-support/nghttp2/nghttp2_1.39.2.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/nghttp2/nghttp2_1.39.2.bb b/meta-networking/recipes-support/nghttp2/nghttp2_1.39.2.bb index 7a475050f4..c27afdb551 100644 --- a/meta-networking/recipes-support/nghttp2/nghttp2_1.39.2.bb +++ b/meta-networking/recipes-support/nghttp2/nghttp2_1.39.2.bb | |||
@@ -28,6 +28,7 @@ do_install_append() { | |||
28 | PACKAGES =+ "lib${PN} ${PN}-client ${PN}-proxy ${PN}-server" | 28 | PACKAGES =+ "lib${PN} ${PN}-client ${PN}-proxy ${PN}-server" |
29 | 29 | ||
30 | RDEPENDS_${PN} = "${PN}-client (>= ${PV}) ${PN}-proxy (>= ${PV}) ${PN}-server (>= ${PV})" | 30 | RDEPENDS_${PN} = "${PN}-client (>= ${PV}) ${PN}-proxy (>= ${PV}) ${PN}-server (>= ${PV})" |
31 | RDEPENDS_${PN}_class-native = "" | ||
31 | RDEPENDS_${PN}-proxy = "openssl python3-core python3-io python3-shell" | 32 | RDEPENDS_${PN}-proxy = "openssl python3-core python3-io python3-shell" |
32 | 33 | ||
33 | ALLOW_EMPTY_${PN} = "1" | 34 | ALLOW_EMPTY_${PN} = "1" |
@@ -36,3 +37,5 @@ FILES_lib${PN} = "${libdir}/*${SOLIBS}" | |||
36 | FILES_${PN}-client = "${bindir}/h2load ${bindir}/nghttp" | 37 | FILES_${PN}-client = "${bindir}/h2load ${bindir}/nghttp" |
37 | FILES_${PN}-proxy = "${bindir}/nghttpx ${datadir}/${BPN}/fetch-ocsp-response" | 38 | FILES_${PN}-proxy = "${bindir}/nghttpx ${datadir}/${BPN}/fetch-ocsp-response" |
38 | FILES_${PN}-server = "${bindir}/nghttpd" | 39 | FILES_${PN}-server = "${bindir}/nghttpd" |
40 | |||
41 | BBCLASSEXTEND = "native" | ||