From c4c6c2a22430c808b101484da81b4f06114648cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 16 May 2009 13:53:26 +0000 Subject: [PATCH] Fixing wxGTK build in x86_64 (mesa related) svn path=/nixpkgs/trunk/; revision=15623 --- pkgs/development/libraries/wxGTK-2.8/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/libraries/wxGTK-2.8/default.nix b/pkgs/development/libraries/wxGTK-2.8/default.nix index 621cf5ce3f8..0bdec709e13 100644 --- a/pkgs/development/libraries/wxGTK-2.8/default.nix +++ b/pkgs/development/libraries/wxGTK-2.8/default.nix @@ -34,10 +34,7 @@ stdenv.mkDerivation { SEARCH_INCLUDE = "${libXinerama}/include ${libSM}/include ${libXxf86vm}/include"; - SEARCH_LIB = if (stdenv.system == "x86_64-linux") then - "${mesa}/lib64" - else - "${mesa}/lib"; + SEARCH_LIB = "${mesa}/lib"; # Work around a bug in configure. NIX_CFLAGS_COMPILE = "-DHAVE_X11_XLIB_H=1";