Commit 1c49828f authored by Mark Dickinson's avatar Mark Dickinson

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

parent 9cae178f
......@@ -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']) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment