diff options
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 2a1ae5f62..aa9e03e06 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -101,8 +101,6 @@ def win32_checks(deflist): deflist.append('FORCE_NO_LONG_DOUBLE_FORMATTING') def check_math_capabilities(config, moredefs, mathlibs): - from numpy.distutils.misc_util import mingw32 - def check_func(func_name): return config.check_func(func_name, libraries=mathlibs, decl=True, call=True) @@ -172,8 +170,7 @@ def check_math_capabilities(config, moredefs, mathlibs): # C99 functions: float and long double versions check_funcs(C99_FUNCS_SINGLE) - if not mingw32(): - check_funcs(C99_FUNCS_EXTENDED) + check_funcs(C99_FUNCS_EXTENDED) def check_complex(config, mathlibs): priv = [] |