From: Mark Dickinson Date: Thu, 17 Dec 2009 08:35:56 +0000 (+0000) Subject: Merged revisions 76865 via svnmerge from X-Git-Tag: v3.2a1~2021 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8a59113bf5b7848ccf1efd215387e0ce3763ae48;p=python 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. ........ --- diff --git a/setup.py b/setup.py index 3666e8fbb7..c2c0af1941 100644 --- a/setup.py +++ b/setup.py @@ -399,6 +399,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) ) # time operations and variables exts.append( Extension('time', ['timemodule.c'],