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 dda80b5e5e143ff05ed0f8b0ce0f502be71eaa8b (commit) from 50c2f41996707fb112feff9f044feddbbe762b78 (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 dda80b5e5e143ff05ed0f8b0ce0f502be71eaa8b Author: Matias Elo matias.elo@nokia.com Date: Fri Oct 18 10:24:05 2019 +0300
configure: disable static test applications without static odp lib
Trying to build static test applications without static ODP library would fail.
Signed-off-by: Matias Elo matias.elo@nokia.com Reviewed-by: Petri Savolainen petri.savolainen@nokia.com
diff --git a/configure.ac b/configure.ac index 76e736c50..81123cbc6 100644 --- a/configure.ac +++ b/configure.ac @@ -294,6 +294,9 @@ AC_ARG_ENABLE([static-applications], [disable static linking of examples and tests] [ with ODP])], [], [enable_static_applications=yes]) +AS_IF([test "x$enable_static" != "xno" -a "x$enable_static_applications" != "xno"], + [enable_static_applications=yes], [enable_static_applications=no]) + AM_CONDITIONAL([STATIC_APPS], [test "x$enable_static_applications" != "xno"]) if test "x$DPDK_SHARED" = "xyes" -a "x$enable_static_applications" != "xno" ; then
-----------------------------------------------------------------------
Summary of changes: configure.ac | 3 +++ 1 file changed, 3 insertions(+)
hooks/post-receive