summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support
Commit message (Collapse)AuthorAgeFilesLines
* apr-util: make gdbm optionalAlexander Kanavin2020-06-171-3/+3
| | | | | | | | | This helps with gpl3-free builds. (From OE-Core rev: 3260ad9e8ff185b4799269bbcdd9f638e976c4b4) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* curl: add debug infoRasmus Villemoes2020-06-171-0/+3
| | | | | | | | | | | | | | | | | | | | | | Currently, curl (and libcurl) is built without debug info, making the curl-dbg package rather useless. Since debug symbols are automatically stripped and put in that package by the build system, making sure that curl is built with -g shouldn't hurt anything, but will help those that try to debug a libcurl-using application and hence explicitly include curl-dbg in their rootfs. Unfortunately, setting --enable-debug then changes the default value of the optimize option from (assume yes) to (assume no), while also changing the default value of the curldebug option [which is a separate thing that actually changes generated code to add some memory tracking] from (assume no) to (assume yes). So explicitly pass the appropriate options that make those two have the same value as they used to have by default. (From OE-Core rev: 278242619eec5f5f143d57e92b109012001f1f91) Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* diffoscope: upgrade 146 -> 147Pierre-Jean Texier2020-06-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This includes the following changes: * New features: - Add output from strings(1) to ELF binaries. It is intended this will expose expose build paths that are hidden somewhere within the objdump(1) output. (Closes: reproducible-builds/diffoscope#148) - Add basic zsh shell tab-completion support. (Closes: reproducible-builds/diffoscope#158) * Bug fixes: - Prevent a traceback when comparing a PDF document that does not contain any metadata, ie. it is missing a PDF "/Info" stanza. (Closes: reproducible-builds/diffoscope#150) - Fix compatibility with jsondiff 1.2.0 which was causing a traceback and log the version of jsondiff we are using to aid debugging in the future. (Closes: reproducible-builds/diffoscope#159 - Fix an issue in GnuPG keybox handling that left filenames in the diff. - Don't mask an existing test name; ie. ensure it is actually run. * Reporting: - Log all calls to subprocess.check_output by using our own wrapper utility. (Closes: reproducible-builds/diffoscope#151) * Code improvements: - Replace references to "WF" with "Wagner-Fischer" for clarity. - Drop a large number of unused imports (list_libarchive, ContainerExtractionError, etc.) - Don't assign exception to a variable that we do not use. - Compare string values with the equality operator, not via "is" identity. - Don't alias an open file to a variable when we don't use it. - Don't alias "filter" builtin. - Refactor many small parts of the HTML generation, dropping explicit u"unicode" strings, tidying the generation of the "Offset X, Y lines modified" messages, moving to PEP 498 f-strings where appropriate, etc. - Inline a number of single-used utility methods. (From OE-Core rev: d6350dd5cdb252216494475b87edf42e0bdfdb19) Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* glib-networking/btrfs-tools/dosfstools/parted/bmap-tools/libsoup-2.4: add ↵Hongxu Jia2020-06-122-2/+2
| | | | | | | | | | | | | | | nativesdk support In order to make wic tool work in sdk which is out of an existed Yocto build, it needs to port wic tool as a nativesdk recipe. First, make these runtime depends recipes to support nativesdk (From OE-Core rev: cb4f7f078e1d3b1afbf93ca4dc5e690f60c59412) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* vim: restore the 'chmod -x' workaround in do_installChen Qi2020-06-121-0/+6
| | | | | | | | | | | | | | | | | | | | | | | These workarounds are removed because a previous patch solve the host path reference for gawk and perl, and it skips the do_package_qa issue by setting the INSANE_SKIP. But it introduces regression for do_rootfs. The dependencies are calculated and will require packages like python, perl, gawk and csh. The error is like below. Error: Problem: conflicting requests - nothing provides /bin/csh needed by vim-tools-8.2-r0.corei7_64 - nothing provides /usr/bin/nawk needed by vim-tools-8.2-r0.corei7_64 - nothing provides /usr/bin/python needed by vim-tools-8.2-r0.corei7_64 So we keep the previous patch which solve the host path reference problem and restore the long-used 'chmod -x' workaround here. (From OE-Core rev: bf3e799e32b4de300887b844b0b7bce3d60ca379) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* vim: _FORTIFY_SOURCE=2 be goneJoe Slater2020-06-091-0/+5
| | | | | | | | | | vim will abort in many places with this setting. Replace it with the benign _FORTIFY_SOURCE=1. (From OE-Core rev: 18129cbaeddb3278efe9963718556e3765f06c1e) Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ca-certificates: correct upstream version checkAlexander Kanavin2020-06-091-0/+1
| | | | | | | (From OE-Core rev: 9bc2943a7819c7e6d1bd4c1c03b265671811784c) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* shared-mime-info: upgrade 1.15 -> 2.0Alexander Kanavin2020-06-091-18/+6
| | | | | | | | | | Convert to meson, replace custom call to update-mime-database with a built-in meson option. (From OE-Core rev: eeb6de06d2e6b3a7edf03c17e830aafc935e6f20) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libksba: 1.3.5 -> 1.4.0Alexander Kanavin2020-06-092-73/+60
| | | | | | | | | | | | Adjust the pkg-config patch: - upstream added their own .pc file, so adding it again is not needed. - ksba.m4 adjustment to use pkg-config remains in place, but has to be rebased. (From OE-Core rev: 6ce510f38cafe86229b225bb6727e538bd35258c) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* debianutils: 4.9.1 -> 4.11Alexander Kanavin2020-06-091-4/+3
| | | | | | | | License-Update: changed license file path on Debian systems (From OE-Core rev: 57f2225a09a9e4a21a6473c45d2ab7c0b5c0dd28) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libcap: upgrade 2.34 -> 2.36Alexander Kanavin2020-06-091-2/+1
| | | | | | | (From OE-Core rev: 87ef009278d8417c2de24fc9c893db89f3b20cc3) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: upgrade 3.6.13 -> 3.6.14Alexander Kanavin2020-06-091-2/+1
| | | | | | | (From OE-Core rev: cd88c81804a4a52b9875f2244c9f35911539be96) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sqlite3: upgrade 3.32.1 -> 3.32.2Andreas Müller2020-06-091-2/+2
| | | | | | | (From OE-Core rev: 0f686fabd33d933330b9c6e9b14fff25ae8e7642) Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* vte: upgrade 0.60.2 -> 0.60.3Andreas Müller2020-06-091-2/+2
| | | | | | | (From OE-Core rev: b1c35e890b9057ef3259195bb5f5d0303347e39e) Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* vte: tiny cleanup / renumber patchAndreas Müller2020-06-092-3/+1
| | | | | | | (From OE-Core rev: 37db61a5194d1695b1d8a85db57a3a5e3b48b843) Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* db: do not install db_verify if 'verify' is not enabledChen Qi2020-06-091-0/+3
| | | | | | | | | | | | | | | On target, when running `db_verify /var/lib/rpm/Packages', we get the following error. db_verify: BDB0571 library build did not include support for database verification This is because db_verify is installed but 'verify' PACKAGECONFIG is not enabled. So fix it by not installing do_verify in such case. (From OE-Core rev: b5ffdb296f211403f987b5d5a724a94ee91dc80c) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libunwind: Fix build on aarch64/muslKhem Raj2020-06-092-0/+29
| | | | | | | | | Backport a patch from upstream (From OE-Core rev: 66a4cc01f86da136b903a03502137ea40a669710) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sqlite: upgrade 3.31.1 -> 3.32.1Wang Mingyu2020-06-044-250/+3
| | | | | | | | | | | | CVE-2020-11655.patch CVE-2020-11656.patch CVE-2020-9327.patch removed since they are included in 3.32.1 (From OE-Core rev: 7ee8501146ceccdbd07104903694a435b75c0606) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libyaml: upgrade 0.2.4 -> 0.2.5Wang Mingyu2020-06-041-2/+2
| | | | | | | (From OE-Core rev: b574c04a26ab49ee0588e37606dd100a939a90a9) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ca-certificates: upgrade 20190110 -> 20200601Wang Mingyu2020-06-041-2/+2
| | | | | | | | | -License-Update: format changed (From OE-Core rev: 0007f38b03bcb0bd561bd9181fbffc7dec47fe9a) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* diffoscope: upgrade 144 -> 146Pierre-Jean Texier2020-06-041-2/+1
| | | | | | | | | See full changelog https://diffoscope.org/news/diffoscope-146-released/ (From OE-Core rev: 942a02154c6b20a5cce583607b6f36bb7657ef0d) Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* debianutils: whitespace fixesKonrad Weihmann2020-06-041-8/+8
| | | | | | | | | Added whitespaces around equation-signs (From OE-Core rev: db9275d565bf1daa01825239909620751a6f0967) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* vte: Pack ${libexecdir}/vte-urlencode-cwd to vte-promptAndreas Müller2020-06-041-1/+4
| | | | | | | | | | | | | | | Have vte-prompt in my images. Since upgrade 0.60.2 all terminals complain with: | bash: /usr/libexec/vte-urlencode-cwd: No such file or directory Grepping sources shows that vte.csh and vte.sh are the only callers of vte-urlencode-cwd. Both are installed by vte-prompt so move vte-urlencode-cwd where it's used. (From OE-Core rev: 1ea62721b1c06a77b18cf210ee437c292f58104b) Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lz4: disable static libraryAlexander Kanavin2020-06-041-1/+1
| | | | | | | | | | | It was found to be built in a non-reproducible way. [YOCTO #13925] (From OE-Core rev: f8f3f03e7ffcefdb6a97b747a26276dec4bfa77c) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libcpre2: update 10.34 -> 10.35Alexander Kanavin2020-06-042-77/+3
| | | | | | | | | | | | | | | Replace pcre-cross.patch with the (default) option to use pre-built tables; the README says it's ok, and recommended in cross-compile situations. The option was in the recipe from the start and neither the commit that adds the recipe, nor the patch to make it work explain why. License-Update: copyright years (From OE-Core rev: df85581e8ac01183b13dd7c3e926ee93f50214f2) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* shared-mime-info: fix upstream version checkAlexander Kanavin2020-06-041-3/+0
| | | | | | | | | | Upstream has tagged a new 2.0 release properly, so no special arrangements are needed to pick that up. (From OE-Core rev: 6bf01986a07084a825db9189e26fc7cb0e588821) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ptest-runner: fix upstream version checkAlexander Kanavin2020-06-041-0/+1
| | | | | | | (From OE-Core rev: fd180d21ec907726b2fcd7709b93cb8e464390d5) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libexif: update to 0.6.22Alexander Kanavin2020-06-045-236/+19
| | | | | | | (From OE-Core rev: 76e8c645cb2568c2dfa014af0eeac36d8f8b60ff) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rng-tools: upgrade 6.9 -> 6.10Alexander Kanavin2020-06-043-4/+100
| | | | | | | (From OE-Core rev: 368405e33a3db97a85cfd4cb06cb5a105b924d3e) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libunwind: upgrade 1.3.1 -> 1.4.0Alexander Kanavin2020-06-042-12/+19
| | | | | | | (From OE-Core rev: 494b3c8bf73b8320fc68203d2dff5d5d3f93464e) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libical: upgrade 3.0.7 -> 3.0.8Alexander Kanavin2020-06-041-2/+2
| | | | | | | (From OE-Core rev: ac561e63479716574ee980b28644415486b13fda) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libcap: upgrade 2.33 -> 2.34Alexander Kanavin2020-06-042-28/+3
| | | | | | | (From OE-Core rev: c6bf01bb5e09de205f324211090b52d81323b4ab) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libyaml: upgrade 0.2.2 -> 0.2.4zhengruoqin2020-05-301-3/+3
| | | | | | | | | | -License-Update: file name changed from LICENSE to License. Copyright year updated to 2020. (From OE-Core rev: 93cd242d3d75492cd67adb59f297505851919eae) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* liburcu: upgrade 0.12.0 -> 0.12.1Wang Mingyu2020-05-301-2/+2
| | | | | | | (From OE-Core rev: 454153b380ae9e08fba02d2e2a33b72ea6f335cf) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* re2c: fix CVE-2020-11958Lee Chee Yang2020-05-302-1/+44
| | | | | | | (From OE-Core rev: 17daffa1bc6d5af2d77dafd2b146d78802e4f2d2) Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* multilib/recipes: Use new RecipePostKeyExpansion eventRichard Purdie2020-05-271-3/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are issues with multilib due to the ordering of events where some functions see the remapped multilib dependencies and some do not. A significant problem is that the multilib class needs to make some changes before key expansion and some afterwards but by using existing event handlers, some code sees things in a partially translated state, leading to bugs. This patch changes things to use a new event handler from bitbake which makes the ordering of the changes explcit. The challenge in doing this is that it breaks some existing anonymous python and dyanmic assignments. In some cases these used to be translated and no longer are, meaning MLPREFIX has to be added. In some cases these are now translated and the MLPREFIX can be removed. This change does now make it very clear when MLPREFIX is required and when it is not, its just the migration path which is harder. The patch changes the small number of cases where fixes are needed. In particular, where a variable like RDEPENDS is conditionally extended (e.g. with an override), MLPREFIX is now required. This patch also reverts: base: Revert 'base.bbclass: considering multilib when setting LICENSE_EXCLUSION' This reverts 6597130256a1609c3e05ec5891aceaf549c37985 as the changes to multilib datastore handling mean its no longer necessary. (From OE-Core rev: b3fda056a674889cd9697e779de023d4f993d3ce) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* at-spi2-atk: dont inherit features_checkMing Liu2020-05-251-1/+1
| | | | | | | | | | | | | In commit be18dabd: [ at-spi2: Make X11 support truly optional ] REQUIRED_DISTRO_FEATURES was dropped, so it does not have to inherit features_check.bbclass. (From OE-Core rev: 9106d0381d819dfdb73431b9d209ec09a995914e) Signed-off-by: Ming Liu <ming.liu@toradex.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Revert "webkitgtk, pinentry: require gobject-introspection-data in ↵Kai Kang2020-05-241-3/+2
| | | | | | | | | | | | | | | | | DISTRO_FEATURES when libsecret PACKAGECONFIG is enabled" This reverts commit 91264e5e0ab40b796e214edd84c72bc88b363778. It adds meson options 'instrospection' to disable gobject introspection files build. So no need to check distro feature 'gobject-introspection-data' any longer. Keep the spaces adjustment and comment removal. (From OE-Core rev: 424b65d57b16e3f0ad29a5115f048aaba4d95473) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* iso-codes: upgrade 4.4 -> 4.5.0Wang Mingyu2020-05-241-1/+1
| | | | | | | (From OE-Core rev: 2d30384dff4245bcc797d83f653bf8401bd831cb) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* boost: upgrade 1.72.0 -> 1.73.0Wang Mingyu2020-05-245-61/+12
| | | | | | | | | | | refresh 0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch remove 0001-revert-cease-dependence-on-range.patch since it is included in 1.73.0 (From OE-Core rev: 1728ecf71f96570913202a54fd0012ac8b01b8ae) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* diffoscope: upgrade 143 -> 144Joshua Watt2020-05-241-2/+2
| | | | | | | (From OE-Core rev: 75e89667c973c18a9794167cb5c357f6464cc63a) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* re2c: Upgrade to 1.3Khem Raj2020-05-191-5/+4
| | | | | | | | | | | | License-update: License moved to its own file in topdir instead of checksumming portions of README, the license still remains PD Extend to build nativesdk as well, which is needed in SDKs (From OE-Core rev: 420ff58b40155370ed8dee586916ee3ac469d288) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libsoup-2.4: upgrade 2.68.4 -> 2.70.0Anuj Mittal2020-05-191-2/+2
| | | | | | | (From OE-Core rev: bad27f1d663efd2ebf2064c081804af4fc876ac1) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bmap-tools: update development snapshot revisionDiego2020-05-181-1/+1
| | | | | | | | | | Update from a previous development snapshot to the latest development snapshot that includes, among other improvements, support for zstd compression format. (From OE-Core rev: 8a5d917f6a5bfae4fe86e0e4e0c0564476028965) Signed-off-by: Diego Rondini <diego.rondini@kynetics.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* webkitgtk, pinentry: require gobject-introspection-data in DISTRO_FEATURES ↵Martin Jansa2020-05-181-3/+3
| | | | | | | | | | | | | | when libsecret PACKAGECONFIG is enabled * gobject-introspection is mandatory since libsecret upgrade to 0.20.3 * enable libsecret in webkitgtk only when gobject-introspection-data is in DISTRO_FEATURES * drop comment about libsecret being in meta-gnome from pinentry (From OE-Core rev: cab86a3196ef4fcd2714591597f2503aa8138df0) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* nettle: Remove workaround for gcc < 5Adrian Bunk2020-05-141-1/+0
| | | | | | | (From OE-Core rev: 09fa9dabe17f69db71f3773f8808af745fb8ed4a) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libtasn1: Remove workaround for host gcc < 5Adrian Bunk2020-05-141-2/+0
| | | | | | | (From OE-Core rev: 2c037f830856018b212d532198ae17932b3521d1) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* vte: Remove workaround for gcc 4.8Adrian Bunk2020-05-142-28/+1
| | | | | | | (From OE-Core rev: 84e9c9ec86252fba7d0b472ec6f84793db51e62f) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* nettle: upgrade 3.5.1 -> 3.6Wang Mingyu2020-05-145-18/+33
| | | | | | | | | | | refresh the following patches: Add-target-to-only-build-tests-not-run-them.patch dlopen-test.patch (From OE-Core rev: cf4c4c65df5349b60895525418954281b3140173) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* at-spi2-atk: Remove -fcommonAdrian Bunk2020-05-141-2/+0
| | | | | | | | | This was fixed in upstream version 2.34.0. (From OE-Core rev: 9562c93799a37cd18aceb6f24378ba02a69865f0) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>