mirror of
https://github.com/ModOrganizer2/mob.git
synced 2026-07-27 14:07:05 -07:00
switched to unicode
changed zlib to use vs instead of jom because it doesn't handle non-ascii characters fixed async_pipe corrupting the stack when io was pending vcvars uses cmd /U to dump `set` to a utf16 file, or else PATH has trouble with non-ascii characters fixed no colors on terminal
This commit is contained in:
@@ -127,12 +127,12 @@ void python::build_and_install_from_source()
|
||||
"python", "pythonw", "python3dll", "select", "pyexpat",
|
||||
"unicodedata", "_queue", "_bz2", "_ssl"})
|
||||
.parameters({
|
||||
"bz2Dir=" + bzip2::source_path().string(),
|
||||
"zlibDir=" + zlib::source_path().string(),
|
||||
"opensslIncludeDir=" + openssl::include_path().string(),
|
||||
"opensslOutDir=" + openssl::source_path().string(),
|
||||
"libffiIncludeDir=" + libffi::include_path().string(),
|
||||
"libffiOutDir=" + libffi::lib_path().string()}));
|
||||
"bz2Dir=" + path_to_utf8(bzip2::source_path()),
|
||||
"zlibDir=" + path_to_utf8(zlib::source_path()),
|
||||
"opensslIncludeDir=" + path_to_utf8(openssl::include_path()),
|
||||
"opensslOutDir=" + path_to_utf8(openssl::source_path()),
|
||||
"libffiIncludeDir=" + path_to_utf8(libffi::include_path()),
|
||||
"libffiOutDir=" + path_to_utf8(libffi::lib_path())}));
|
||||
|
||||
package();
|
||||
install_pip();
|
||||
|
||||
Reference in New Issue
Block a user