From 20b9151f877978c086dcc8cbae7e0d9c9e89a45d Mon Sep 17 00:00:00 2001 From: victor Date: Wed, 3 Jul 2013 15:04:25 +0200 Subject: apr_cv_mutex_recursive=yes added to apr_1.4.6.bb to make rosnodes work MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Working with the meta-ros project we detected that the ROS nodes didn't launch properly the reason was that by default apr_cv_mutex_recursive in apr is set to no and this leads to the APRENOTIMPL return value of apr_thread_mutex_create in thread_mutex.c when APR_THREAD_MUTEX_NESTED is requested via flags. Added CACHED_CONFIGUREVARS += "apr_cv_mutex_recursive=yes" to sources/openembedded-core/meta/recipes-support/apr/apr_1.4.6.bb to fix this issue. It has also been removed the mention of this variable in meta/site/powerpc32-linux. Signed-off-by: VĂ­ctor Mayoral Vilches Signed-off-by: Saul Wold --- meta/recipes-support/apr/apr_1.4.6.bb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meta/recipes-support') diff --git a/meta/recipes-support/apr/apr_1.4.6.bb b/meta/recipes-support/apr/apr_1.4.6.bb index 77dffee12c..fb87d68c9f 100644 --- a/meta/recipes-support/apr/apr_1.4.6.bb +++ b/meta/recipes-support/apr/apr_1.4.6.bb @@ -23,6 +23,9 @@ inherit autotools lib_package binconfig multilib_header OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'" +# Added to fix some issues with cmake. Refer to https://github.com/bmwcarit/meta-ros/issues/68#issuecomment-19896928 +CACHED_CONFIGUREVARS += "apr_cv_mutex_recursive=yes" + do_configure_prepend() { cd ${S} ./buildconf -- cgit 1.2.3-korg