summaryrefslogtreecommitdiff
path: root/numpy/core/setup.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-11-04 07:51:08 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-11-04 07:51:08 +0000
commit7437c9ce13be2b204584946f150aa3a8b51a1c1a (patch)
treea1b294e97789d7da932b30db03e82369c020b15a /numpy/core/setup.py
parenta04e1ed7373071ad4550720875af8cd1006bb399 (diff)
downloadnumpy-7437c9ce13be2b204584946f150aa3a8b51a1c1a.tar.gz
Start implementing complex support.
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r--numpy/core/setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py
index e113645c7..722450026 100644
--- a/numpy/core/setup.py
+++ b/numpy/core/setup.py
@@ -601,7 +601,8 @@ def configuration(parent_package='',top_path=None):
config.add_installed_library('npymath',
sources=[join('src', 'npymath', 'npy_math.c.src'),
join('src', 'npymath', 'ieee754.c'),
- get_mathlib_info],
+ join('src', 'npymath', 'npy_math_complex.c.src',
+ get_mathlib_info)],
install_dir='lib')
config.add_npy_pkg_config("npymath.ini.in", "lib/npy-pkg-config",
subst_dict)