> PKG_CHECK_MODULES(PYGTK, pygtk-2.0) > > Why do you check for pygtk2.0 explicitly? What if someone has pygtk2.2?
2.0 in pygtk-2.0 is the platform name, it won't change in 2.x. If you want to require a specfic version of pygtk, say, 2.3.4, then do: PKG_CHECK_MODULES(PYGTK, pygtk-2.0 >= 2.3.4) -- Johan Dahlin <[EMAIL PROTECTED]> _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
