[oe] [meta-oe][PATCH] lcdproc: Fix parallel build

2019-04-06 Thread Khem Raj
This happens with larger parallelism e.g. -j 44 also reported here https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214766 Signed-off-by: Khem Raj --- ...ld-fix-port-internal-make-dependenci.patch | 33 +++ .../recipes-extended/lcdproc/lcdproc_git.bb | 3 +- 2 files changed,

[oe] [meta-oe][PATCH] alsa-oss: Upgrade to 1.1.8

2019-04-06 Thread Khem Raj
OE-core has upgraded alsa-lib to 1.1.8 as well so we need to be in sysnc Signed-off-by: Khem Raj --- .../alsa/alsa-oss/libio.patch | 32 --- .../{alsa-oss_1.1.6.bb => alsa-oss_1.1.8.bb} | 4 +-- 2 files changed, 23 insertions(+), 13 deletions(-) rename

[oe] [meta-oe][PATCH] redis: Fix ocasional parallel build failure

2019-04-06 Thread Khem Raj
Sometimes with high parallel build we see compile errors e.g. clang-8: error: linker command failed with exit code 1 (use -v to see invocation) make[3]: *** [Makefile:52: lua] Error 1 Therefore try to build dependencies before main build Signed-off-by: Khem Raj ---

[oe] Adding support for Android.bp files

2019-04-06 Thread Joel Valenciano
I was thinking it would be nice if we could run Android apps on Linux, without the performance issues that come with virtual machines. A good solution, I think, would be to make the Android frameworks use GNU APIs for things like system services (e.g. make Android system server wrap around

Re: [oe] [meta-networking][PATCH] networkmanager: Fix build with clang

2019-04-06 Thread Andreas Müller
On Sat, Apr 6, 2019 at 9:04 PM Khem Raj wrote: > > On Sat, Apr 6, 2019 at 11:53 AM Andreas Müller > wrote: > > > > On Sat, Apr 6, 2019 at 8:42 PM Khem Raj wrote: > > > > > > Detecting libdl for dlopen when failed returns > > > "none required", which then gets added to linker commandline > > >

[oe] [PATCH][meta-networking] nuttcp: update to 7.3.3

2019-04-06 Thread Oleksandr Kravchuk
License md5sum changed due to modified copyright years. Signed-off-by: Oleksandr Kravchuk --- .../nuttcp/{nuttcp_7.2.1.bb => nuttcp_7.3.3.bb} | 9 +++-- 1 file changed, 3 insertions(+), 6 deletions(-) rename meta-networking/recipes-support/nuttcp/{nuttcp_7.2.1.bb =>

[oe] [PATCH][meta-networking] macchanger: update to 1.7.0

2019-04-06 Thread Oleksandr Kravchuk
Signed-off-by: Oleksandr Kravchuk --- .../{macchanger_1.5.0.bb => macchanger_1.7.0.bb}| 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) rename meta-networking/recipes-support/macchanger/{macchanger_1.5.0.bb => macchanger_1.7.0.bb} (50%) diff --git

Re: [oe] [meta-networking][PATCH] networkmanager: Fix build with clang

2019-04-06 Thread Khem Raj
On Sat, Apr 6, 2019 at 11:53 AM Andreas Müller wrote: > > On Sat, Apr 6, 2019 at 8:42 PM Khem Raj wrote: > > > > Detecting libdl for dlopen when failed returns > > "none required", which then gets added to linker commandline > > and inturn fails to link with errors obviously because "-lnone

Re: [oe] [meta-networking][PATCH] networkmanager: Fix build with clang

2019-04-06 Thread Andreas Müller
On Sat, Apr 6, 2019 at 8:42 PM Khem Raj wrote: > > Detecting libdl for dlopen when failed returns > "none required", which then gets added to linker commandline > and inturn fails to link with errors obviously because "-lnone required" > is no such library. > > This patch is not musl dependent,

[oe] [PATCH] gnome-desktop3: Disable libseccomp for all archs

2019-04-06 Thread Andreas Müller
It does not seem mandatory and can cause unsatisfied dependency [1]. [1] https://errors.yoctoproject.org/Errors/Details/235565/ Signed-off-by: Andreas Müller --- ...ild-Disable-libseccomp-for-all-archs.patch | 40 +++ .../gnome-desktop/gnome-desktop3_3.32.0.bb| 5 ++- 2

[oe] [PATCH][meta-networking] fping: update to 4.2

2019-04-06 Thread Oleksandr Kravchuk
md5sum of COPYING was changed since info about project contributors was added to the file (see @85abf34b0a38ca6). Signed-off-by: Oleksandr Kravchuk --- .../recipes-support/fping/{fping_3.5.bb => fping_4.2.bb}| 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename

[oe] [meta-networking][PATCH] networkmanager: Fix build with clang

2019-04-06 Thread Khem Raj
Detecting libdl for dlopen when failed returns "none required", which then gets added to linker commandline and inturn fails to link with errors obviously because "-lnone required" is no such library. This patch is not musl dependent, earlier patches clubbed it into musl patch however this is