[Python-checkins] r76867 - in python/branches/py3k: setup.py

mark.dickinson python-checkins at python.org
Thu Dec 17 09:35:56 CET 2009


Author: mark.dickinson
Date: Thu Dec 17 09:35:56 2009
New Revision: 76867

Log:
Merged revisions 76865 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r76865 | mark.dickinson | 2009-12-17 08:33:56 +0000 (Thu, 17 Dec 2009) | 1 line
  
  Add _math.h to math module dependencies in setup.py.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/setup.py

Modified: python/branches/py3k/setup.py
==============================================================================
--- python/branches/py3k/setup.py	(original)
+++ python/branches/py3k/setup.py	Thu Dec 17 09:35:56 2009
@@ -399,6 +399,7 @@
 
         # math library functions, e.g. sin()
         exts.append( Extension('math',  ['mathmodule.c', '_math.c'],
+                               depends=['_math.h'],
                                libraries=math_libs) )
         # time operations and variables
         exts.append( Extension('time', ['timemodule.c'],


More information about the Python-checkins mailing list