# HG changeset patch # User Erik Grinaker # Date 1137239209 0 # Node ID 77eb70aaf1e827c952bc2eeb50ef29b7cf3c8c68 # Parent 60595491f1916b2a0c5a4933091bedc5308b4dc1 don't initialize python modules during configure checks diff -r 60595491f1916b2a0c5a4933091bedc5308b4dc1 -r 77eb70aaf1e827c952bc2eeb50ef29b7cf3c8c68 ChangeLog --- a/ChangeLog Thu Aug 25 11:38:10 2005 +0000 +++ b/ChangeLog Sat Jan 14 11:46:49 2006 +0000 @@ -1,5 +1,11 @@ Revelation changelog +---------------[ xxxx-xx-xx : 0.4.6 ]--------------- + +2006-01-14 Erik Grinaker + + * don't initialize python modules during configure checks + ---------------[ 2005-08-25 : 0.4.5 ]--------------- 2005-08-24 Erik Grinaker diff -r 60595491f1916b2a0c5a4933091bedc5308b4dc1 -r 77eb70aaf1e827c952bc2eeb50ef29b7cf3c8c68 NEWS --- a/NEWS Thu Aug 25 11:38:10 2005 +0000 +++ b/NEWS Sat Jan 14 11:46:49 2006 +0000 @@ -1,3 +1,10 @@ +xxxx-xx-xx: Revelation 0.4.6 +============================ + +Bugfixes: +- don't initialize python modules during configure checks + + 2005-08-25: Revelation 0.4.5 ============================ diff -r 60595491f1916b2a0c5a4933091bedc5308b4dc1 -r 77eb70aaf1e827c952bc2eeb50ef29b7cf3c8c68 acinclude.m4 --- a/acinclude.m4 Thu Aug 25 11:38:10 2005 +0000 +++ b/acinclude.m4 Sat Jan 14 11:46:49 2006 +0000 @@ -90,7 +90,7 @@ AC_DEFUN([RVL_PYTHON_MODULE], [ AC_MSG_CHECKING(python module $1) - $PYTHON -c "import $1" 2>/dev/null + $PYTHON -c "import imp; imp.find_module('$1')" 2>/dev/null if test $? -eq 0; then AC_MSG_RESULT(yes) diff -r 60595491f1916b2a0c5a4933091bedc5308b4dc1 -r 77eb70aaf1e827c952bc2eeb50ef29b7cf3c8c68 configure.ac --- a/configure.ac Thu Aug 25 11:38:10 2005 +0000 +++ b/configure.ac Sat Jan 14 11:46:49 2006 +0000 @@ -22,14 +22,9 @@ RVL_PYTHON_MODULE(Crypto, yes) RVL_PYTHON_MODULE(bonobo, yes) -RVL_PYTHON_MODULE(bonobo.ui, yes) RVL_PYTHON_MODULE(gconf, yes) RVL_PYTHON_MODULE(gtk, yes) -RVL_PYTHON_MODULE(gtk.gdk, yes) RVL_PYTHON_MODULE(gnome, yes) -RVL_PYTHON_MODULE(gnome.applet, yes) -RVL_PYTHON_MODULE(gnome.ui, yes) -RVL_PYTHON_MODULE(gnome.vfs, yes) RVL_PYTHON_MODULE(gobject, yes) RVL_PYTHON_MODULE(pango, yes)