Gentoo Archives: gentoo-commits

From: "Markus Duft (mduft)" <mduft@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/numpy/files: numpy-1.4.0-interix.patch
Date: Wed, 24 Feb 2010 14:52:42
Message-Id: E1NkIbQ-0002o0-RC@stork.gentoo.org
1 mduft 10/02/24 14:52:40
2
3 Added: numpy-1.4.0-interix.patch
4 Log:
5 added small patch to fix build on interix
6 (Portage version: 2.2.00.15444-prefix/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 dev-python/numpy/files/numpy-1.4.0-interix.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/numpy/files/numpy-1.4.0-interix.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/numpy/files/numpy-1.4.0-interix.patch?rev=1.1&content-type=text/plain
13
14 Index: numpy-1.4.0-interix.patch
15 ===================================================================
16 Reported [2010.01.18]: http://projects.scipy.org/numpy/ticket/1365
17
18 diff -ru numpy-1.4.0.orig/numpy/core/setup.py numpy-1.4.0/numpy/core/setup.py
19 --- numpy-1.4.0.orig/numpy/core/setup.py 2010-01-15 16:49:14 +0100
20 +++ numpy-1.4.0/numpy/core/setup.py 2010-01-15 17:02:27 +0100
21 @@ -169,6 +169,9 @@
22 priv = []
23 pub = []
24
25 + if os.uname()[0] == "Interix":
26 + return priv, pub
27 +
28 # Check for complex support
29 st = config.check_header('complex.h')
30 if st: