summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2011-08-21 18:53:50 +0200
committerDavid Cournapeau <cournape@gmail.com>2011-08-29 00:32:27 +0200
commitf92e0f45c77b53764340e36c52bbcecc2d524d2c (patch)
tree9f77e07075ef857c7a940db44f6a745bacf0f12d
parent94fab366240aecdacc66d4d4a77aef5f6e2921a9 (diff)
downloadnumpy-f92e0f45c77b53764340e36c52bbcecc2d524d2c.tar.gz
BUG: temp hack to fix some function checks.
-rw-r--r--numpy/core/bscript8
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"