diff options
author | Kai Kang <kai.kang@windriver.com> | 2016-11-17 13:37:37 +0800 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2016-12-14 09:20:09 -0500 |
commit | f42fc7929b1aabe934601582c73f4e287febe90d (patch) | |
tree | c9f4e84141bf5b4fa9f44e706bc8039e8ffb11da /meta-networking/recipes-support/curlpp | |
parent | 8f92aa970a34fa5af019c164d9e650de8fe511d3 (diff) | |
download | meta-openembedded-f42fc7929b1aabe934601582c73f4e287febe90d.tar.gz |
curlpp: fix qa issue of do_configure
curlpp is configured with boost by default. And it searches boost
directory on build machine. If boost is installed on build machine, then
causes qa issue:
| ERROR: curlpp-0.7.3-r0 do_configure: This autoconf log indicates
| errors, it looked at host include and/or library paths while
| determining system capabilities.
Pass the boost directory in ${STAGING_DIR_HOST} to configure script to
disable search on build machine to fix the issue.
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-support/curlpp')
-rw-r--r-- | meta-networking/recipes-support/curlpp/curlpp_0.7.3.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/curlpp/curlpp_0.7.3.bb b/meta-networking/recipes-support/curlpp/curlpp_0.7.3.bb index 1848aa6db..c3a242a31 100644 --- a/meta-networking/recipes-support/curlpp/curlpp_0.7.3.bb +++ b/meta-networking/recipes-support/curlpp/curlpp_0.7.3.bb | |||
@@ -16,6 +16,7 @@ SRC_URI[sha256sum] = "e3f9427b27c5bddf898d383d45c0d3d5397e2056ff935d9a5cdaef6a9a | |||
16 | 16 | ||
17 | inherit autotools-brokensep pkgconfig binconfig | 17 | inherit autotools-brokensep pkgconfig binconfig |
18 | 18 | ||
19 | EXTRA_OECONF = "--with-boost=${STAGING_DIR_HOST}${prefix}" | ||
19 | # Upstream is currently working on porting the code to use std::unique_ptr instead of the | 20 | # Upstream is currently working on porting the code to use std::unique_ptr instead of the |
20 | # deprecated auto_ptr. For now, ignore the issue. | 21 | # deprecated auto_ptr. For now, ignore the issue. |
21 | CXXFLAGS += "-Wno-error=deprecated-declarations" | 22 | CXXFLAGS += "-Wno-error=deprecated-declarations" |