Author: ludo
Date: Thu Jul 21 13:51:03 2011
New Revision: 27877
URL: https://svn.nixos.org/websvn/nix/?rev=27877&sc=1

Log:
libelf: Disable native language support on Darwin.

Modified:
   nixpkgs/trunk/pkgs/development/libraries/libelf/default.nix

Modified: nixpkgs/trunk/pkgs/development/libraries/libelf/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/libraries/libelf/default.nix Thu Jul 21 
13:38:29 2011        (r27876)
+++ nixpkgs/trunk/pkgs/development/libraries/libelf/default.nix Thu Jul 21 
13:51:03 2011        (r27877)
@@ -24,9 +24,9 @@
 
 //
 
-# Gettext is lacking from `stdenv' on Darwin, but not completely, so NLS
-# support is enabled but eventually fails.
+# Libelf's custom NLS macros fail to determine the catalog file extension on
+# Darwin, so disable NLS for now.
 # FIXME: Eventually make Gettext a build input on all platforms.
 (if stdenv.isDarwin
- then { buildInputs = [ gettext ]; }
+ then { configureFlags = [ "--disable-nls" ]; }
  else { }))
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to