diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-01-14 22:36:05 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-01-14 23:36:59 +0100 |
commit | e532033bff523b8175b31d60acb79910a7e507fd (patch) | |
tree | 0abc2772ad3396e4c7da49ea54b6fc215c08e3e8 /package/ola/ola-0003-fix-check-for-python-module-for-cross-compilation.patch | |
parent | 573aa4b95414b17805c51370e96e1a9c5fb3091c (diff) | |
download | buildroot-e532033bff523b8175b31d60acb79910a7e507fd.tar.gz buildroot-e532033bff523b8175b31d60acb79910a7e507fd.zip |
package/ola: fix check for google.protobuf
Fix the google.protobuf check in an upstreamable way.
As suggested by Arnout, use an autoconf ac_cv_have_* variable
so we can pass it on the command line. This is generic behaviour
for a lot of autoconf internals, so it makes sense to do it this
way.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Arnout Vandecappelle <arnout@mind.be>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/ola/ola-0003-fix-check-for-python-module-for-cross-compilation.patch')
-rw-r--r-- | package/ola/ola-0003-fix-check-for-python-module-for-cross-compilation.patch | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/package/ola/ola-0003-fix-check-for-python-module-for-cross-compilation.patch b/package/ola/ola-0003-fix-check-for-python-module-for-cross-compilation.patch new file mode 100644 index 0000000000..436974d1ca --- /dev/null +++ b/package/ola/ola-0003-fix-check-for-python-module-for-cross-compilation.patch @@ -0,0 +1,81 @@ +commit ea985068c2d699ffb5b353de090f7ded713c08a7 +Author: Yann E. MORIN <yann.morin.1998@free.fr> +Date: Tue Jan 14 21:38:27 2014 +0100 + + configure: add option for user to override checks for Python modules + + The check for google.protobuf is inherently flawed for cross-compilation, + as it uses the host Python to check for target modules. + + In this case, it is not possible to check for a Pyhon modules altogether, + and we need to rely on the user to properly tell us whether we do or do + not have google.protobuf. + + This is done by adding am autoconf cache variable: + ac_cv_have_pymod_google_protobuf + + which can be set to: + - yes : force the test to be true + - no : force the test to be false + - (empty) : let the test decide + + This is then used in AX_PYTHON_MODULE to override the test. + + Currently, only the google.protobuf Python module is checked for, but + the same could be done later on of other Python modules that may be + added in the future, of course. + + Fixes configure-errors like: + http://autobuild.buildroot.net/results/e63/e634d5f0cee3967caffaa6e7ada8c0968e3eff63/build-end.log + + Also fixes some under-quotation in the python module check. + + Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> + +--- +Sent upstream, awaiting for response... + +diff --git a/config/ax_python_module.m4 b/config/ax_python_module.m4 +index 96dd1ab..2910e88 100644 +--- a/config/ax_python_module.m4 ++++ b/config/ax_python_module.m4 +@@ -25,20 +25,17 @@ + + AU_ALIAS([AC_PYTHON_MODULE], [AX_PYTHON_MODULE]) + AC_DEFUN([AX_PYTHON_MODULE],[ +- AC_MSG_CHECKING($PYTHON_NAME module: $1) + $PYTHON -c "import $1" 2>/dev/null + if test $? -eq 0; + then +- AC_MSG_RESULT(yes) +- eval AS_TR_CPP(HAVE_PYMOD_$1)=yes ++ eval AS_TR_CPP([HAVE_PYMOD_$1])=yes + else +- AC_MSG_RESULT(no) +- eval AS_TR_CPP(HAVE_PYMOD_$1)=no ++ eval AS_TR_CPP([HAVE_PYMOD_$1])=no + # + if test -n "$2" + then +- AC_MSG_ERROR(failed to find required module $1) +- exit 1 ++ AC_MSG_ERROR([failed to find required module $1]) + fi + fi ++ AC_MSG_RESULT([AS_TR_CPP([HAVE_PYMOD_$1])]) + ]) +diff --git a/configure.ac b/configure.ac +index 5f6f604..5994d06 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -534,7 +534,9 @@ if test "${enable_python_libs}" = "yes"; then + PYTHON="python" + fi + PYTHON_NAME=`basename $PYTHON` +- AX_PYTHON_MODULE("google.protobuf", "fatal") ++ AC_CACHE_CHECK([$PYTHON_NAME module: google.protobuf], ++ [ac_cv_have_pymod_google_protobuf], ++ [AX_PYTHON_MODULE([google.protobuf], [fatal])]) + fi + + # Maybe build the logic sniffer tools |