about summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/2.6
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-06-21 14:05:46 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-06-21 14:05:46 +0200
commit83ec7aa92fab68b44f6e8a27b7398c19e49a307d (patch)
treecfd987a4e68771f7be13a02c955dd0d89184cdf7 /pkgs/development/interpreters/python/2.6
parentb08e12b37ae9470c9d8eb8438c21adb8ddbae19e (diff)
downloadnixlib-83ec7aa92fab68b44f6e8a27b7398c19e49a307d.tar
nixlib-83ec7aa92fab68b44f6e8a27b7398c19e49a307d.tar.gz
nixlib-83ec7aa92fab68b44f6e8a27b7398c19e49a307d.tar.bz2
nixlib-83ec7aa92fab68b44f6e8a27b7398c19e49a307d.tar.lz
nixlib-83ec7aa92fab68b44f6e8a27b7398c19e49a307d.tar.xz
nixlib-83ec7aa92fab68b44f6e8a27b7398c19e49a307d.tar.zst
nixlib-83ec7aa92fab68b44f6e8a27b7398c19e49a307d.zip
python: Remove --with-wctype-functions flag
This causes functions like string.upper() to misbehave on non-ASCII
characters.  Upstream also advises against it:

  http://bugs.python.org/issue9210
  http://bugs.python.org/issue11309
Diffstat (limited to 'pkgs/development/interpreters/python/2.6')
-rw-r--r--pkgs/development/interpreters/python/2.6/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix
index f264e4179e70..38060e9af336 100644
--- a/pkgs/development/interpreters/python/2.6/default.nix
+++ b/pkgs/development/interpreters/python/2.6/default.nix
@@ -45,7 +45,7 @@ let
     C_INCLUDE_PATH = concatStringsSep ":" (map (p: "${p}/include") buildInputs);
     LIBRARY_PATH = concatStringsSep ":" (map (p: "${p}/lib") buildInputs);
 
-    configureFlags = "--enable-shared --with-threads --enable-unicode --with-wctype-functions";
+    configureFlags = "--enable-shared --with-threads --enable-unicode";
 
     preConfigure =
       ''