diff options
-rw-r--r-- | numpy/core/bscript | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/numpy/core/bscript b/numpy/core/bscript index 9e9529197..5537c2e93 100644 --- a/numpy/core/bscript +++ b/numpy/core/bscript @@ -192,11 +192,13 @@ def check_math_runtime(conf): # XXX: this is ugly: mathlib has nothing to do in a public header file NUMPYCONFIG_SYM.append(('MATHLIB', ','.join(mlib))) + # FIXME: look more into those additional mandatory functions + MANDATORY_FUNCS.extend(["pow"]) conf.check_functions_at_once(MANDATORY_FUNCS, use="M") - mfuncs = ('expl', 'expf', 'log1p', 'expm1', 'asinh', 'atanhf', 'atanhl', - 'rint', 'trunc') - conf.check_functions_at_once(mfuncs, use="M") + #mfuncs = ('expl', 'expf', 'log1p', 'expm1', 'asinh', 'atanhf', 'atanhl', + # 'rint', 'trunc') + #conf.check_functions_at_once(mfuncs, use="M") header_name = "Python.h math.h" features = "c pyext" |