diff options
author | Travis Oliphant <oliphant@enthought.com> | 2007-01-24 21:59:33 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2007-01-24 21:59:33 +0000 |
commit | bdb43053e6cd090f3fd95e4cbfc82e70ee07c582 (patch) | |
tree | d4ea7ff59f8910b00fbfb96162efb3b54a8ecfc7 /numpy/numarray/_capi.c | |
parent | 20097b529cd7d7dda37ab814df36b2f58d9ce8f5 (diff) | |
download | numpy-bdb43053e6cd090f3fd95e4cbfc82e70ee07c582.tar.gz |
Fix location of fenv.h file for CYGWIN to correct compilation of NumPy on CYGWIN
Diffstat (limited to 'numpy/numarray/_capi.c')
-rw-r--r-- | numpy/numarray/_capi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/numarray/_capi.c b/numpy/numarray/_capi.c index ff2d86f19..50d75fbea 100644 --- a/numpy/numarray/_capi.c +++ b/numpy/numarray/_capi.c @@ -2938,7 +2938,7 @@ NA_checkFPErrors(void) #if defined(__GLIBC__) || defined(darwin) || defined(__MINGW32__) #include <fenv.h> #elif defined(__CYGWIN__) -#include <mingw/fenv.h> +#include "fenv/fenv.c" #endif static int |