diff options
author | victor <v.mayoralv@gmail.com> | 2013-07-03 15:04:25 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-07-05 15:34:22 +0100 |
commit | 36afee199fd48fbd9d57c808e19b8c2ca9f482d1 (patch) | |
tree | da9df0926812d72433c3479218199106840075ea /meta/recipes-support/apr/apr_1.4.6.bb | |
parent | 8e10031d9d5c9c4131d37f7e1b7a3e8fbf5496a7 (diff) | |
download | poky-36afee199fd48fbd9d57c808e19b8c2ca9f482d1.tar.gz |
apr_cv_mutex_recursive=yes added to apr_1.4.6.bb to make rosnodes work
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.
(From OE-Core rev: 20b9151f877978c086dcc8cbae7e0d9c9e89a45d)
Signed-off-by: VĂctor Mayoral Vilches <v.mayoralv@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/apr/apr_1.4.6.bb')
-rw-r--r-- | meta/recipes-support/apr/apr_1.4.6.bb | 3 |
1 files changed, 3 insertions, 0 deletions
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 | |||
23 | 23 | ||
24 | OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'" | 24 | OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'" |
25 | 25 | ||
26 | # Added to fix some issues with cmake. Refer to https://github.com/bmwcarit/meta-ros/issues/68#issuecomment-19896928 | ||
27 | CACHED_CONFIGUREVARS += "apr_cv_mutex_recursive=yes" | ||
28 | |||
26 | do_configure_prepend() { | 29 | do_configure_prepend() { |
27 | cd ${S} | 30 | cd ${S} |
28 | ./buildconf | 31 | ./buildconf |