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

Stop specifying --enable-unicode=ucs4 on OS X (#257)

This commit is contained in:
Yamashita, Yuu
2016-10-05 00:32:33 +00:00
parent 8f4a361414
commit 021b53f924
4 changed files with 46 additions and 6 deletions

View File

@@ -1934,7 +1934,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)