diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2008-08-14 06:02:28 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2008-08-14 06:02:28 +0000 |
commit | 698dcc7a487ebf122ad4dcc462eafe8fb543891c (patch) | |
tree | 5083831c54c844e6cc32a64907f96823d46c178a /math/py-numpy/files | |
parent | - Update to version 1.0-rc1 (diff) |
Update to 1.1.1
Notes
Notes:
svn path=/head/; revision=218529
Diffstat (limited to 'math/py-numpy/files')
-rw-r--r-- | math/py-numpy/files/patch-numpy-core-include-numpy-ufuncobject.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/math/py-numpy/files/patch-numpy-core-include-numpy-ufuncobject.h b/math/py-numpy/files/patch-numpy-core-include-numpy-ufuncobject.h deleted file mode 100644 index f9eae5535d85..000000000000 --- a/math/py-numpy/files/patch-numpy-core-include-numpy-ufuncobject.h +++ /dev/null @@ -1,26 +0,0 @@ ---- numpy/core/include/numpy/ufuncobject.h.orig 2008-04-06 22:57:59.000000000 +0900 -+++ numpy/core/include/numpy/ufuncobject.h 2008-04-06 23:02:05.000000000 +0900 -@@ -267,7 +267,10 @@ - /* Solaris --------------------------------------------------------*/ - /* --------ignoring SunOS ieee_flags approach, someone else can - ** deal with that! */ --#elif defined(sun) || defined(__BSD__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__NetBSD__) -+#if (defined(__unix__) || defined(unix)) && !defined(USG) -+#include <sys/param.h> -+#endif -+#elif defined(sun) || defined(__BSD__) || defined(__OpenBSD__) || (defined(__FreeBSD__) && (__FreeBSD_version < 502114)) || defined(__NetBSD__) - #include <ieeefp.h> - - #define UFUNC_CHECK_STATUS(ret) { \ -@@ -281,9 +284,9 @@ - (void) fpsetsticky(0); \ - } - --#elif defined(__GLIBC__) || defined(__APPLE__) || defined(__CYGWIN__) || defined(__MINGW32__) -+#elif defined(__GLIBC__) || defined(__APPLE__) || defined(__CYGWIN__) || defined(__MINGW32__) || (defined(__FreeBSD__) && (__FreeBSD_version >= 502114)) - --#if defined(__GLIBC__) || defined(__APPLE__) || defined(__MINGW32__) -+#if defined(__GLIBC__) || defined(__APPLE__) || defined(__MINGW32__) || (defined(__FreeBSD__) && (__FreeBSD_version >= 502114)) - #include <fenv.h> - #elif defined(__CYGWIN__) - #include "fenv/fenv.c" |