From 1c49828fa0b5c479d4f705cb01ee3471e766ac72 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Thu, 17 Dec 2009 08:33:56 +0000 Subject: [PATCH] Add _math.h to math module dependencies in setup.py. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 6b8ffc4e0e..bad88f79fa 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']) ) -- 2.40.0