Kai Weber <[EMAIL PROTECTED]> writes: > I just found that blog entry about autotools and mono. Is there some > helpful tutorial describing the aspects of Autotools and Python?
I don't think you want to use the autotools for pure python projects. Use distutils (or maybe scons) instead: http://www.python.org/doc/current/lib/module-distutils.html Autoconf and pals are a bunch of hacks to get around the problem of not being able to depend on anything except standard unix tools like sh, sed and make. You can count on python being installed, so you don't need autotools. -- Fredrik Arnerup <[EMAIL PROTECTED]> http://www.stacken.kth.se/~foo/ _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
