ilmbase: fix linkage

The library was missing -pthread symbols. It wasn't failing by itself,
but e.g. blender was failing to link against is fixed now.
This commit is contained in:
Vladimír Čunát 2016-08-29 19:38:31 +02:00
parent 1876ce8494
commit f85053a021

View file

@ -14,6 +14,8 @@ stdenv.mkDerivation rec {
buildInputs = [ automake autoconf libtool which ];
NIX_CFLAGS_LINK = [ "-pthread" ];
patches = [ ./bootstrap.patch ];
meta = with stdenv.lib; {