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 ronaldoussoren
Recipients BreamoreBoy, MLModel, ronaldoussoren
Date 2010-07-24.10:32:37
SpamBayes Score 0.0071344255
Marked as misclassified No
Message-id <1279967560.26.0.710940484761.issue4813@psf.upfronthosting.co.za>
In-reply-to
Content
This issue is no longer valid, the current search order from setup.py:


    def detect_tkinter_darwin(self, inc_dirs, lib_dirs):
        # The _tkinter module, using frameworks. Since frameworks are quite
        # different the UNIX search logic is not sharable.
        from os.path import join, exists
        framework_dirs = [
            '/Library/Frameworks',
            '/System/Library/Frameworks/',
            join(os.getenv('HOME'), '/Library/Frameworks')
        ]

        sysroot = macosx_sdk_root()

This matches the order in which the linker searches.
History
Date User Action Args
2010-07-24 10:32:40ronaldoussorensetrecipients: + ronaldoussoren, MLModel, BreamoreBoy
2010-07-24 10:32:40ronaldoussorensetmessageid: <1279967560.26.0.710940484761.issue4813@psf.upfronthosting.co.za>
2010-07-24 10:32:38ronaldoussorenlinkissue4813 messages
2010-07-24 10:32:37ronaldoussorencreate