[Python-checkins] r76865 - python/trunk/setup.py

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


Author: mark.dickinson
Date: Thu Dec 17 09:33:56 2009
New Revision: 76865

Log:
Add _math.h to math module dependencies in setup.py.

Modified:
   python/trunk/setup.py

Modified: python/trunk/setup.py
==============================================================================
--- python/trunk/setup.py	(original)
+++ python/trunk/setup.py	Thu Dec 17 09:33:56 2009
@@ -415,6 +415,7 @@
 
         # math library functions, e.g. sin()
         exts.append( Extension('math',  ['mathmodule.c', '_math.c'],
+                               depends=['_math.h'],
                                libraries=math_libs) )
         # fast string operations implemented in C
         exts.append( Extension('strop', ['stropmodule.c']) )


More information about the Python-checkins mailing list