Add _math.h to math module dependencies in setup.py.
diff --git a/setup.py b/setup.py
index 6b8ffc4..bad88f7 100644
--- a/setup.py
+++ b/setup.py
@@ -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']) )