Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
$NetBSD: patch-numpy_distutils_ccompiler.py,v 1.1 2013/05/20 05:59:58 adam Exp $
Hack: use compiler with CFLAGS for linking executables.
--- numpy/distutils/ccompiler.py.orig 2013-05-19 19:28:28.000000000 +0000
+++ numpy/distutils/ccompiler.py
@@ -199,6 +199,7 @@ def CCompiler_compile(self, sources, out
src = cyg2win32(src)
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
else:
+ self.linker_exe = ccomp
for obj, (src, ext) in build.items():
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)