summaryrefslogtreecommitdiff
path: root/scipy/base/setup.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-10-21 20:16:29 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-10-21 20:16:29 +0000
commit24a86c0838665bf393ff292e4a85d6b74c177206 (patch)
tree265a5d8901b6d140387641ef642ac79492a9008a /scipy/base/setup.py
parent7a1f86cfd14a651bb4f6ac606c236cdcff32a8c0 (diff)
downloadnumpy-24a86c0838665bf393ff292e4a85d6b74c177206.tar.gz
Added a new test for isinf.
Diffstat (limited to 'scipy/base/setup.py')
-rw-r--r--scipy/base/setup.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/scipy/base/setup.py b/scipy/base/setup.py
index b147d2e6c..48a8fa425 100644
--- a/scipy/base/setup.py
+++ b/scipy/base/setup.py
@@ -66,6 +66,8 @@ def configuration(parent_package='',top_path=None):
moredefs.append('HAVE_INVERSE_HYPERBOLIC_LONGDOUBLE')
if config_cmd.check_func('isnan', **kws_args):
moredefs.append('HAVE_ISNAN')
+ if config_cmd.check_func('isinf', **kws_args):
+ moredefs.append('HAVE_ISINF')
if moredefs:
target_f = open(target,'a')