3
0
Fork 0
forked from mirrors/nixpkgs

ftgl: making it link to GL properly.

Its shared objects require mesa symbols of gl and glu.
This commit is contained in:
Lluís Batlle i Rossell 2012-12-11 09:50:21 +01:00
parent 0f7dee47a1
commit d190975896

View file

@ -13,6 +13,8 @@ stdenv.mkDerivation {
buildInputs = [freetype mesa];
NIX_LDFLAGS = "-lGLU -lGL";
patches = [ ./gcc.patch ];
configureFlags = "--enable-shared";