[oe] [meta-oe][PATCH V2 10/10] xmlrpc-c: add recipe 1.31.0

Martin Jansa martin.jansa at gmail.com
Sat Jul 22 09:59:17 UTC 2017


Fails to build with:
http://errors.yoctoproject.org/Errors/Details/148212/

On Fri, Jul 21, 2017 at 9:34 AM, Hongxu Jia <hongxu.jia at windriver.com>
wrote:

> Signed-off-by: Hongxu Jia <hongxu.jia at windriver.com>
> ---
>  ...ix-compile-failure-against-musl-C-library.patch | 52
> ++++++++++++++++++++++
>  .../recipes-devtools/xmlrpc-c/xmlrpc-c_1.31.0.bb   | 23 ++++++++++
>  2 files changed, 75 insertions(+)
>  create mode 100644 meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c/0001-fix-
> compile-failure-against-musl-C-library.patch
>  create mode 100644 meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c_1.31.0.bb
>
> diff --git a/meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c/0001-fix-
> compile-failure-against-musl-C-library.patch b/meta-oe/recipes-devtools/
> xmlrpc-c/xmlrpc-c/0001-fix-compile-failure-against-musl-C-library.patch
> new file mode 100644
> index 0000000..234d696
> --- /dev/null
> +++ b/meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c/0001-fix-
> compile-failure-against-musl-C-library.patch
> @@ -0,0 +1,52 @@
> +From 950b27f8320b841490cafcb3e6e3b818c7174c0d Mon Sep 17 00:00:00 2001
> +From: Hongxu Jia <hongxu.jia at windriver.com>
> +Date: Thu, 20 Jul 2017 22:32:50 -0400
> +Subject: [PATCH] fix compile failure against musl C library
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Hongxu Jia <hongxu.jia at windriver.com>
> +---
> + test/cpp/server_abyss.cpp               |  2 +-
> + tools/xmlrpc_pstream/xmlrpc_pstream.cpp | 10 +++++++---
> + 2 files changed, 8 insertions(+), 4 deletions(-)
> +
> +diff --git a/test/cpp/server_abyss.cpp b/test/cpp/server_abyss.cpp
> +index 2458a8f..82f91da 100644
> +--- a/test/cpp/server_abyss.cpp
> ++++ b/test/cpp/server_abyss.cpp
> +@@ -18,7 +18,7 @@
> + #ifdef WIN32
> +   #include <winsock2.h>
> + #else
> +-  #include <sys/unistd.h>
> ++  #include <unistd.h>
> +   #include <sys/socket.h>
> +   #include <arpa/inet.h>
> +   #include <netinet/in.h>
> +diff --git a/tools/xmlrpc_pstream/xmlrpc_pstream.cpp
> b/tools/xmlrpc_pstream/xmlrpc_pstream.cpp
> +index d39e105..1fd8900 100644
> +--- a/tools/xmlrpc_pstream/xmlrpc_pstream.cpp
> ++++ b/tools/xmlrpc_pstream/xmlrpc_pstream.cpp
> +@@ -15,11 +15,15 @@
> + #include "xmlrpc-c/girerr.hpp"
> + using girerr::throwf;
> +
> +-#include <features.h>  // for __BEGIN_DECLS
> ++#ifdef __cplusplus
> ++extern "C" {
> ++#endif
> +
> +-__BEGIN_DECLS
> + #include "dumpvalue.h"  /* An internal Xmlrpc-c header file ! */
> +-__END_DECLS
> ++
> ++#ifdef __cplusplus
> ++}
> ++#endif
> +
> +
> + #include <xmlrpc-c/base.hpp>
> +--
> +2.8.1
> +
> diff --git a/meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c_1.31.0.bb
> b/meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c_1.31.0.bb
> new file mode 100644
> index 0000000..9050d66
> --- /dev/null
> +++ b/meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c_1.31.0.bb
> @@ -0,0 +1,23 @@
> +DESCRIPTION = "XML-RPC for C/C++ is programming libraries and related
> tools to help you \
> +write an XML-RPC server or client in C or C++."
> +
> +HOMEPAGE = "http://xmlrpc-c.sourceforge.net/"
> +LICENSE = "BSD & MIT"
> +LIC_FILES_CHKSUM = "file://doc/COPYING;md5=aefbf81ba0750f02176b6f86752ea9
> 51"
> +
> +SRC_URI = "git://github.com/ensc/xmlrpc-c.git;branch=master \
> +           file://0001-fix-compile-failure-against-musl-C-library.patch \
> +"
> +SRCREV = "81443a9dc234cc275449dbc17867ad77ae189124"
> +S = "${WORKDIR}/git"
> +
> +DEPENDS = "curl libxml2"
> +RDEPENDS_${PN} = "curl"
> +
> +inherit cmake
> +
> +EXTRA_OECMAKE = "-D_lib:STRING=${baselib}"
> +
> +BBCLASSEXTEND = "native"
> +
> +TARGET_CFLAGS += "-Wno-narrowing"
> --
> 2.8.1
>
>



More information about the Openembedded-devel mailing list