From: Mark Dickinson Date: Thu, 17 Dec 2009 08:33:56 +0000 (+0000) Subject: Add _math.h to math module dependencies in setup.py. X-Git-Tag: v2.7a2~162 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1c49828fa0b5c479d4f705cb01ee3471e766ac72;p=thirdparty%2FPython%2Fcpython.git Add _math.h to math module dependencies in setup.py. --- diff --git a/setup.py b/setup.py index 6b8ffc4e0e14..bad88f79fa78 100644 --- a/setup.py +++ b/setup.py @@ -415,6 +415,7 @@ class PyBuildExt(build_ext): # 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']) )