summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Zabaluev <mikhail.zabaluev@nokia.com>2011-01-31 20:46:33 +0200
committerMikhail Zabaluev <mikhail.zabaluev@nokia.com>2011-01-31 20:46:33 +0200
commitdfb7be1f4d652d48ac001f9e496abd97006c1ba3 (patch)
tree1e451a55581980df0de4d6347f49bfc1de50d2f3
parentdf7937078faa3211a8eaae0342cd7bf297b4fc20 (diff)
Check for Python module twisted.words.xish as required for unit testsHEADmaster
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index a3a5fb8..74fb0ac 100644
--- a/configure.ac
+++ b/configure.ac
@@ -123,7 +123,7 @@ AM_PATH_PYTHON([2.3],[],
dnl Check for twisted python for tests
AC_MSG_CHECKING([for TwistedPython with SIP protocol support])
-if $PYTHON -c "import twisted.protocols.sip, twisted.internet.reactor" >/dev/null 2>&1; then
+if $PYTHON -c "import twisted.protocols.sip, twisted.internet.reactor, twisted.words.xish" >/dev/null 2>&1; then
AC_MSG_RESULT([yes])
AM_CONDITIONAL([WANT_TWISTED_TESTS], true)
else