diff options
author | snj <snj@pkgsrc.org> | 2004-03-01 00:43:13 +0000 |
---|---|---|
committer | snj <snj@pkgsrc.org> | 2004-03-01 00:43:13 +0000 |
commit | b989a2bcccb4e2793880dcb5da37628bddf02dd0 (patch) | |
tree | fd790f177fda6290c18dbf75a81c0fcaab4e2393 /math/py-Numeric | |
parent | d56f577fe298b98ce8cadd462057592de5c2584b (diff) | |
download | pkgsrc-b989a2bcccb4e2793880dcb5da37628bddf02dd0.tar.gz |
Include math.h earlier on to fix a build problem on FreeBSD.
Trivial fix from FreeBSD through Michal Pasternak in PR pkg/23846.
Diffstat (limited to 'math/py-Numeric')
-rw-r--r-- | math/py-Numeric/distinfo | 3 | ||||
-rw-r--r-- | math/py-Numeric/patches/patch-aa | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/math/py-Numeric/distinfo b/math/py-Numeric/distinfo index 8ecbdee657d..6e43d8bba4c 100644 --- a/math/py-Numeric/distinfo +++ b/math/py-Numeric/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.8 2003/09/14 17:43:53 recht Exp $ +$NetBSD: distinfo,v 1.9 2004/03/01 00:43:13 snj Exp $ SHA1 (Numeric-23.1.tar.gz) = 60d39ba6eb902a429d7f7b5b80b9228ebfe64a2c Size (Numeric-23.1.tar.gz) = 724051 bytes +SHA1 (patch-aa) = 0096fe9de4c3912cdefd3278385edd4b7f55cf63 diff --git a/math/py-Numeric/patches/patch-aa b/math/py-Numeric/patches/patch-aa new file mode 100644 index 00000000000..6d87b27773c --- /dev/null +++ b/math/py-Numeric/patches/patch-aa @@ -0,0 +1,16 @@ +$NetBSD: patch-aa,v 1.7 2004/03/01 00:43:13 snj Exp $ + +--- Src/umathmodule.c.orig Sat Aug 2 01:10:09 2003 ++++ Src/umathmodule.c Sat Aug 2 01:10:43 2003 +@@ -1,9 +1,9 @@ + ++#include <math.h> + #include "Python.h" + #include "Numeric/arrayobject.h" + #include "Numeric/ufuncobject.h" + #include "abstract.h" +-#include <math.h> + + #ifndef CHAR_BIT + #define CHAR_BIT 8 + |