summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-08-28 21:52:07 +0000
committerLennart Poettering <lennart@poettering.net>2005-08-28 21:52:07 +0000
commit7f3a0c39463f98bd0ea2d78c9fa7506d4c83e918 (patch)
treedb101b453c21e111940d462e38ff541e148d6fd7
parent0b06202a938bc4c6a7c038f22112f08b6bf5bd1c (diff)
check for dbm, anydbm and socket python modules
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@484 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index e3be4f7..0525ffb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -294,6 +294,9 @@ if test "x$HAVE_PYTHON" = "xyes" ; then
AM_PATH_PYTHON([2.4])
AM_CHECK_PYMOD(gtk,,,[AC_MSG_ERROR(Could not find Python module pygtk)])
AM_CHECK_PYMOD(dbus,,,[AC_MSG_ERROR(Could not find Python module dbus)])
+ AM_CHECK_PYMOD(socket,,,[AC_MSG_ERROR(Could not find Python module socket)])
+ AM_CHECK_PYMOD(dbm,,,[AC_MSG_ERROR(Could not find Python module dbm)])
+ AM_CHECK_PYMOD(anydbm,,,[AC_MSG_ERROR(Could not find Python module anydbm)])
fi
AM_CONDITIONAL(HAVE_PYTHON, [test "x$HAVE_PYTHON" = "xyes" ])