1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-10 04:23:47 -05:00

Merge pull request #726 from yyuu/osx-unicode-narrow-ucs2

Stop using ucs4 as default unicode encoding on OS X
This commit is contained in:
Yamashita, Yuu
2016-10-12 11:56:23 +09:00
committed by GitHub
4 changed files with 94 additions and 6 deletions

View File

@@ -1939,7 +1939,9 @@ fi
# Compile with `--enable-unicode=ucs4` by default (#257)
if [[ "$PYTHON_CONFIGURE_OPTS" != *"--enable-unicode="* ]]; then
package_option python configure --enable-unicode=ucs4
if ! is_mac; then
package_option python configure --enable-unicode=ucs4
fi
fi
# SSL Certificate error with older wget that does not support Server Name Indication (#60)