diff options
author | joerg <joerg@pkgsrc.org> | 2016-08-26 17:19:49 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2016-08-26 17:19:49 +0000 |
commit | 265d9c45d90e8e58e640f52affbd55a1bd94e61b (patch) | |
tree | 4b3604ab71865b9518b110fa99831d1db8249895 /graphics | |
parent | 117f5502651947e3963b647d0e8749a39e7ede82 (diff) | |
download | pkgsrc-265d9c45d90e8e58e640f52affbd55a1bd94e61b.tar.gz |
Disable concurrent build of a table generator, it uses a lot of memory
and often crashes here.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/openexr/distinfo | 3 | ||||
-rw-r--r-- | graphics/openexr/patches/patch-IlmImf_dwaLookups.cpp | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/graphics/openexr/distinfo b/graphics/openexr/distinfo index 04a804ca690..64ef63245b5 100644 --- a/graphics/openexr/distinfo +++ b/graphics/openexr/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.28 2015/11/03 21:34:11 agc Exp $ +$NetBSD: distinfo,v 1.29 2016/08/26 17:19:49 joerg Exp $ SHA1 (openexr-2.2.0.tar.gz) = d09a68c4443b7a12a0484c073adaef348b44cb92 RMD160 (openexr-2.2.0.tar.gz) = a825ed42e731da3bc39f25ce2a310712a5b0f956 @@ -7,5 +7,6 @@ Size (openexr-2.2.0.tar.gz) = 14489661 bytes SHA1 (patch-IlmImf_ImfFastHuf.cpp) = bf583b5e0efb1af6e00d671b07d4cc154e13ac44 SHA1 (patch-IlmImf_ImfSystemSpecific.cpp) = 79bf644181650fa7dc13c04dfeb68142bde6a2b6 SHA1 (patch-IlmImf_ImfSystemSpecific.h) = f36d049085e42beabcf5f7af5354009391a1f9f2 +SHA1 (patch-IlmImf_dwaLookups.cpp) = 7bcc32f3de10cea5467d054f1b1aa0fd12d49d46 SHA1 (patch-aa) = 8633b04f9c13f163947e7ac81eb4ef7a6fd9eb88 SHA1 (patch-ab) = 0efe7155350e1976d1d7bad9da8b1a037fd84572 diff --git a/graphics/openexr/patches/patch-IlmImf_dwaLookups.cpp b/graphics/openexr/patches/patch-IlmImf_dwaLookups.cpp new file mode 100644 index 00000000000..174dde57bf5 --- /dev/null +++ b/graphics/openexr/patches/patch-IlmImf_dwaLookups.cpp @@ -0,0 +1,12 @@ +$NetBSD: patch-IlmImf_dwaLookups.cpp,v 1.1 2016/08/26 17:19:49 joerg Exp $ + +--- IlmImf/dwaLookups.cpp.orig 2016-06-06 22:42:15.936629432 +0000 ++++ IlmImf/dwaLookups.cpp +@@ -436,6 +436,7 @@ generateToNonlinear() + int + cpuCount() + { ++ return 1; // Semi-reliably crashes in bulk builds + if (!IlmThread::supportsThreads()) return 1; + + int cpuCount = 1; |