[Python-3000-checkins] r64405 - python/branches/py3k/setup.py

benjamin.peterson python-3000-checkins at python.org
Thu Jun 19 15:21:49 CEST 2008


Author: benjamin.peterson
Date: Thu Jun 19 15:21:48 2008
New Revision: 64405

Log:
_getstalt doesn't need to be built on non-darwin systems #3141

Modified:
   python/branches/py3k/setup.py

Modified: python/branches/py3k/setup.py
==============================================================================
--- python/branches/py3k/setup.py	(original)
+++ python/branches/py3k/setup.py	Thu Jun 19 15:21:48 2008
@@ -1176,8 +1176,6 @@
                        Extension('_gestalt', ['_gestalt.c'],
                        extra_link_args=['-framework', 'Carbon'])
                        )
-        else:
-            missing.append('_gestalt')
 
         self.extensions.extend(exts)
 


More information about the Python-3000-checkins mailing list