[OE-core] [PATCH] boost: updating to 1.55.0

2013-12-04 Thread Lukas Bulwahn
Dear oe-core mailing list, Dear Saul, As one of the main users of the boost recipe with the meta-ros layer, I created a patch to update boost from version 1.54.0 to 1.55.0. The changes in the patch is mostly straight-forward and described in the commit message of the patch. During my inspection,

[OE-core] [PATCH] boost: updating to 1.55.0

2013-12-04 Thread Lukas Bulwahn
When updating to 1.55.0, the backport patches for recent versions of glibc and linking boost-thread to boost-atomic were removed, as they have been added to the current version. Although the arm-intrinsics.patch is reported with Status: Backport, it was not merged to version 1.55.0 yet. The boost

[OE-core] [PATCH] boost: updating to 1.55.0

2013-12-04 Thread Lukas Bulwahn
Dear oe-core mailing list, Dear Saul, As one of the main users of the boost recipe with the meta-ros layer, I created a patch to update boost from version 1.54.0 to 1.55.0. The changes in the patch is mostly straight-forward and described in the commit message of the patch. During my inspection,

[OE-core] [PATCH V2 1/3] lttng-ust: update commit to fix compiling issues

2013-12-04 Thread Chong.Lu
From: Chong Lu Update commit in order to add patches like below: doc/examples: error out when a subdir make fails fix: lttng-gen-tp: add missing spaces around flags Signed-off-by: Chong Lu --- meta/recipes-kernel/lttng/lttng-ust_2.3.0.bb |2 +- 1 file changed, 1 insertion(

[OE-core] [PATCH V2 3/3] lttng-ust: fix python interpret path

2013-12-04 Thread Chong.Lu
From: Chong Lu Change python interpreter path to avoid syntax errors on CentOS 5.10 which has Python 2.4.x. Add dependency for python-native. Signed-off-by: Chong Lu --- .../0001-lttng-ust-fix-python-interpret-path.patch | 26 meta/recipes-kernel/lttng/lttng-ust_2.3.0.bb

[OE-core] [PATCH V2 2/3] lttng-ust: Using toolchain to compile examples

2013-12-04 Thread Chong.Lu
From: Chong Lu 1. Some head files wouldn't be found when compiled with host gcc. So, We should use cross compile toolchain to build examples. 2. Because the .o file couldn't be generated through lttng-gen-tp in cross-compiling environment. Implement the .o file generation manually instea

Re: [OE-core] [PATCH v2] icecc-create-env: Upgrade script

2013-12-04 Thread Iyad Qumei
Just a follow up to the first patch. I did test the change in master, there was no "dependency loop" error when I built core-image-minimal, and I did check the content of icecc-create-env script in sysroot, it was identical to the updated version. I repeated the build to confirm my original obser

[OE-core] [PATCH v2] icecc-create-env: Upgrade script

2013-12-04 Thread Iyad Qumei
The original icecc script does not handle toolchain content properly, resulting in build failures, such as gxx: fatal error: -fuse-linker-plugin, but liblto_plugin.so not found This patch brings in the latest script form the icecream source, and modifies it for use in the OE build environment.

[OE-core] [PATCH] buildhistory.bbclass/image.bbclass: remove obsolete codes

2013-12-04 Thread rongqing.li
From: Roy Li After 1b8e4abd2d9c0 [bitbake.conf/package: Collapse PKGDATA_DIR into a single machine specific directory], oe-pkgdata-util does not use target_suffix parameter, so do not need to loop the vendor Signed-off-by: Roy Li --- meta/classes/buildhistory.bbclass | 10 -- meta/cl

Re: [OE-core] [RFC][PATCH] cmake: respect ${S} and ${B}

2013-12-04 Thread Martin Jansa
On Thu, Dec 05, 2013 at 12:38:57AM +, Ross Burton wrote: > Hi, > > This is a Request For Comments because it changes behaviour of the cmake class > and I'm not entirely knowledgeable in cmake. Neither am I, but patch looks reasonable and I like it, because I was planing to do something simila

[OE-core] [PATCH] bitbake.conf/native.bbclass: Use FC instead of F77 for fortran

2013-12-04 Thread Richard Purdie
gcc tooling appears to be standardising around the FC variable naming. This patch changes the F77 namespace to FC instead and use the default gfortran compiler. If anyone needs the F77 variables or tools, those can still be made on a case by case basis. Signed-off-by: Richard Purdie --- diff --gi

[OE-core] [PATCH] gcc: Allow fortran to build successfully in 4.8

2013-12-04 Thread Richard Purdie
gcc 4.8 fortran presents some challenges: * libquadmath headers need to be in the libexec include dir. It turns out to be easiest just to manually do this. * libgfortran configure needs libquadmath to be compiled. This means a separate recipe is needed (the alternative is gross hacks) * the li

[OE-core] [PATCH] cmake: respect ${S} and ${B}

2013-12-04 Thread Ross Burton
Instead of the class-specific variables OECMAKE_BUILDPATH and OECMAKE_SOURCEPATH, just use ${B} and ${S}. If these two paths are different, delete any existing ${B} before running a build so that previous builds don't taint the current build. Note that OECMAKE_SOURCEPATH and OECMAKE_BUILDPATH are

[OE-core] [RFC][PATCH] cmake: respect ${S} and ${B}

2013-12-04 Thread Ross Burton
Hi, This is a Request For Comments because it changes behaviour of the cmake class and I'm not entirely knowledgeable in cmake. For some reason, cmake.bbclass doesn't use ${S} and ${B}, but instead has it's own variables OECMAKE_SOURCEPATH ("." by default) and OECMAKE_BUILDPATH ("" by default).

Re: [OE-core] [PATCH] icecc-create-env: Upgrade script

2013-12-04 Thread Martin Jansa
On Wed, Dec 04, 2013 at 02:39:41PM -0800, Iyad Qumei wrote: > On Wed, Dec 4, 2013 at 9:43 AM, Martin Jansa wrote: > > > On Wed, Dec 04, 2013 at 09:07:54AM -0800, Iyad Qumei wrote: > > > The original icecc script does not handle toolchain content > > > properly, resulting in build failures, such a

Re: [OE-core] [PATCH] icecc-create-env: Upgrade script

2013-12-04 Thread Iyad Qumei
After more thinking about this, and rebuilding. I do see both issues. Although I did successful build last night, which I still do, quilt-native guilt find, and icecc-create-env in sysroot is the correct version. The difference is how I issued the build core-minimal-image vs quilt-native and icec

Re: [OE-core] [PATCH] icecc-create-env: Upgrade script

2013-12-04 Thread Iyad Qumei
On Wed, Dec 4, 2013 at 9:43 AM, Martin Jansa wrote: > On Wed, Dec 04, 2013 at 09:07:54AM -0800, Iyad Qumei wrote: > > The original icecc script does not handle toolchain content > > properly, resulting in build failures, such as > > > >gxx: fatal error: -fuse-linker-plugin, but liblto_plugin.

[OE-core] [PATCH 3/3] WIP: icecc.bbclass: Exclude few variables causing different signatures for native and allarch recipes

2013-12-04 Thread Martin Jansa
* I'm not entirely sure it's best way to do it, but it's the easiest one * we can clean TARGET_FPU in allarch.bbclass to resolve icc_version * we can provide separate icc_get_tool function for native recipes Signed-off-by: Martin Jansa --- meta/classes/icecc.bbclass | 4 1 file changed, 4 i

[OE-core] [PATCH 2/3] WIP: icecc.bbclass: use bb.utils.which also for 'as'

2013-12-04 Thread Martin Jansa
WIP: haven't properly tested it yet Signed-off-by: Martin Jansa --- meta/classes/icecc.bbclass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass index 5af764d..3c719ef 100644 --- a/meta/classes/icecc.bbclass +++ b/meta/

[OE-core] [PATCH 1/3] icecc.bbclass: Fix whitespace, improve comment

2013-12-04 Thread Martin Jansa
* Add leading space in big documentation block at the top * Drop trailing spaces in code * Update documentation to mention 'bb.utils.which' instead of 'which' Signed-off-by: Martin Jansa --- meta/classes/icecc.bbclass | 29 +++-- 1 file changed, 15 insertions(+), 14 delet

Re: [OE-core] Status for "Sponsored by" git tags

2013-12-04 Thread Henning Heinold
Hi again, okay when the compromis is to name the sponsor in the commit message than I am fine with it too. If noboy objects, I will add it to the wiki for reference and will soon send the first patch. Bye Henning ___ Openembedded-core mailing list Open

Re: [OE-core] [PATCH 1/2] libav: Add v9.10

2013-12-04 Thread Andrei Gherzan
Hello, On Wed, Dec 4, 2013 at 8:57 PM, Paul Eggleton wrote: > On Wednesday 04 December 2013 20:46:50 Andrei Gherzan wrote: > > This version includes libavresample needed for packages like xbmc. > > To use this version add: > > PREFERRED_VERSION_libav = "9.10". > > We really want to avoid having

Re: [OE-core] [PATCH 1/2] libav: Add v9.10

2013-12-04 Thread Martin Jansa
On Wed, Dec 04, 2013 at 06:57:20PM +, Paul Eggleton wrote: > On Wednesday 04 December 2013 20:46:50 Andrei Gherzan wrote: > > This version includes libavresample needed for packages like xbmc. > > To use this version add: > > PREFERRED_VERSION_libav = "9.10". > > We really want to avoid having

Re: [OE-core] [PATCH 1/2] libav: Add v9.10

2013-12-04 Thread Paul Eggleton
On Wednesday 04 December 2013 20:46:50 Andrei Gherzan wrote: > This version includes libavresample needed for packages like xbmc. > To use this version add: > PREFERRED_VERSION_libav = "9.10". We really want to avoid having too many versions of the same recipe hanging around. However, it seems pr

[OE-core] [PATCH 2/2] libav: Update to v0.8.9

2013-12-04 Thread Andrei Gherzan
Signed-off-by: Andrei Gherzan --- .../0001-configure-enable-pic-for-AArch64.patch | 0 meta/recipes-multimedia/libav/{libav_0.8.8.bb => libav_0.8.9.bb} | 8 +++- 2 files changed, 3 insertions(+), 5 deletions(-) rename meta/recipes-multimedia/libav/{libav-0.8.8 => libav-0.

[OE-core] [PATCH 1/2] libav: Add v9.10

2013-12-04 Thread Andrei Gherzan
This version includes libavresample needed for packages like xbmc. To use this version add: PREFERRED_VERSION_libav = "9.10". Signed-off-by: Andrei Gherzan --- meta/recipes-multimedia/libav/libav_9.10.bb | 13 + 1 file changed, 13 insertions(+) create mode 100644 meta/recipes-multim

Re: [OE-core] [PATCH] tzcode-native: Replace fixed version with PV

2013-12-04 Thread Randy MacLeod
On 13-12-02 03:48 PM, Saul Wold wrote: On 11/26/2013 02:20 AM, jackie.hu...@windriver.com wrote: From: Yue Tao Signed-off-by: Yue Tao --- meta/recipes-extended/tzcode/tzcode-native_2013h.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-extended/tzcode/t

Re: [OE-core] [PATCH] icecc-create-env: Upgrade script

2013-12-04 Thread Martin Jansa
On Wed, Dec 04, 2013 at 09:07:54AM -0800, Iyad Qumei wrote: > The original icecc script does not handle toolchain content > properly, resulting in build failures, such as > >gxx: fatal error: -fuse-linker-plugin, but liblto_plugin.so not found > > This patch brings in the latest script form t

[OE-core] [PATCH] icecc-create-env-native: Drop FILESPATH, document PATCHTOOL

2013-12-04 Thread Martin Jansa
* moving icecc-create-env to BPN allows to drop FILESPATH * document PATCHTOOL, because it's not easy to guess why it's needed Signed-off-by: Martin Jansa --- .../icecc-create-env/icecc-create-env-native_0.1.bb | 13 +++-- .../icecc-create-env

[OE-core] [PATCHv2] cpan-base: Add vardepvalue to get_perl_version function

2013-12-04 Thread Martin Jansa
* without this bitbake -S perf shows following error: ERROR: Bitbake's cached basehash does not match the one we just generated (/OE/oe-core/meta/recipes-kernel/perf/perf.bb.do_package)! if you run it twice, once without perl in sysroot and once with perl already built Signed-off-by: Mar

Re: [OE-core] Exploring LLVM/Clang for OE

2013-12-04 Thread Bruce Ashfield
On Wed, Dec 4, 2013 at 11:31 AM, Muhammad Tauqir Ahmad wrote: > Updates: > - I am able to compile most of the packages using clang except the > kernel, gcc and a few others. The ones that don't compile are > mentioned in the README.md in the github repositories listed below. > - The busybox still

[OE-core] [PATCH] icecc-create-env: Upgrade script

2013-12-04 Thread Iyad Qumei
The original icecc script does not handle toolchain content properly, resulting in build failures, such as gxx: fatal error: -fuse-linker-plugin, but liblto_plugin.so not found This patch brings in the latest script form the icecream source, and modifies it for use in the OE build environment.

[OE-core] [PATCH] icecc-create-env: Upgrade script

2013-12-04 Thread Iyad Qumei
Folks, This change was necessary to compile code with external toolchains with support for linker time optimization, such as linaro. The older script does not process the LTO related content correctly. More recent scripts from upstream icecream corrects this error. However, the script require

[OE-core] [PATCH 3/4] libarchive: add e2fsprogs to DEPENDS

2013-12-04 Thread Paul Eggleton
libarchive's configure script looks for ext2fs/ext2_fs.h in order to use some defines for file attributes support if present (but doesn't link to any additional libraries.) There is no configure option to disable this, and if e2fsprogs is rebuilding between do_configure and do_compile you can curre

[OE-core] [PATCH 4/4] libarchive: add SUMMARY and fix HOMEPAGE

2013-12-04 Thread Paul Eggleton
Signed-off-by: Paul Eggleton --- meta/recipes-extended/libarchive/libarchive_2.8.5.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-extended/libarchive/libarchive_2.8.5.bb b/meta/recipes-extended/libarchive/libarchive_2.8.5.bb index d3fb09e..76df23b 100644 --

[OE-core] [PATCH 1/4] gpgme: remove pth handling

2013-12-04 Thread Paul Eggleton
pth support was removed from gpgpme in 1.3.2 according to the upstream changelog, so drop all mention of it from the recipe. Fixes the configure warning: WARNING: QA Issue: gpgme: configure was passed unrecognised options: --without-pth-test --with-pth Signed-off-by: Paul Eggleton --- meta/rec

[OE-core] [PATCH 2/4] openssh: remove unrecognised configure option

2013-12-04 Thread Paul Eggleton
ssh-rand-helper was removed in OpenSSH 6.0 according to the upstream changelog, so the configure option to enable/disable it was removed. Fixes the following warning: WARNING: QA Issue: openssh: configure was passed unrecognised options: --with-rand-helper Signed-off-by: Paul Eggleton --- meta

[OE-core] [PATCH 0/4] Warning fixes and related cleanups

2013-12-04 Thread Paul Eggleton
The following changes since commit 64f0a0bc408d8e32d5e795aeb9fffee0539f5e22: ptest: ensure do_install_ptest_base task runs in fakeroot context (2013-12-03 17:35:34 +) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib paule/fixes2 http://cgit

Re: [OE-core] Exploring LLVM/Clang for OE

2013-12-04 Thread Otavio Salvador
On Wed, Dec 4, 2013 at 2:31 PM, Muhammad Tauqir Ahmad wrote: ... > I am hosting my work on my github account in these two repositories: > > https://github.com/mtahmed/poky-clang > https://github.com/mtahmed/meta-tc-llvm > > The first is upstream poky clone with additional patches to allow it > to

Re: [OE-core] Exploring LLVM/Clang for OE

2013-12-04 Thread Muhammad Tauqir Ahmad
Updates: - I am able to compile most of the packages using clang except the kernel, gcc and a few others. The ones that don't compile are mentioned in the README.md in the github repositories listed below. - The busybox still doesn't seem to be compiling correctly even with the patch (although it d

[OE-core] [PATCH] gmae: remove GMAE toolchain and packagegroups

2013-12-04 Thread Ross Burton
GMAE (GNOME Mobile And Embedded) doesn't really exist anymore and these packages were a subset of it anyway. Remove as they don't give the user anything useful now that you can generate a SDK from an arbitrary image. Signed-off-by: Ross Burton --- meta/recipes-core/meta/meta-toolchain-gmae.bb

Re: [OE-core] Automated testing on real hardware

2013-12-04 Thread Philip Balister
On 12/02/2013 05:11 AM, Fathi Boudra wrote: > Hi, > > On 29 November 2013 18:31, Nicolas Dechesne > wrote: >> Paul, >> >> On Fri, Nov 29, 2013 at 4:58 PM, Paul Eggleton >> wrote: >>> >>> LAVA >>> - >>> >>> A number of people had suggested I look at LAVA [1]. It is split into >>> different >

[OE-core] [PATCH][V2] freetype: upgrade to 2.5.1

2013-12-04 Thread Ross Burton
Signed-off-by: Ross Burton --- .../freetype/{freetype_2.5.0.1.bb => freetype_2.5.1.bb}|4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/freetype/{freetype_2.5.0.1.bb => freetype_2.5.1.bb} (91%) diff --git a/meta/recipes-graphics/freetype/free

[OE-core] [PATCH 5/5] xserver: remove unrecognised options

2013-12-04 Thread Ross Burton
--disable-xorgcfg was removed in 2008. --with-fontdir was renamed to --with-fontrootdir in 2009 and the default value is good. --disable-xf86misc was removed in 2008. --disable-acfb, -ccfb and -mcfb should have been --disable-afb, -cfb, -mfb, and were removed in 2008. Signed-off-by: Ross Burton

[OE-core] [PATCH 1/5] pango: upgrade to 1.36.1

2013-12-04 Thread Ross Burton
Signed-off-by: Ross Burton --- meta/recipes-graphics/pango/{pango_1.32.6.bb => pango_1.36.1.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/pango/{pango_1.32.6.bb => pango_1.36.1.bb} (56%) diff --git a/meta/recipes-graphics/pango/pango_1.32.6.bb b/

[OE-core] [PATCH 2/5] libxft: fix Freetype header inclusion

2013-12-04 Thread Ross Burton
Freetype 2.5.1 changes the location of the header files but as directly including the files isn't recommended they don't see this as a problem. Change libxft to use the recommended macros instead of direct inclusion, to fix the compilation. Signed-off-by: Ross Burton --- .../xorg-lib/libxft/fre

[OE-core] [PATCH 4/5] pixman: upgrade to 0.32.4

2013-12-04 Thread Ross Burton
Drop the generic C implementation of pixman_blt patch, upstream refuses to accept generic implementations as the policy is that the caller provides generic paths, and this patch was only used in conjunction with a matching patch in xserver-xorg which we don't carry anymore. Signed-off-by: Ross Bur

[OE-core] [PATCH 3/5] freetype: upgrade to 2.5.1

2013-12-04 Thread Ross Burton
From: Upgrade Helper Signed-off-by: Ross Burton --- .../freetype/{freetype_2.5.0.1.bb => freetype_2.5.1.bb}|4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/freetype/{freetype_2.5.0.1.bb => freetype_2.5.1.bb} (91%) diff --git a/meta/recipes

[OE-core] [OE-Core][PATCH] rpm: Fixed Q&A Errors in netivesdk-rpm

2013-12-04 Thread David Nyström
ERROR: QA Issue: nativesdk-rpm: Files/directories were installed but not shipped /opt/poky/1.5+snapshot/sysroots/x86_64-pokysdk-linux/usr/lib/rpm/bin/rpmcmp.real /opt/poky/1.5+snapshot/sysroots/x86_64-pokysdk-linux/usr/lib/rpm/bin/rpmrepo.real /opt/poky/1.5+snapshot/sysroots/x86_64-pokysdk

Re: [OE-core] FW: [PATCH] ethtool: use serial-tests to generate targets used by ptest.

2013-12-04 Thread Tudor Florea
-Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Richard Purdie Sent: Wednesday, December 04, 2013 12:51 PM To: Tudor Florea Cc: openembedded-core@lists.openembedded.org Subject: Re: [OE-c

[OE-core] [PATCH] lib/oeqa/selftest: add tests for PR service

2013-12-04 Thread Stefan Stanacar
From: Corneliu Stoicescu Signed-off-by: Corneliu Stoicescu Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/selftest/prservice.py | 113 1 file changed, 113 insertions(+) create mode 100644 meta/lib/oeqa/selftest/prservice.py diff --git a/meta/lib/oeqa/se

[OE-core] [PATCH] lib/oeqa/selftest: buildoptions: small fixes for some tests

2013-12-04 Thread Stefan Stanacar
While harmless, we should overwrite the config not append to it, and use m4 as target, otherwise the WARN check will build an entire image and we are not interested in that. Also add an output check for the WARN_QA test. Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/selftest/buildoptions.py |

[OE-core] [PATCH] classes/recipes: More optimal DISTRO_FEATURES references

2013-12-04 Thread Richard Purdie
Using the contains function results in more optimal sstate checksums resulting in better cache reuse as we as more consistent code. Signed-off-by: Richard Purdie --- diff --git a/meta/classes/libc-package.bbclass b/meta/classes/libc-package.bbclass index 454ee76..0af42a0 100644 --- a/meta/class

[OE-core] eglibc-options: Rewrite so it benefits from bitbake's contains handling

2013-12-04 Thread Richard Purdie
Having eglibc rebuild every time DISTRO_FEATURES changes is suboptimal. This rewrite takes advantage of bitbake's understanding of the contains function so this doesn't happen. The code is marginally uglier but is worth the benefit in fewer libc rebuilds. Signed-off-by: Richard Purdie --- diff --

Re: [OE-core] [PATCH v2] core-image-basic.bb: Allow user extensions

2013-12-04 Thread Paul Eggleton
Hi Gary, On Wednesday 04 December 2013 05:29:28 Gary Thomas wrote: > On 2013-10-30 10:09, Gary Thomas wrote: > > Allow the user to provide additional packages to this image. > > This lets core-image-basic behave like all other core-image* > > recipes (which do support CORE_IMAGE_EXTRA_INSTALL), as

Re: [OE-core] [PATCH v2] core-image-basic.bb: Allow user extensions

2013-12-04 Thread Gary Thomas
On 2013-10-30 10:09, Gary Thomas wrote: Allow the user to provide additional packages to this image. This lets core-image-basic behave like all other core-image* recipes (which do support CORE_IMAGE_EXTRA_INSTALL), as well as match the documentation which suggests this as the mode to extend any c

[OE-core] [PATCH] lib/oeqa/selftest/base, scripts/oe-selftest: fix wrong remove path and do a complete cleanup at the end

2013-12-04 Thread Stefan Stanacar
The script should clean-up all the .inc files that might have been created by tests regardless of the outcome or if the script is interrupted. (currently the last test will leave a conf/selftest.inc around, even if it's not included anywhere) Also fix delete_recipeinc to actually delete what's supp

[OE-core] [PATCH] qt4: fixed dependency on icu

2013-12-04 Thread Enrico Scholz
Commit 46dcec6fd455584d9b5d0d7ff1e5b36fbe5a2d62 added 'icu' to DEPENDS in qt4-x11 only, but enabled icu globally in qt4.inc. This breaks build of qt4-embedded because this recipe does not have such a DEPENDS but uses qt4.inc: | icu.cpp:42:28: fatal error: unicode/utypes.h: No such file or directo

[OE-core] [PATCH 2/2] gstreamer1.0-plugins-bad: add PACKAGECONFIG for librsvg

2013-12-04 Thread Ross Burton
Signed-off-by: Ross Burton --- meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad.inc |4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad.inc

[OE-core] [PATCH 1/2] gstreamer1.0-plugins-bad: respect directfb DISTRO_FEATURE

2013-12-04 Thread Ross Burton
Signed-off-by: Ross Burton --- meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad.inc |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad.inc i

Re: [OE-core] [PATCH] ethtool: use serial-tests to generate targets used by ptest.

2013-12-04 Thread Richard Purdie
On Tue, 2013-12-03 at 23:49 +0100, Tudor Florea wrote: > buildtest-TESTS and runtest-TESTS targets are required by ptest. > In order to have those targets in automake 1.13.4 serial-tests > should be specified since parallel-tests is assumed by default > and serial-tests is optional. > > > Signed-

[OE-core] leafpad: Fix configure flags

2013-12-04 Thread Richard Purdie
Remove the now unused gtktest configure flag and add one for the emacs option so we're deterministic. Resolves the warning: WARNING: QA Issue: leafpad: configure was passed unrecognised options: --disable-gtktest Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-sato/leafpad/leafpad_0

[OE-core] [PATCH] gst-plugins-good: Fix configure option

2013-12-04 Thread Richard Purdie
Resolve the warning: WARNING: QA Issue: gst-plugins-good: configure was passed unrecognised options: --without-check (the option is no longer present) Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb b/meta/recipes-multimedia/gstream

[OE-core] [PATCH] libxkbfile: Remove obsolete configure option

2013-12-04 Thread Richard Purdie
Resolves the QA error: WARNING: QA Issue: libxkbfile: configure was passed unrecognised options: --without-xcb (there is no such configure option any more) Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-graphics/xorg-lib/libxkbfile_1.0.8.bb b/meta/recipes-graphics/xorg-lib/libxkb