aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-04-04 22:09:19 +0000
committerChristian Grothoff <christian@grothoff.org>2010-04-04 22:09:19 +0000
commit2efa11e99bec25a3a64c8fae20d7641345c8df9f (patch)
tree6e179797783ce3a122cd8d6fb11eb388a1a346ee /configure.ac
parent5e05cc9a117f5a8073c4f33e628de23de1138014 (diff)
downloadgnunet-2efa11e99bec25a3a64c8fae20d7641345c8df9f.tar.gz
gnunet-2efa11e99bec25a3a64c8fae20d7641345c8df9f.zip
pybld
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac12
1 files changed, 12 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index aad6e44a4..8a53dd064 100644
--- a/configure.ac
+++ b/configure.ac
@@ -484,6 +484,18 @@ AC_DEFINE_UNQUOTED([HAVE_MHD], $lmhd, [We have libmicrohttpd])
484# restore LIBS 484# restore LIBS
485LIBS=$SAVE_LIBS 485LIBS=$SAVE_LIBS
486 486
487# check for python & pexpect (used for some testcases only)
488AC_MSG_CHECKING([for python and pexpect])
489python -c "import pexpect" &> /dev/null
490PYEX=$?
491AM_CONDITIONAL(HAVE_PYTHON_PEXPECT, test $PYEX -eq 0)
492if test $PYEX -eq 0
493then
494 AC_MSG_RESULT([yes])
495else
496 AC_MSG_RESULT([not found])
497fi
498
487# libesmtp 499# libesmtp
488esmtp=0 500esmtp=0
489AC_MSG_CHECKING([for libesmtp]) 501AC_MSG_CHECKING([for libesmtp])