diff options
Diffstat (limited to 'm4/pdns_check_python_venv.m4')
-rw-r--r-- | m4/pdns_check_python_venv.m4 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/m4/pdns_check_python_venv.m4 b/m4/pdns_check_python_venv.m4 new file mode 100644 index 0000000..41830b2 --- /dev/null +++ b/m4/pdns_check_python_venv.m4 @@ -0,0 +1,9 @@ +AC_DEFUN([PDNS_CHECK_PYTHON_VENV], [ + dnl Check for optional Python, at least version 3.6. + AM_PATH_PYTHON([3.6],,[:]) + dnl Check for Python venv module + AS_IF([test "${PYTHON}" != ":"], [ + AX_PYTHON_MODULE([venv],[]) + ]) + AM_CONDITIONAL([HAVE_VENV], [test "x${HAVE_PYMOD_VENV}" = "xyes"]) +]) |