X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=m4%2Fpandora_with_python.m4;h=5b28c8ed0e233e28652bcdc0cb3d150a9ea9ddf2;hb=1170b1b371ce7bdb50e8e7ae887687f5a45f81b9;hp=348e7edd82b424d1e57c1755ccbcee4700091159;hpb=34418e51585216006d5b241fc9104dc4b88d1be0;p=m6w6%2Flibmemcached diff --git a/m4/pandora_with_python.m4 b/m4/pandora_with_python.m4 index 348e7edd..5b28c8ed 100644 --- a/m4/pandora_with_python.m4 +++ b/m4/pandora_with_python.m4 @@ -15,8 +15,12 @@ AC_DEFUN([PANDORA_WITH_PYTHON], [ AC_ARG_WITH([python], [AS_HELP_STRING([--with-python], [Build Python Bindings @<:@default=yes@:>@])], - [with_python=$withval], - [with_python=yes]) + [with_python=$withval + python_requested=$withval + ], + [with_python=yes + python_requested=no + ]) AS_IF([test "x$with_python" != "xno"],[ AS_IF([test "x$with_python" != "xyes"],[PYTHON=$with_python]) @@ -24,5 +28,10 @@ AC_DEFUN([PANDORA_WITH_PYTHON], [ AC_PYTHON_DEVEL() AS_IF([test "x$pythonexists" = "xno"],[with_python="no"]) ]) + AS_IF([test "x$with_python" = "xno" -a "$python_requested" = "yes"],[ + AC_MSG_ERROR([Python support was explicity requested, but Python support + was not found. Please correct your build environment and try + again]) + ]) AM_CONDITIONAL(BUILD_PYTHON, [test "$with_python" = "yes"]) ])