summaryrefslogtreecommitdiff
path: root/scipy/base/setup.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-09-16 21:11:54 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-09-16 21:11:54 +0000
commit325306f18aac4f9581bc3aae49da30d09a1bd410 (patch)
tree36b4c02aa691c45d9fb5217050dc3652101a5d94 /scipy/base/setup.py
parente4e9c0eb0c78db4cc0afd4e81d0af38c5ccaf02c (diff)
downloadnumpy-325306f18aac4f9581bc3aae49da30d09a1bd410.tar.gz
Added isnan, isinf, isfinite, and signbit
Diffstat (limited to 'scipy/base/setup.py')
-rw-r--r--scipy/base/setup.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/scipy/base/setup.py b/scipy/base/setup.py
index e21916383..4d81539c3 100644
--- a/scipy/base/setup.py
+++ b/scipy/base/setup.py
@@ -56,6 +56,8 @@ def configuration(parent_package='',top_path=None):
moredefs.append('HAVE_FLOAT_FUNCS')
if config_cmd.check_func('asinh', libraries=libs, decl=1):
moredefs.append('HAVE_INVERSE_HYPERBOLIC')
+ if config_cmd.check_func('isnan', libraries=libs, decl=1):
+ moredefs.append('HAVE_ISNAN')
if moredefs:
target_f = open(target,'a')
@@ -118,8 +120,7 @@ def configuration(parent_package='',top_path=None):
print "****%s****" % config.local_path
config.add_include_dirs(appendpath('build/src',join(config.local_path,'Src')))
- deps = [join('src','umathmodule.c.src'),
- join('src','arrayobject.c'),
+ deps = [join('src','arrayobject.c'),
join('src','arraymethods.c'),
join('src','scalartypes.inc.src'),
join('src','arraytypes.inc.src'),