1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

pkgs/development/libraries/mesa: disable build of egl library on Darwin

The egl library doesn't seem to work, i.e. the included demo program has
undefined symbols after linking with it.

svn path=/nixpkgs/trunk/; revision=21429
This commit is contained in:
Peter Simons 2010-04-29 14:57:07 +00:00
parent 5c43115185
commit 8ccc115606

View file

@ -12,7 +12,8 @@ stdenv.mkDerivation {
md5 = "7db4617e9e10ad3aca1b64339fd71b7d";
};
configureFlags = "--disable-gallium";
configureFlags = "--disable-gallium"
+ (if stdenv.isDarwin then " --disable-egl" else "");
buildInputs =
[ pkgconfig expat x11 libdrm xlibs.glproto