mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 01:14:53 +01:00
configure: check for python cffi and pytest modules
This is needed to build the new python bindings, and run their tests.
This commit is contained in:
parent
e8cb7c7f60
commit
3aaa8cfe94
1 changed files with 21 additions and 0 deletions
21
configure
vendored
21
configure
vendored
|
@ -671,6 +671,15 @@ if [ $have_python -eq 0 ]; then
|
|||
errors=$((errors + 1))
|
||||
fi
|
||||
|
||||
printf "Checking for python3 cffi... "
|
||||
if "$python" -c 'import sys,cffi; assert sys.version_info >= (3,0)' >/dev/null 2>&1; then
|
||||
printf "Yes.\n"
|
||||
have_python3_cffi=1
|
||||
else
|
||||
printf "No.\n"
|
||||
have_python3_cffi=0
|
||||
fi
|
||||
|
||||
printf "Checking for valgrind development files... "
|
||||
if pkg-config --exists valgrind; then
|
||||
printf "Yes.\n"
|
||||
|
@ -1223,6 +1232,12 @@ HAVE_GETLINE = ${have_getline}
|
|||
# building/testing ruby bindings.
|
||||
HAVE_RUBY_DEV = ${have_ruby_dev}
|
||||
|
||||
# Is the python cffi package available?
|
||||
HAVE_PYTHON3_CFFI = ${have_python3_cffi}
|
||||
|
||||
# Is the python pytest package available?
|
||||
HAVE_PYTHON3_PYTEST = ${have_python3_pytest}
|
||||
|
||||
# Whether the strcasestr function is available (if not, then notmuch will
|
||||
# build its own version)
|
||||
HAVE_STRCASESTR = ${have_strcasestr}
|
||||
|
@ -1376,6 +1391,12 @@ NOTMUCH_RUBY=${RUBY}
|
|||
# building/testing ruby bindings.
|
||||
NOTMUCH_HAVE_RUBY_DEV=${have_ruby_dev}
|
||||
|
||||
# Is the python cffi package available?
|
||||
NOTMUCH_HAVE_PYTHON3_CFFI=${have_python3_cffi}
|
||||
|
||||
# Is the python pytest package available?
|
||||
NOTMUCH_HAVE_PYTHON3_PYTEST=${have_python3_pytest}
|
||||
|
||||
# Platform we are run on
|
||||
PLATFORM=${platform}
|
||||
EOF
|
||||
|
|
Loading…
Reference in a new issue