diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2005-09-30 19:25:28 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2005-09-30 19:25:28 +0000 |
commit | fe01351b12c5156a4f36fd20a7798545a33633cd (patch) | |
tree | c64bd274560864c923d5124c858a770096f4292e /scipy/base/setup.py | |
parent | 0267fe6d70ea112813bb1b615b98d02e28021c7f (diff) | |
download | numpy-fe01351b12c5156a4f36fd20a7798545a33633cd.tar.gz |
Impl. atanhf and using it for detecting HAVE_INVERSE_HYPERBOLIC_FLOAT.
Diffstat (limited to 'scipy/base/setup.py')
-rw-r--r-- | scipy/base/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/setup.py b/scipy/base/setup.py index 736a05248..10d55b5cf 100644 --- a/scipy/base/setup.py +++ b/scipy/base/setup.py @@ -60,7 +60,7 @@ def configuration(parent_package='',top_path=None): moredefs.append('HAVE_FLOAT_FUNCS') if config_cmd.check_func('asinh', **kws_args): moredefs.append('HAVE_INVERSE_HYPERBOLIC') - if config_cmd.check_func('asinhf', **kws_args): + if config_cmd.check_func('atanhf', **kws_args): moredefs.append('HAVE_INVERSE_HYPERBOLIC_FLOAT') if config_cmd.check_func('isnan', **kws_args): moredefs.append('HAVE_ISNAN') |