This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ceball
Recipients ceball
Date 2007-12-11.04:04:57
SpamBayes Score 0.09948144
Marked as misclassified No
Message-id <1197345898.75.0.132866639605.issue1584@psf.upfronthosting.co.za>
In-reply-to
Content
On OS X, I wanted to build my own copy of Python that used my own copy
of Tkinter (built for X11). 

To do this, I passed "LDFLAGS=-rpath,/path/to/lib" to configure so that
Python could find my specific lib files, but I also had to edit Python's
setup.py so that detect_tkinter() would not do anything special for Darwin:

$ diff setup.py original_setup.py 
1199c1199
<         if 0 and (platform == 'darwin' and
---
>         if (platform == 'darwin' and


I did this based on a post by Ronald Oussoren to the Python-SIG Mac
mailing list [http://article.gmane.org/gmane.comp.python.apple/14008].
He also suggested that I file a bug report, asking for an argument to be
added to python's configure script to avoid having to edit setup.py.

Thanks
History
Date User Action Args
2007-12-11 04:04:58ceballsetspambayes_score: 0.0994814 -> 0.09948144
recipients: + ceball
2007-12-11 04:04:58ceballsetspambayes_score: 0.0994814 -> 0.0994814
messageid: <1197345898.75.0.132866639605.issue1584@psf.upfronthosting.co.za>
2007-12-11 04:04:58ceballlinkissue1584 messages
2007-12-11 04:04:57ceballcreate