fre 2004-06-18 klockan 02.32 skrev Jonathon McKitrick: > I don't use autoconf, but I'd like to install gdesklets, and it won't let > me, since it doesn't find pygtk. I have the 2.4 beta installed.
You need to set PKG_CONFIG_PATH to the correct directory before running configure. If you installed PyGTK 2.3.x in /usr/local, it should be something like this: export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig And before running you need to set pythonpath. export PYTHONPATH=/usr/local/lib/pythonX.Y/site-packages where X.Y is the python version, usually 2.3 these days. -- 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/
