diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-10-20 08:31:52 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-10-20 08:31:52 -0600 |
commit | 5fd1707ea9576b5a4efff5866a8e8d36f36ef6e9 (patch) | |
tree | 0559fd1a9deee5cb169f8f4e7d8b8958f6e844a6 /numpy/core/setup.py | |
parent | 8561c1542b42c4541f9f99ef4ad2fb8747d9943d (diff) | |
download | numpy-5fd1707ea9576b5a4efff5866a8e8d36f36ef6e9.tar.gz |
Revert "Merge pull request #6354 from mingwpy/mingwpy"
Revert mingwpy modifications to distutils. They are causing problems
for non-windows builds and it is better to wait until mingypy is
further along.
This reverts commit cda64938eb150b1af6677db4754da3be5fd7e483, reversing
changes made to 8cb3ec6ab804f594daf553e53e7cf7478656bebd.
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 = [] |