Merge pull request #86329 from mikesperber/unbreak-openexr-macos

openexr, imlbase: unbreak on macOS
This commit is contained in:
Florian Klink
2020-05-01 19:55:32 +02:00
committed by GitHub
2 changed files with 6 additions and 0 deletions

View File

@@ -18,6 +18,9 @@ stdenv.mkDerivation rec {
./bootstrap
'';
# otherwise, the pkgconfig info for the libraries will not match the filenames
configureFlags = stdenv.lib.optionalString stdenv.isDarwin "--enable-namespaceversioning=no";
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ automake autoconf libtool which ];

View File

@@ -42,6 +42,9 @@ stdenv.mkDerivation rec {
./bootstrap
'';
# otherwise, the pkgconfig info for the libraries will not match the filenames
configureFlags = stdenv.lib.optionalString stdenv.isDarwin "--enable-namespaceversioning=no";
nativeBuildInputs = [ pkgconfig autoconf automake libtool ];
propagatedBuildInputs = [ ilmbase zlib ];