summaryrefslogtreecommitdiff
path: root/numpy/core/setup_common.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2009-08-26 02:25:18 +0000
committerCharles Harris <charlesr.harris@gmail.com>2009-08-26 02:25:18 +0000
commita7cfefdb02ea7ed0cff5671e367d1c6e2d428e74 (patch)
treed63c381200bae9794c3bda7725dff80f865dfb11 /numpy/core/setup_common.py
parent0abf640f4a8f0f48fe2fcd1e43bbe7b4eabbc9cf (diff)
downloadnumpy-a7cfefdb02ea7ed0cff5671e367d1c6e2d428e74.tar.gz
Fix build that I busted. Copysign needs to stay on old list also.
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r--numpy/core/setup_common.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py
index 670c2bb83..ab801fc6d 100644
--- a/numpy/core/setup_common.py
+++ b/numpy/core/setup_common.py
@@ -87,7 +87,8 @@ MANDATORY_FUNCS = ["sin", "cos", "tan", "sinh", "cosh", "tanh", "fabs",
# Standard functions which may not be available and for which we have a
# replacement implementation. Note that some of these are C99 functions.
OPTIONAL_STDFUNCS = ["expm1", "log1p", "acosh", "asinh", "atanh",
- "rint", "trunc", "exp2", "log2", "hypot", "atan2", "pow"]
+ "rint", "trunc", "exp2", "log2", "hypot", "atan2", "pow",
+ "copysign"]
# Subset of OPTIONAL_STDFUNCS which may alreay have HAVE_* defined by Python.h
OPTIONAL_STDFUNCS_MAYBE = ["expm1", "log1p", "acosh", "atanh", "asinh", "hypot",