GNOME Bugzilla – Bug 325955
Missing ./configure checks for python module dependencies
Last modified: 2006-01-06 16:44:59 UTC
./configure checks for the gtk.glade module and for the pygtk package. However, the various *.py of gnome-schedule also import the gconf module and several gnome* modules. Those are part of gnome-python, not pygtk, on my system. Need a ./cnofigure test for them...that's much more polite than waiting for a runtime crash on a machine that doesn't have them. There also appears to be a version requirement for gnome-python, as when I use v2.0.0 of that package, gnome-schedule crashes: Traceback (most recent call last):
+ Trace 64991
pr = gnome.program_init ("gnome-schedule", config.getVersion(), properties=props)
but not with 2.12.0.
So we need to check for gnome-python, and version >= 2.12. Is the other modules part of gnome-python?
Now it is checking for gnome-python>=2.12.0 http://cvs.gnome.org/viewcvs/gnome-schedule/configure.ac?r1=1.63&r2=1.64
I suppose this is fixed when we check for this package. Reopen if not.
I believe "gnome-python-2.0 >= 2.12.0" does cover all the needed gnome-related modules, so you're all set here. (2.12.0 might be a bit too strict, but I don't know exactly when the needed functionality was added, so it's a safe choice).