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
commit 32fbb42ba7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 ];