This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "".
The branch, master has been updated via 91282a4c578716f157aa8a5e0a9bf9bd25b19a17 (commit) from e009051a0166fa25e601190354e0333aa30ad58d (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 91282a4c578716f157aa8a5e0a9bf9bd25b19a17 Author: Matias Elo matias.elo@nokia.com Date: Mon Mar 12 14:07:27 2018 +0200
configure: add check for 'xxd' tool
Add check for 'xxd' tool and list it in DEPENDENCIES file.
Signed-off-by: Matias Elo matias.elo@nokia.com Reviewed-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/DEPENDENCIES b/DEPENDENCIES index b6765fec..2cd8ccb4 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -17,10 +17,12 @@ Prerequisites for building the OpenDataPlane (ODP) API On CentOS/RedHat/Fedora systems: $ sudo yum install automake autoconf libtool pkgconfig
-3. Required libraries +3. Required packages
Libraries currently required to link: openssl, libatomic, libconfig
+ Required tools: xxd + 3.1 OpenSSL native compile
For native compilation, simply load the necessary libraries using the appropriate diff --git a/m4/odp_libconfig.m4 b/m4/odp_libconfig.m4 index 18275f07..632c271e 100644 --- a/m4/odp_libconfig.m4 +++ b/m4/odp_libconfig.m4 @@ -7,6 +7,14 @@ AC_DEFUN([ODP_LIBCONFIG], ########################################################################## PKG_CHECK_MODULES([LIBCONFIG], [libconfig])
+########################################################################## +# Check for xxd availability +########################################################################## +AC_CHECK_PROGS([XXD], [xxd]) +if test -z "$XXD"; + then AC_MSG_ERROR([Could not find 'xxd']) +fi + ########################################################################## # Create a header file odp_libconfig_config.h which containins null # terminated hex dump of odp-linux.conf
-----------------------------------------------------------------------
Summary of changes: DEPENDENCIES | 4 +++- m4/odp_libconfig.m4 | 8 ++++++++ 2 files changed, 11 insertions(+), 1 deletion(-)
hooks/post-receive