From: Petri Savolainen <[email protected]> Enable Linux helpers by default as e.g. OFP uses those. Build and test helper code does not add significant overhead, but catches potential issues early.
Signed-off-by: Petri Savolainen <[email protected]> --- /** Email created from pull request 395 (psavol:master-enable-helper-linux) ** https://github.com/Linaro/odp/pull/395 ** Patch: https://github.com/Linaro/odp/pull/395.patch ** Base sha: 1bb6291e4e9050d476fefb02f11024898847e2b7 ** Merge commit sha: 5455b9a715070ad1d62f590b16ee23fe069ac734 **/ helper/m4/configure.m4 | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/helper/m4/configure.m4 b/helper/m4/configure.m4 index 3a867e8cb..562bfc6ef 100644 --- a/helper/m4/configure.m4 +++ b/helper/m4/configure.m4 @@ -8,15 +8,12 @@ AC_ARG_ENABLE([test-helper], AM_CONDITIONAL([test_helper], [test x$test_helper = xyes ]) ########################################################################## -# Enable/disable helper-ext -# platform specific non portable extensions +# Enable/disable Linux helpers ########################################################################## -helper_linux=no AC_ARG_ENABLE([helper-linux], - [ --enable-helper-linux build helper platform extensions (not portable)], - [if test "x$enableval" = "xyes"; then - helper_linux=yes - fi]) + [AS_HELP_STRING([--disable-helper-linux], [disable Linux helpers])], + [helper_linux=$enableval], + [helper_linux=yes]) AC_CONFIG_FILES([helper/Makefile helper/libodphelper.pc
